games/multimc: prepare for Qt5-5.15

- Update to newer release, which is easier to build against Qt5-5.15
This commit is contained in:
Tobias C. Berner 2020-05-30 15:42:47 +00:00
parent 1a89148b9a
commit fe1609abb3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=537085
3 changed files with 15 additions and 5 deletions

View File

@ -1,8 +1,7 @@
# $FreeBSD$
PORTNAME= multimc
DISTVERSION= 0.6.7
PORTREVISION= 1
DISTVERSION= 0.6.11
CATEGORIES= games java
MAINTAINER= me@tsundoku.ne.jp

View File

@ -1,6 +1,6 @@
TIMESTAMP = 1567432574
SHA256 (MultiMC-MultiMC5-0.6.7_GH0.tar.gz) = 3ec38a5f622048ba3926f0e20fb296d646c7848f8313143062b3e2bd273149ae
SIZE (MultiMC-MultiMC5-0.6.7_GH0.tar.gz) = 2396638
TIMESTAMP = 1590852396
SHA256 (MultiMC-MultiMC5-0.6.11_GH0.tar.gz) = 7cad736f1fe3f2887aeaa7a7f3927930e16ed815c98e4cf3a7378a99c426a775
SIZE (MultiMC-MultiMC5-0.6.11_GH0.tar.gz) = 2379632
SHA256 (MultiMC-libnbtplusplus-508eda8_GH0.tar.gz) = 14f16c8e6dc264017684774cdd9c6f149855e464895b28c29f9f55ea76d34f1a
SIZE (MultiMC-libnbtplusplus-508eda8_GH0.tar.gz) = 47406
SHA256 (MultiMC-quazip-3691d57_GH0.tar.gz) = 17a9457360053fa2c6c849c75fa760383036bd14d7d8f7bd0d958bfc2a584009

View File

@ -0,0 +1,11 @@
--- api/logic/Version.cpp.orig 2020-05-30 15:28:28 UTC
+++ api/logic/Version.cpp
@@ -78,7 +78,7 @@ void Version::parse()
// FIXME: this is bad. versions can contain a lot more separators...
QStringList parts = m_string.split('.');
- for (const auto part : parts)
+ for (const auto& part : parts)
{
m_sections.append(Section(part));
}