Commit Graph

27 Commits

Author SHA1 Message Date
Mark Brand eec2367aba qwt: update and remove obsolete patch 2020-06-04 18:29:35 +02:00
Mark Brand ee88607e99 qwt: compatibility fix for Qt 5.15 2020-05-29 02:50:24 +02:00
Tony Theodore 5c4a5b99e5 qwt: build in top-level to install more features
closes #2359
2019-11-06 18:27:16 +11:00
Mark Brand 27afe4357b update: qtsystems, qwt 2019-01-04 22:45:42 +01:00
Mark Brand fa3b687f85 fix some more update macros for sourceforge packages 2018-03-25 17:02:16 +02:00
Tony Theodore ed83974220 qwt: fix qt5 deps (qt4 plugin active in cc deps update)
vtk mangling detected earlier
2017-12-23 08:19:00 +11:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Martin Müllenhaupt accc6a3fa0 create qt4 overlay plugin to link VTK and Qwt to Qt 4 instead of 5 2017-07-24 11:18:44 +02:00
Viktor Szakats 45d34aaac7 more URL updates 2017-03-10 13:59:00 +00:00
Viktor Szakats e961e447fb URL updates 2017-03-04 10:33:47 +00:00
Boris Nagaev 74163f1794 add _WEBSITE and _DESCR fields to core packages
See https://github.com/mxe/mxe/issues/1422

Automation (Python 2 code): https://gist.github.com/9f5c315e5d0cf113d41dc454b7a0eb41
2016-12-22 22:25:48 +01:00
Boris Nagaev 6adb5ade12 Copyright headers: point to LICENSE.md and shorten
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
2016-08-27 12:31:29 +03:00
Mark Brand a4077c1bd7 update qwt 2016-06-18 12:40:07 +02:00
Tony Theodore fc0ed34fb9 all packages: really use sha256 checksums 2015-09-23 18:32:58 +10:00
Tony Theodore a228c0488f all packages: switch to sha256 checksums
closes #871
2015-09-23 17:27:16 +10:00
Mark Brand 8b6b40748a qwt: update 2014-10-22 17:17:48 +02:00
Timothy Gu 7d265e6f70 Remove i686-pc-mingw32 package recipes
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-10-14 01:42:11 +00:00
Timothy Gu d07f8023da qt*: Disable i686-pc-mingw32
Leftover from 8b70bf0008

Signed-off-by: Timothy Gu <timothygu99@gmail.com>
2014-09-20 18:15:21 -07:00
Tony Theodore 1b7261ecad package qwt: enable shared build 2014-04-03 22:16:23 +11:00
Volker Grabsch e412eb642d Move package versions from index.html back into the src/*.mk files
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)
2013-07-22 01:41:31 +02:00
Volker Grabsch a34ea233b1 Fix initial comments of all src/*.mk files 2013-07-21 18:47:20 +02:00
Tony Theodore 1d2db4f8c5 package qwt: use qt5 qmake for test program 2013-06-01 21:57:40 +10:00
Mark Brand 935c4faa08 package qwt: move to qt5 2013-05-31 00:40:28 +02:00
Mark Brand b649727d65 update package qwt 2013-05-31 00:23:13 +02:00
Mark Brand ba2106d3f0 adjust references to qmake (Qt 4)
Follow-up to previous commit.
2013-04-02 22:09:27 +02:00
Mark Brand 4aad94f667 update package qwt 2012-12-01 12:23:27 +01:00
Luis Saavedra a1e4b4cc30 new package: qwt
this package was stolen from muellni fork...
2012-05-17 16:44:26 -04:00