Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: ThePowderToy-94.1
@ 2019-09-02 14:47 voidlinux-github
  2019-09-02 15:35 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 14:47 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From 985dbf114d731e4d09cb4d936a95d48e80c20413 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..6a78830a133
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,19 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+
+do_install() {
+	vbin build/powder64 powder
+	vdoc README.md
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
@ 2019-09-02 15:35 ` voidlinux-github
  2019-09-02 15:35 ` voidlinux-github
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 15:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From bae22c5224950d3e01f091c1d5dd642871cdae14 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..d17efe06e21
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,35 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+    export SCONS_ARGS="--no-sse";;
+	esac
+
+  scons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+    x86_64*)
+	  vbin build/powder64 powder;;
+    i686*)
+	  vbin build/powder powder;;
+    *)
+	  vbin build/powder-legacy powder;;
+  esac
+	vdoc README.md
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
  2019-09-02 15:35 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-09-02 15:35 ` voidlinux-github
  2019-09-02 15:39 ` voidlinux-github
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 15:35 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From bae22c5224950d3e01f091c1d5dd642871cdae14 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..d17efe06e21
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,35 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+    export SCONS_ARGS="--no-sse";;
+	esac
+
+  scons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+    x86_64*)
+	  vbin build/powder64 powder;;
+    i686*)
+	  vbin build/powder powder;;
+    *)
+	  vbin build/powder-legacy powder;;
+  esac
+	vdoc README.md
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
  2019-09-02 15:35 ` [PR PATCH] [Updated] " voidlinux-github
  2019-09-02 15:35 ` voidlinux-github
@ 2019-09-02 15:39 ` voidlinux-github
  2019-09-02 15:39 ` voidlinux-github
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 15:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From f71d52a2588a4488c3767353f0b4759a8e08b07c Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..8ec8896ebe4
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,35 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+		export SCONS_ARGS="--no-sse";;
+	esac
+
+	cons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-09-02 15:39 ` voidlinux-github
@ 2019-09-02 15:39 ` voidlinux-github
  2019-09-02 15:49 ` voidlinux-github
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 15:39 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From f71d52a2588a4488c3767353f0b4759a8e08b07c Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..8ec8896ebe4
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,35 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+		export SCONS_ARGS="--no-sse";;
+	esac
+
+	cons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-09-02 15:39 ` voidlinux-github
@ 2019-09-02 15:49 ` voidlinux-github
  2019-09-02 15:49 ` voidlinux-github
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 15:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From cf2b1958b32d01e8ff38385a1378ff17f4b79b1d Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..96e1d828fe5
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,35 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+		export SCONS_ARGS="--no-sse";;
+	esac
+
+	scons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-09-02 15:49 ` voidlinux-github
@ 2019-09-02 15:49 ` voidlinux-github
  2019-09-02 17:11 ` voidlinux-github
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 15:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From cf2b1958b32d01e8ff38385a1378ff17f4b79b1d Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..96e1d828fe5
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,35 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+		export SCONS_ARGS="--no-sse";;
+	esac
+
+	scons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vlicense LICENSE
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (5 preceding siblings ...)
  2019-09-02 15:49 ` voidlinux-github
@ 2019-09-02 17:11 ` voidlinux-github
  2019-09-02 17:11 ` voidlinux-github
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 17:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From 880e19a2609b5a56210a1e2e3dc17b8159f7f255 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..08301725c7b
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,37 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+		export SCONS_ARGS="--no-sse";;
+	esac
+
+	scons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vlicense LICENSE
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (6 preceding siblings ...)
  2019-09-02 17:11 ` voidlinux-github
@ 2019-09-02 17:11 ` voidlinux-github
  2019-09-08 12:05 ` voidlinux-github
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-02 17:11 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From 880e19a2609b5a56210a1e2e3dc17b8159f7f255 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: ThePowderToy-94.1

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

diff --git a/srcpkgs/ThePowderToy/template b/srcpkgs/ThePowderToy/template
new file mode 100644
index 00000000000..08301725c7b
--- /dev/null
+++ b/srcpkgs/ThePowderToy/template
@@ -0,0 +1,37 @@
+# Template file for 'ThePowderToy'
+pkgname=ThePowderToy
+version=94.1
+revision=1
+wrksrc=The-Powder-Toy-${version}
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/The-Powder-Toy/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+do_build() {
+	case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+		export SCONS_ARGS="--no-sse";;
+	esac
+
+	scons -j${XBPS_MAKEJOBS} ${SCONS_ARGS}
+}
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vlicense LICENSE
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (7 preceding siblings ...)
  2019-09-02 17:11 ` voidlinux-github
@ 2019-09-08 12:05 ` voidlinux-github
  2019-09-08 12:05 ` voidlinux-github
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-08 12:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From 19817d0481f723b15c10f52c6fdecd6699c534f5 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..c58c615884f
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,31 @@
+# Template file for 'ThePowderToy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+  export make_build_args="--no-sse";;
+esac
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: ThePowderToy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (8 preceding siblings ...)
  2019-09-08 12:05 ` voidlinux-github
@ 2019-09-08 12:05 ` voidlinux-github
  2019-09-08 12:12 ` [PR PATCH] [Updated] New package: The-Powder-Toy-94.1 voidlinux-github
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-08 12:05 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: ThePowderToy-94.1


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

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

From 19817d0481f723b15c10f52c6fdecd6699c534f5 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..c58c615884f
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,31 @@
+# Template file for 'ThePowderToy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+  export make_build_args="--no-sse";;
+esac
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (9 preceding siblings ...)
  2019-09-08 12:05 ` voidlinux-github
@ 2019-09-08 12:12 ` voidlinux-github
  2019-09-08 12:12 ` voidlinux-github
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-08 12:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: The-Powder-Toy-94.1


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

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

From 73e6a68af3f19d7bf2f9ec91ebed14a2b903d771 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..c5e319d0f4b
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,31 @@
+# Template file for 'The-Powder-Toy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+	export make_build_args="--no-sse";;
+esac
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (10 preceding siblings ...)
  2019-09-08 12:12 ` [PR PATCH] [Updated] New package: The-Powder-Toy-94.1 voidlinux-github
@ 2019-09-08 12:12 ` voidlinux-github
  2019-09-08 12:55 ` voidlinux-github
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-08 12:12 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: The-Powder-Toy-94.1


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

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

From 73e6a68af3f19d7bf2f9ec91ebed14a2b903d771 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..c5e319d0f4b
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,31 @@
+# Template file for 'The-Powder-Toy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE" in aarch64*|arm*|ppc*)
+	export make_build_args="--no-sse";;
+esac
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (11 preceding siblings ...)
  2019-09-08 12:12 ` voidlinux-github
@ 2019-09-08 12:55 ` voidlinux-github
  2019-09-08 18:14 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-08 12:55 UTC (permalink / raw)
  To: ml

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

New comment by singul0 on void-packages repository

https://github.com/void-linux/void-packages/pull/14167#issuecomment-529200012

Comment:
@Chocimier thank you for the review

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

* Re: [PR PATCH] [Updated] New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (13 preceding siblings ...)
  2019-09-08 18:14 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-09-08 18:14 ` voidlinux-github
  2019-09-10 21:28 ` voidlinux-github
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-08 18:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: The-Powder-Toy-94.1


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

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

From 8f08ff2337f88c2029ebbd1f7599990bbc3b09c1 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 34 +++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..8f1983977a6
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,34 @@
+# Template file for 'The-Powder-Toy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE"
+	in x86_64*|i686*)
+		;;
+	*)
+		make_build_args="--no-sse";;
+esac
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (12 preceding siblings ...)
  2019-09-08 12:55 ` voidlinux-github
@ 2019-09-08 18:14 ` voidlinux-github
  2019-09-08 18:14 ` voidlinux-github
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-08 18:14 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: The-Powder-Toy-94.1


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

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

From 8f08ff2337f88c2029ebbd1f7599990bbc3b09c1 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 34 +++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..8f1983977a6
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,34 @@
+# Template file for 'The-Powder-Toy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE"
+	in x86_64*|i686*)
+		;;
+	*)
+		make_build_args="--no-sse";;
+esac
+
+do_install() {
+	case "$XBPS_TARGET_MACHINE" in
+	x86_64*)
+		vbin build/powder64 powder;;
+	i686*)
+		vbin build/powder powder;;
+	*)
+		vbin build/powder-legacy powder;;
+	esac
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (15 preceding siblings ...)
  2019-09-10 21:28 ` voidlinux-github
@ 2019-09-10 21:28 ` voidlinux-github
  2019-09-24 15:34 ` [PR PATCH] [Merged]: " voidlinux-github
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-10 21:28 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: The-Powder-Toy-94.1


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

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

From ae0d44f0adc79c0bb29f0b5bed35e4cc98f11e54 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..778c0f8f211
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,28 @@
+# Template file for 'The-Powder-Toy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+make_build_args="--output=powder"
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE"
+	in x86_64*|i686*)
+		;;
+	*)
+		make_build_args+=" --no-sse";;
+esac
+
+do_install() {
+	vbin build/powder
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Updated] New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (14 preceding siblings ...)
  2019-09-08 18:14 ` voidlinux-github
@ 2019-09-10 21:28 ` voidlinux-github
  2019-09-10 21:28 ` voidlinux-github
  2019-09-24 15:34 ` [PR PATCH] [Merged]: " voidlinux-github
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-10 21:28 UTC (permalink / raw)
  To: ml

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

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

https://github.com/singul0/void-packages ThePowderToy-94.1
https://github.com/void-linux/void-packages/pull/14167

New package: The-Powder-Toy-94.1


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

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

From ae0d44f0adc79c0bb29f0b5bed35e4cc98f11e54 Mon Sep 17 00:00:00 2001
From: Illia Shestakov <ishestakov@airmail.cc>
Date: Mon, 2 Sep 2019 17:43:52 +0300
Subject: [PATCH] New package: The-Powder-Toy-94.1

---
 srcpkgs/The-Powder-Toy/template | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)
 create mode 100644 srcpkgs/The-Powder-Toy/template

diff --git a/srcpkgs/The-Powder-Toy/template b/srcpkgs/The-Powder-Toy/template
new file mode 100644
index 00000000000..778c0f8f211
--- /dev/null
+++ b/srcpkgs/The-Powder-Toy/template
@@ -0,0 +1,28 @@
+# Template file for 'The-Powder-Toy'
+pkgname=The-Powder-Toy
+version=94.1
+revision=1
+build_style=scons
+make_build_args="--output=powder"
+makedepends="SDL2-devel lua51-devel fftw-devel bzip2-devel zlib-devel"
+short_desc="Falling sand physics sandbox, simulates air pressure, velocity & heat"
+maintainer="Illia Shestakov <ishestakov@airmail.cc>"
+license="GPL-3.0-or-later"
+homepage="https://powdertoy.co.uk/"
+distfiles="https://github.com/The-Powder-Toy/${pkgname}/archive/v${version}.tar.gz"
+checksum=9770c0732c97e4e89a1e53330c969e9675595f78e6673c519c3724d6df591e72
+CPPDEFINES=IGNORE_UPDATES
+
+case "$XBPS_TARGET_MACHINE"
+	in x86_64*|i686*)
+		;;
+	*)
+		make_build_args+=" --no-sse";;
+esac
+
+do_install() {
+	vbin build/powder
+	vdoc README.md
+	vinstall resources/powder.desktop 664 /usr/share/applications/
+	vinstall resources/icon/powder-256.png 644 /usr/share/pixmaps/ powder.png
+}

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

* Re: [PR PATCH] [Merged]: New package: The-Powder-Toy-94.1
  2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
                   ` (16 preceding siblings ...)
  2019-09-10 21:28 ` voidlinux-github
@ 2019-09-24 15:34 ` voidlinux-github
  17 siblings, 0 replies; 19+ messages in thread
From: voidlinux-github @ 2019-09-24 15:34 UTC (permalink / raw)
  To: ml

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

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

New package: The-Powder-Toy-94.1
https://github.com/void-linux/void-packages/pull/14167

Description:


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

end of thread, other threads:[~2019-09-24 15:34 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-02 14:47 [PR PATCH] New package: ThePowderToy-94.1 voidlinux-github
2019-09-02 15:35 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-02 15:35 ` voidlinux-github
2019-09-02 15:39 ` voidlinux-github
2019-09-02 15:39 ` voidlinux-github
2019-09-02 15:49 ` voidlinux-github
2019-09-02 15:49 ` voidlinux-github
2019-09-02 17:11 ` voidlinux-github
2019-09-02 17:11 ` voidlinux-github
2019-09-08 12:05 ` voidlinux-github
2019-09-08 12:05 ` voidlinux-github
2019-09-08 12:12 ` [PR PATCH] [Updated] New package: The-Powder-Toy-94.1 voidlinux-github
2019-09-08 12:12 ` voidlinux-github
2019-09-08 12:55 ` voidlinux-github
2019-09-08 18:14 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-08 18:14 ` voidlinux-github
2019-09-10 21:28 ` voidlinux-github
2019-09-10 21:28 ` voidlinux-github
2019-09-24 15:34 ` [PR PATCH] [Merged]: " voidlinux-github

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