summaryrefslogtreecommitdiffstats
path: root/src/qt5.mk
Commit message (Collapse)AuthorAgeFilesLines
* URL updatesViktor Szakats2017-03-041-1/+1
|
* add _WEBSITE and _DESCR fields to core packagesBoris Nagaev2016-12-221-0/+2
| | | | | | See https://github.com/mxe/mxe/issues/1422 Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-271-2/+1
| | | | | | | | | | | | | | | | | | | The following script was applied: sed ':a;/part of MXE.$/{N;s/\n//;ba}' -i $(git grep -l 'part of MXE') sed 's/\(part of MXE\).*\(See index.html\)/\1. \2/' -i \ $(git grep -l 'part of MXE.*See index.html') before='This file is part of MXE. See index.html for further information.' after='This file is part of MXE. See LICENSE.md for licensing information.' sed "s/$before/$after/" -i $(git grep -l 'part of MXE') Then git grep 'index.html for further information' revealed two other files. One of them was patched manually (patch.mk). Makefile has text "See index.html for further information" unrelated to licensing. See https://github.com/mxe/mxe/issues/1500#issuecomment-241340792
* qt5 virtual pkg: only include pkgs inheriting from qtbaseTony Theodore2016-07-161-1/+1
| | | | other pkgs may depend on qtbase and not be part of the modules
* pthreads, qt5: remove unnecessary *_UPDATE boilerplateTony Theodore2015-11-301-1/+0
|
* qt5: remove download related variablesTony Theodore2015-10-171-9/+1
| | | | in rare cases, it would try downloading qtbase again
* Revert "qt5: try to fix CMake files"Timothy Gu2014-09-231-6/+0
| | | | This reverts commit 8a6cf7cab7ab03217fd8e6c305eabc7d2913a4b3.
* qt5: try to fix CMake filesTimothy Gu2014-09-231-0/+6
| | | | | | | | | See #466. This is one of the worst hacks I've ever seen. If there is a way to fix this better, please mention on #466. Signed-off-by: Timothy Gu <timothygu99@gmail.com>
* Move package versions from index.html back into the src/*.mk filesVolker Grabsch2013-07-211-0/+1
| | | | | | | | | | | | | | | | | | | | | | | Most of the automatic conversion was done using the following Python script: import os import re pkgs = sorted(mkfile[:-len('.mk')] for mkfile in os.listdir('src') if mkfile.endswith('.mk')) with open('index.html', 'rb') as f: index = f.read() pkgs_index = re.findall('<td class="package">([^<]*)</td>', index) assert pkgs_index == pkgs versions = dict(re.findall('<td id="([^"]*)-version">([^<]*)</td>', index)) assert sorted(versions.keys()) == pkgs for pkg in pkgs: version = versions[pkg] with open('src/' + pkg + '.mk', 'rb') as f: mk = f.read() checksumpos = mk.index('\n$(PKG)_CHECKSUM ') versionline = '\n$(PKG)_VERSION := %(version)s' % {'version': version} newmk = mk[:checksumpos] + versionline + mk[checksumpos:] with open('src/' + pkg + '.mk', 'wb') as f: f.write(newmk)
* add qt5 convenience target packageTony Theodore2013-06-011-0/+17
|
* package qt5: replace monolothic package with module packagesMark Brand2012-12-201-64/+0
| | | | | Qt 5 is designed to be modular. The big monolothic tarball is actually deprecated.
* package qt5: remove obsolete configure optionsMark Brand2012-12-191-2/+0
|
* update package qt5 (final 5.0.0)Mark Brand2012-12-191-2/+2
|
* package qt5: temporarily disable c++11 on OSXTony Theodore2012-12-161-0/+1
|
* new package qt5Mark Brand2012-12-131-0/+65