Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] endless-sky: update to 0.9.9
@ 2019-06-01 19:23 voidlinux-github
  2019-06-02  6:35 ` voidlinux-github
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: voidlinux-github @ 2019-06-01 19:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/abenson/void-packages endlesssky_0999
https://github.com/void-linux/void-packages/pull/12071

endless-sky: update to 0.9.9


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

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

From b86dfe199443ac95f61d1c4c57d1a1c712dd8c08 Mon Sep 17 00:00:00 2001
From: Andrew Benson <abenson+void@gmail.com>
Date: Sat, 1 Jun 2019 14:23:24 -0500
Subject: [PATCH] endless-sky: update to 0.9.9

---
 srcpkgs/endless-sky/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 4eb72b03315..b9c90b9487e 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -1,7 +1,7 @@
 # Template file for 'endless-sky'
 pkgname=endless-sky
-version=0.9.8
-revision=2
+version=0.9.9
+revision=1
 build_style=scons
 makedepends="SDL2-devel glew-devel libjpeg-turbo-devel libmad-devel
  libopenal-devel libpng-devel"
@@ -11,7 +11,7 @@ maintainer="CoolOhm <micvlas@gmail.com>"
 homepage="http://endless-sky.github.io/"
 license="GPL-3.0-or-later"
 distfiles="https://github.com/endless-sky/endless-sky/archive/v${version}.tar.gz"
-checksum=69078c67656709646deb0c46fd960aa905601c23bb47c1696b0962ae8dff6d1e
+checksum=8bb9a17fd28177b2c17cadb282edcf4ef9a8b3de146f177cc4ca37c6f0aed8a5
 
 endless-sky-data_package() {
 	short_desc+=" - data files"

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

* Re: endless-sky: update to 0.9.9
  2019-06-01 19:23 [PR PATCH] endless-sky: update to 0.9.9 voidlinux-github
@ 2019-06-02  6:35 ` voidlinux-github
  2019-06-02 18:21 ` [PR PATCH] [Updated] " voidlinux-github
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-06-02  6:35 UTC (permalink / raw)
  To: ml

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

New comment by Hoshpak on void-packages repository

https://github.com/void-linux/void-packages/pull/12071#issuecomment-498003878
Comment:
Cross fails because it is using the host compiler.

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

* Re: [PR PATCH] [Updated] endless-sky: update to 0.9.9
  2019-06-01 19:23 [PR PATCH] endless-sky: update to 0.9.9 voidlinux-github
  2019-06-02  6:35 ` voidlinux-github
  2019-06-02 18:21 ` [PR PATCH] [Updated] " voidlinux-github
@ 2019-06-02 18:21 ` voidlinux-github
  2019-06-03 22:58 ` voidlinux-github
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-06-02 18:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/abenson/void-packages endlesssky_0999
https://github.com/void-linux/void-packages/pull/12071

endless-sky: update to 0.9.9


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

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

From 40f0b92d7e060661c57b83da260fa0535fa463ba Mon Sep 17 00:00:00 2001
From: Andrew Benson <abenson+void@gmail.com>
Date: Sat, 1 Jun 2019 14:23:24 -0500
Subject: [PATCH] endless-sky: update to 0.9.9

---
 srcpkgs/endless-sky/patches/cxx-cross.patch | 11 +++++++++++
 srcpkgs/endless-sky/template                |  6 +++---
 2 files changed, 14 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/endless-sky/patches/cxx-cross.patch

diff --git a/srcpkgs/endless-sky/patches/cxx-cross.patch b/srcpkgs/endless-sky/patches/cxx-cross.patch
new file mode 100644
index 00000000000..b8ee12c6b98
--- /dev/null
+++ b/srcpkgs/endless-sky/patches/cxx-cross.patch
@@ -0,0 +1,11 @@
+--- SConstruct.orig
++++ SConstruct
+@@ -2,6 +2,8 @@
+ 
+ # Load environment variables, including some that should be renamed.
+ env = Environment(ENV = os.environ)
++if 'CXX' in os.environ:
++	env.Replace(CXX = os.environ['CXX'])
+ if 'CXXFLAGS' in os.environ:
+ 	env.Append(CCFLAGS = os.environ['CXXFLAGS'])
+ if 'LDFLAGS' in os.environ:
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 4eb72b03315..b9c90b9487e 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -1,7 +1,7 @@
 # Template file for 'endless-sky'
 pkgname=endless-sky
-version=0.9.8
-revision=2
+version=0.9.9
+revision=1
 build_style=scons
 makedepends="SDL2-devel glew-devel libjpeg-turbo-devel libmad-devel
  libopenal-devel libpng-devel"
@@ -11,7 +11,7 @@ maintainer="CoolOhm <micvlas@gmail.com>"
 homepage="http://endless-sky.github.io/"
 license="GPL-3.0-or-later"
 distfiles="https://github.com/endless-sky/endless-sky/archive/v${version}.tar.gz"
-checksum=69078c67656709646deb0c46fd960aa905601c23bb47c1696b0962ae8dff6d1e
+checksum=8bb9a17fd28177b2c17cadb282edcf4ef9a8b3de146f177cc4ca37c6f0aed8a5
 
 endless-sky-data_package() {
 	short_desc+=" - data files"

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

* Re: [PR PATCH] [Updated] endless-sky: update to 0.9.9
  2019-06-01 19:23 [PR PATCH] endless-sky: update to 0.9.9 voidlinux-github
  2019-06-02  6:35 ` voidlinux-github
@ 2019-06-02 18:21 ` voidlinux-github
  2019-06-02 18:21 ` voidlinux-github
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-06-02 18:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/abenson/void-packages endlesssky_0999
https://github.com/void-linux/void-packages/pull/12071

endless-sky: update to 0.9.9


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

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

From 40f0b92d7e060661c57b83da260fa0535fa463ba Mon Sep 17 00:00:00 2001
From: Andrew Benson <abenson+void@gmail.com>
Date: Sat, 1 Jun 2019 14:23:24 -0500
Subject: [PATCH] endless-sky: update to 0.9.9

---
 srcpkgs/endless-sky/patches/cxx-cross.patch | 11 +++++++++++
 srcpkgs/endless-sky/template                |  6 +++---
 2 files changed, 14 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/endless-sky/patches/cxx-cross.patch

diff --git a/srcpkgs/endless-sky/patches/cxx-cross.patch b/srcpkgs/endless-sky/patches/cxx-cross.patch
new file mode 100644
index 00000000000..b8ee12c6b98
--- /dev/null
+++ b/srcpkgs/endless-sky/patches/cxx-cross.patch
@@ -0,0 +1,11 @@
+--- SConstruct.orig
++++ SConstruct
+@@ -2,6 +2,8 @@
+ 
+ # Load environment variables, including some that should be renamed.
+ env = Environment(ENV = os.environ)
++if 'CXX' in os.environ:
++	env.Replace(CXX = os.environ['CXX'])
+ if 'CXXFLAGS' in os.environ:
+ 	env.Append(CCFLAGS = os.environ['CXXFLAGS'])
+ if 'LDFLAGS' in os.environ:
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 4eb72b03315..b9c90b9487e 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -1,7 +1,7 @@
 # Template file for 'endless-sky'
 pkgname=endless-sky
-version=0.9.8
-revision=2
+version=0.9.9
+revision=1
 build_style=scons
 makedepends="SDL2-devel glew-devel libjpeg-turbo-devel libmad-devel
  libopenal-devel libpng-devel"
@@ -11,7 +11,7 @@ maintainer="CoolOhm <micvlas@gmail.com>"
 homepage="http://endless-sky.github.io/"
 license="GPL-3.0-or-later"
 distfiles="https://github.com/endless-sky/endless-sky/archive/v${version}.tar.gz"
-checksum=69078c67656709646deb0c46fd960aa905601c23bb47c1696b0962ae8dff6d1e
+checksum=8bb9a17fd28177b2c17cadb282edcf4ef9a8b3de146f177cc4ca37c6f0aed8a5
 
 endless-sky-data_package() {
 	short_desc+=" - data files"

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

* Re: [PR PATCH] [Updated] endless-sky: update to 0.9.9
  2019-06-01 19:23 [PR PATCH] endless-sky: update to 0.9.9 voidlinux-github
                   ` (2 preceding siblings ...)
  2019-06-02 18:21 ` voidlinux-github
@ 2019-06-03 22:58 ` voidlinux-github
  2019-06-03 22:58 ` voidlinux-github
  2019-06-04  8:51 ` [PR PATCH] [Merged]: " voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-06-03 22:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/abenson/void-packages endlesssky_0999
https://github.com/void-linux/void-packages/pull/12071

endless-sky: update to 0.9.9


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

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

From 347aaf341c9c04dd8c64bf53d344c6cce863f970 Mon Sep 17 00:00:00 2001
From: Andrew Benson <abenson+void@gmail.com>
Date: Sat, 1 Jun 2019 14:23:24 -0500
Subject: [PATCH] endless-sky: update to 0.9.9

---
 srcpkgs/endless-sky/patches/cxx-cross.patch | 11 +++++++++++
 srcpkgs/endless-sky/template                |  8 ++++----
 2 files changed, 15 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/endless-sky/patches/cxx-cross.patch

diff --git a/srcpkgs/endless-sky/patches/cxx-cross.patch b/srcpkgs/endless-sky/patches/cxx-cross.patch
new file mode 100644
index 00000000000..b8ee12c6b98
--- /dev/null
+++ b/srcpkgs/endless-sky/patches/cxx-cross.patch
@@ -0,0 +1,11 @@
+--- SConstruct.orig
++++ SConstruct
+@@ -2,6 +2,8 @@
+ 
+ # Load environment variables, including some that should be renamed.
+ env = Environment(ENV = os.environ)
++if 'CXX' in os.environ:
++	env.Replace(CXX = os.environ['CXX'])
+ if 'CXXFLAGS' in os.environ:
+ 	env.Append(CCFLAGS = os.environ['CXXFLAGS'])
+ if 'LDFLAGS' in os.environ:
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 4eb72b03315..f3e4da66ece 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -1,17 +1,17 @@
 # Template file for 'endless-sky'
 pkgname=endless-sky
-version=0.9.8
-revision=2
+version=0.9.9
+revision=1
 build_style=scons
 makedepends="SDL2-devel glew-devel libjpeg-turbo-devel libmad-devel
  libopenal-devel libpng-devel"
 depends="${pkgname}-data"
 short_desc="Space exploring, trading, and combat game"
 maintainer="CoolOhm <micvlas@gmail.com>"
-homepage="http://endless-sky.github.io/"
 license="GPL-3.0-or-later"
+homepage="http://endless-sky.github.io/"
 distfiles="https://github.com/endless-sky/endless-sky/archive/v${version}.tar.gz"
-checksum=69078c67656709646deb0c46fd960aa905601c23bb47c1696b0962ae8dff6d1e
+checksum=8bb9a17fd28177b2c17cadb282edcf4ef9a8b3de146f177cc4ca37c6f0aed8a5
 
 endless-sky-data_package() {
 	short_desc+=" - data files"

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

* Re: [PR PATCH] [Updated] endless-sky: update to 0.9.9
  2019-06-01 19:23 [PR PATCH] endless-sky: update to 0.9.9 voidlinux-github
                   ` (3 preceding siblings ...)
  2019-06-03 22:58 ` voidlinux-github
@ 2019-06-03 22:58 ` voidlinux-github
  2019-06-04  8:51 ` [PR PATCH] [Merged]: " voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-06-03 22:58 UTC (permalink / raw)
  To: ml

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

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

https://github.com/abenson/void-packages endlesssky_0999
https://github.com/void-linux/void-packages/pull/12071

endless-sky: update to 0.9.9


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

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

From 347aaf341c9c04dd8c64bf53d344c6cce863f970 Mon Sep 17 00:00:00 2001
From: Andrew Benson <abenson+void@gmail.com>
Date: Sat, 1 Jun 2019 14:23:24 -0500
Subject: [PATCH] endless-sky: update to 0.9.9

---
 srcpkgs/endless-sky/patches/cxx-cross.patch | 11 +++++++++++
 srcpkgs/endless-sky/template                |  8 ++++----
 2 files changed, 15 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/endless-sky/patches/cxx-cross.patch

diff --git a/srcpkgs/endless-sky/patches/cxx-cross.patch b/srcpkgs/endless-sky/patches/cxx-cross.patch
new file mode 100644
index 00000000000..b8ee12c6b98
--- /dev/null
+++ b/srcpkgs/endless-sky/patches/cxx-cross.patch
@@ -0,0 +1,11 @@
+--- SConstruct.orig
++++ SConstruct
+@@ -2,6 +2,8 @@
+ 
+ # Load environment variables, including some that should be renamed.
+ env = Environment(ENV = os.environ)
++if 'CXX' in os.environ:
++	env.Replace(CXX = os.environ['CXX'])
+ if 'CXXFLAGS' in os.environ:
+ 	env.Append(CCFLAGS = os.environ['CXXFLAGS'])
+ if 'LDFLAGS' in os.environ:
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 4eb72b03315..f3e4da66ece 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -1,17 +1,17 @@
 # Template file for 'endless-sky'
 pkgname=endless-sky
-version=0.9.8
-revision=2
+version=0.9.9
+revision=1
 build_style=scons
 makedepends="SDL2-devel glew-devel libjpeg-turbo-devel libmad-devel
  libopenal-devel libpng-devel"
 depends="${pkgname}-data"
 short_desc="Space exploring, trading, and combat game"
 maintainer="CoolOhm <micvlas@gmail.com>"
-homepage="http://endless-sky.github.io/"
 license="GPL-3.0-or-later"
+homepage="http://endless-sky.github.io/"
 distfiles="https://github.com/endless-sky/endless-sky/archive/v${version}.tar.gz"
-checksum=69078c67656709646deb0c46fd960aa905601c23bb47c1696b0962ae8dff6d1e
+checksum=8bb9a17fd28177b2c17cadb282edcf4ef9a8b3de146f177cc4ca37c6f0aed8a5
 
 endless-sky-data_package() {
 	short_desc+=" - data files"

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

* Re: [PR PATCH] [Merged]: endless-sky: update to 0.9.9
  2019-06-01 19:23 [PR PATCH] endless-sky: update to 0.9.9 voidlinux-github
                   ` (4 preceding siblings ...)
  2019-06-03 22:58 ` voidlinux-github
@ 2019-06-04  8:51 ` voidlinux-github
  5 siblings, 0 replies; 7+ messages in thread
From: voidlinux-github @ 2019-06-04  8:51 UTC (permalink / raw)
  To: ml

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

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

endless-sky: update to 0.9.9
https://github.com/void-linux/void-packages/pull/12071
Description: 

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

end of thread, other threads:[~2019-06-04  8:51 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-01 19:23 [PR PATCH] endless-sky: update to 0.9.9 voidlinux-github
2019-06-02  6:35 ` voidlinux-github
2019-06-02 18:21 ` [PR PATCH] [Updated] " voidlinux-github
2019-06-02 18:21 ` voidlinux-github
2019-06-03 22:58 ` voidlinux-github
2019-06-03 22:58 ` voidlinux-github
2019-06-04  8:51 ` [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).