* [ptxdist] [PATCH v2] glmark2: version bump 2019-03-27-geaa70888 -> 2020.04
@ 2020-07-06 12:14 Philipp Zabel
2020-07-07 5:45 ` [ptxdist] [APPLIED] " Michael Olbrich
0 siblings, 1 reply; 2+ messages in thread
From: Philipp Zabel @ 2020-07-06 12:14 UTC (permalink / raw)
To: ptxdist
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
Changed since v1:
- added python3 fix from master
---
...1-Build-Fix-Python-3-incompatibility.patch | 21 +++++++++++++++++++
patches/glmark2-2020.04/series | 4 ++++
rules/glmark2.make | 9 ++++----
3 files changed, 29 insertions(+), 5 deletions(-)
create mode 100644 patches/glmark2-2020.04/0001-Build-Fix-Python-3-incompatibility.patch
create mode 100644 patches/glmark2-2020.04/series
diff --git a/patches/glmark2-2020.04/0001-Build-Fix-Python-3-incompatibility.patch b/patches/glmark2-2020.04/0001-Build-Fix-Python-3-incompatibility.patch
new file mode 100644
index 000000000000..88c85406a9af
--- /dev/null
+++ b/patches/glmark2-2020.04/0001-Build-Fix-Python-3-incompatibility.patch
@@ -0,0 +1,21 @@
+From: Marvin Schmidt <marv@exherbo.org>
+Date: Sun, 3 May 2020 18:20:05 +0200
+Subject: [PATCH] Build: Fix Python 3 incompatibility
+
+---
+ wscript | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/wscript b/wscript
+index aefde706be0a..e09fa7850e1c 100644
+--- a/wscript
++++ b/wscript
+@@ -20,7 +20,7 @@ FLAVORS = {
+ 'x11-gl' : 'glmark2',
+ 'x11-glesv2' : 'glmark2-es2',
+ }
+-FLAVORS_STR = ", ".join(sorted(FLAVORS.keys() + ['all-linux', 'all-win32']))
++FLAVORS_STR = ", ".join(sorted(list(FLAVORS) + ['all-linux', 'all-win32']))
+
+ def linux_flavors():
+ return [f for f in FLAVORS.keys() if not f.startswith('win32')]
diff --git a/patches/glmark2-2020.04/series b/patches/glmark2-2020.04/series
new file mode 100644
index 000000000000..c7415054f2f3
--- /dev/null
+++ b/patches/glmark2-2020.04/series
@@ -0,0 +1,4 @@
+# generated by git-ptx-patches
+#tag:base --start-number 1
+0001-Build-Fix-Python-3-incompatibility.patch
+# 6f94baa0134364a7f817abb600ce0eb2 - git-ptx-patches magic
diff --git a/rules/glmark2.make b/rules/glmark2.make
index 5f495886deb3..d6b35a3bfca4 100644
--- a/rules/glmark2.make
+++ b/rules/glmark2.make
@@ -14,12 +14,11 @@ PACKAGES-$(PTXCONF_GLMARK2) += glmark2
#
# Paths and names
#
-# No tags: use a fake descriptive commit-ish to include the date
-GLMARK2_VERSION := 2019-03-27-geaa70888
-GLMARK2_MD5 := ee3ae64489fbcb942490ae758362e737
+GLMARK2_VERSION := 2020.04
+GLMARK2_MD5 := a90713700a740180fef3576f7ee3c9db
GLMARK2 := glmark2-$(GLMARK2_VERSION)
-GLMARK2_SUFFIX := tar.xz
-GLMARK2_URL := https://github.com/glmark2/glmark2.git;tag=$(GLMARK2_VERSION)
+GLMARK2_SUFFIX := tar.gz
+GLMARK2_URL := https://github.com/glmark2/glmark2/archive/$(GLMARK2_VERSION).$(GLMARK2_SUFFIX)
GLMARK2_SOURCE := $(SRCDIR)/$(GLMARK2).$(GLMARK2_SUFFIX)
GLMARK2_DIR := $(BUILDDIR)/$(GLMARK2)
GLMARK2_LICENSE := GPL-3.0-only AND SGIv1
--
2.20.1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [ptxdist] [APPLIED] glmark2: version bump 2019-03-27-geaa70888 -> 2020.04
2020-07-06 12:14 [ptxdist] [PATCH v2] glmark2: version bump 2019-03-27-geaa70888 -> 2020.04 Philipp Zabel
@ 2020-07-07 5:45 ` Michael Olbrich
0 siblings, 0 replies; 2+ messages in thread
From: Michael Olbrich @ 2020-07-07 5:45 UTC (permalink / raw)
To: ptxdist; +Cc: Philipp Zabel
Thanks, applied as 40966f59c2a762357495281963c9ce7871d9c4f8.
Michael
[sent from post-receive hook]
On Tue, 07 Jul 2020 07:45:53 +0200, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> Message-Id: <20200706121434.21053-1-p.zabel@pengutronix.de>
> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
>
> diff --git a/patches/glmark2-2020.04/0001-Build-Fix-Python-3-incompatibility.patch b/patches/glmark2-2020.04/0001-Build-Fix-Python-3-incompatibility.patch
> new file mode 100644
> index 000000000000..88c85406a9af
> --- /dev/null
> +++ b/patches/glmark2-2020.04/0001-Build-Fix-Python-3-incompatibility.patch
> @@ -0,0 +1,21 @@
> +From: Marvin Schmidt <marv@exherbo.org>
> +Date: Sun, 3 May 2020 18:20:05 +0200
> +Subject: [PATCH] Build: Fix Python 3 incompatibility
> +
> +---
> + wscript | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/wscript b/wscript
> +index aefde706be0a..e09fa7850e1c 100644
> +--- a/wscript
> ++++ b/wscript
> +@@ -20,7 +20,7 @@ FLAVORS = {
> + 'x11-gl' : 'glmark2',
> + 'x11-glesv2' : 'glmark2-es2',
> + }
> +-FLAVORS_STR = ", ".join(sorted(FLAVORS.keys() + ['all-linux', 'all-win32']))
> ++FLAVORS_STR = ", ".join(sorted(list(FLAVORS) + ['all-linux', 'all-win32']))
> +
> + def linux_flavors():
> + return [f for f in FLAVORS.keys() if not f.startswith('win32')]
> diff --git a/patches/glmark2-2020.04/series b/patches/glmark2-2020.04/series
> new file mode 100644
> index 000000000000..c7415054f2f3
> --- /dev/null
> +++ b/patches/glmark2-2020.04/series
> @@ -0,0 +1,4 @@
> +# generated by git-ptx-patches
> +#tag:base --start-number 1
> +0001-Build-Fix-Python-3-incompatibility.patch
> +# 6f94baa0134364a7f817abb600ce0eb2 - git-ptx-patches magic
> diff --git a/rules/glmark2.make b/rules/glmark2.make
> index 5f495886deb3..d6b35a3bfca4 100644
> --- a/rules/glmark2.make
> +++ b/rules/glmark2.make
> @@ -14,12 +14,11 @@ PACKAGES-$(PTXCONF_GLMARK2) += glmark2
> #
> # Paths and names
> #
> -# No tags: use a fake descriptive commit-ish to include the date
> -GLMARK2_VERSION := 2019-03-27-geaa70888
> -GLMARK2_MD5 := ee3ae64489fbcb942490ae758362e737
> +GLMARK2_VERSION := 2020.04
> +GLMARK2_MD5 := a90713700a740180fef3576f7ee3c9db
> GLMARK2 := glmark2-$(GLMARK2_VERSION)
> -GLMARK2_SUFFIX := tar.xz
> -GLMARK2_URL := https://github.com/glmark2/glmark2.git;tag=$(GLMARK2_VERSION)
> +GLMARK2_SUFFIX := tar.gz
> +GLMARK2_URL := https://github.com/glmark2/glmark2/archive/$(GLMARK2_VERSION).$(GLMARK2_SUFFIX)
> GLMARK2_SOURCE := $(SRCDIR)/$(GLMARK2).$(GLMARK2_SUFFIX)
> GLMARK2_DIR := $(BUILDDIR)/$(GLMARK2)
> GLMARK2_LICENSE := GPL-3.0-only AND SGIv1
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-07-07 5:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-06 12:14 [ptxdist] [PATCH v2] glmark2: version bump 2019-03-27-geaa70888 -> 2020.04 Philipp Zabel
2020-07-07 5:45 ` [ptxdist] [APPLIED] " Michael Olbrich
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox