Commit Graph

51 Commits

Author SHA1 Message Date
Marc Brückner d9f4ce971e update nsis 2020-08-19 12:19:07 +10:00
Tony Theodore f34fa67768 nsis: install test 2020-06-16 01:19:19 +10:00
Tony Theodore 2c3c6d939a nsis: update 3.04-->3.05, fix gcc10, retry build 2020-06-15 23:53:53 +10:00
Tony Theodore e183a12d70 nsis: disable ccache 2019-04-21 17:07:37 +10:00
darealshinji bd69d34cb9 update nsis: 3.01 -> 3.04 2019-03-30 12:47:43 +11:00
Tony Theodore cd851f6d77 nsis: use scons-local with python2 and use SOURCE_DIR 2018-08-31 12:21:14 +10:00
Tony Theodore 13d6257891 nsis: remove obsolete patch and MINGW_CROSS_PREFIX variable 2018-08-18 15:00:17 +10:00
don bright eb9093a372 use XGCC_W32_PREFIX for newer nsis
new versions of NSIS require XGCC_W32_PREFIX not MINGW_CROSS_PREFIX, see http://nsis.sourceforge.net/Docs/AppendixG.html
2018-08-18 13:35:23 +10:00
JohnD c51e82b0f3 nsis: Set target type to AMD64 when compiling for x86_64-w64-mingw32 2018-03-26 23:58:00 +11:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Viktor Szakats 45d34aaac7 more URL updates 2017-03-10 13:59:00 +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 2415974cbe nsis: update to 3.01 2016-12-16 04:59:19 +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
Pavel Vatagin 43ade244e1 fix nsis 2016-05-18 01:53:17 +03:00
Boris Pek 4df5e4852c nsis: update from 2.50 to 2.51 2016-05-16 15:45:08 +03:00
Boris Pek 0637045bed nsis: disable not needed utils
They are useless for cross-compiling purposes.
For example, in Debian package they are disabled too:
http://anonscm.debian.org/cgit/collab-maint/nsis.git/tree/debian/rules
2016-05-16 15:45:08 +03:00
Boris Pek dce1bc2649 nsis: fix build for x86_64-w64-mingw32 targets
Required for: https://github.com/mxe/mxe/pull/1165
2016-05-16 15:45:08 +03:00
Boris Nagaev de4d53ab13 nsis: update from 2.46 to 2.50 2016-01-10 03:05:37 +03:00
Boris Nagaev c16137170d fix nsis updater 2016-01-10 03:03:55 +03: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
Boris Nagaev 33607e07c2 nsis: increase NSIS_MAX_STRLEN to 8192
> Currently you can't change NSIS_MAX_STRLEN without re-compiling NSIS.
> This was a problem because some NSIS projects would require the special
> build and some wouldn't, and sometimes we'd compile a project that
> required the special build, with the normal MakeNSIS build.

(from http://nsis.sourceforge.net/SetReqStrLen:_Allow_compile_w/_8192_special_build_only)

See also http://nsis.sourceforge.net/Special_Builds#Large_strings
2015-09-14 10:56:19 +03:00
Uwe Hermann 92124865e0 nsis: Fix update macro 2014-01-11 19:01:21 +01: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
Tony Theodore 5390e5203e various packages: enable/disable mingw-w64 builds 2013-06-01 22:28:04 +10:00
Tony Theodore 4ed13a9f30 all packages: use $(WGET) portability variable 2012-05-16 17:49:40 +10:00
Volker Grabsch 00f4690d3f Move full package names from src/*.mk into package list (index.html) 2012-03-29 21:41:44 +02:00
Volker Grabsch 7badad85c9 Move doc/index.html -> index.html 2012-03-29 12:14:15 +02:00
Volker Grabsch 7e6723adb5 Move $(PKG)_VERSION and $(PKG)_WEBSITE from src/*.mk into doc/index.html 2012-03-29 11:07:07 +02:00
Volker Grabsch defdff28f0 Rebrand to new project name MXE 2012-03-28 15:46:58 +02:00
Volker Grabsch 5892199502 bugfix: enable package nsis to use the correct MinGW cross toolchain on systems where multiple MinGW cross toolchains are present 2011-05-21 01:46:16 +02:00
Volker Grabsch 246af91ecc install NSIS with target prefix ("makensis" -> "i686-pc-mingw32-makensis") 2010-04-21 00:25:33 +02:00
Volker Grabsch cce080a726 remove a bugfix that is no longer needed for package nsis 2010-04-20 21:47:54 +02:00
Volker Grabsch e1ab4466ff changed coding style: make "-i" always the first argument of $(SED) (by Mark Brand) 2010-02-16 04:12:53 +01:00
Volker Grabsch 71f83a7e0d point consequently to "doc/index.html" instead of "doc/index.html or doc/README" 2010-02-08 00:58:06 +01:00
Volker Grabsch 8a3233b044 simplified file markers 2010-01-16 23:02:02 +01:00
Volker Grabsch a1210b265d update version of package nsis 2009-12-06 13:06:46 +01:00
Volker Grabsch a79acd1f3e improved version recognition of packages atk, glib, gtk, libxml2, libxslt, nsis, pango, sdl, sdl_image, sdl_mixer and sdl_ttf 2009-10-21 13:24:44 +02:00
Volker Grabsch 728a1f5958 improved version recognition of package nsis 2009-10-09 17:12:01 +02:00
Volker Grabsch f162381b1a improved version recognition, enable the notation of ignored (bad) package versions 2009-09-20 14:36:46 +02:00
Volker Grabsch ad09fd28ae improved download URLs for all SourceForge packages to ensure that the selected SOURCEFORGE_MIRROR is really used 2009-09-02 00:55:53 +02:00
Volker Grabsch 163b118424 replace the contact email address with hints to the project mailing list 2009-09-01 16:35:59 +02:00
Volker Grabsch 3c5ab4e280 add a copyright notice and license to each source file 2009-08-21 06:58:11 +02:00
Volker Grabsch 1015b736eb portability for systems without /usr/local on package nsis 2009-06-11 10:54:42 +02:00
Volker Grabsch 990a2c9293 bugfix in the build options for package nsis 2009-06-10 11:54:07 +02:00
Volker Grabsch 695da3b2ca update version of packages atk, curl, gcc, gdal, glib, gnutls, gtk, libevent, libidn, libntlm, libpng, nsis, pango, pdflib_lite, pixman, sqlite, tre and xmlwrapp 2009-06-10 10:56:10 +02:00
Volker Grabsch 2c74e9b6e8 add search paths to libiconv on FreeBSD for package nsis 2009-06-10 10:08:20 +02:00
Volker Grabsch d1db31f66b portability fix for MacOS X in package nsis: Don't use the "SetIcon(wxICON(...))" call 2009-04-21 17:26:00 +02:00
Volker Grabsch 5814a1aa10 improved coding style: use a consistent order of variables 2009-04-16 19:45:56 +02:00