summaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Collapse)AuthorAgeFilesLines
* add go to plugins-with-additional-packages.shBoris Nagaev2016-11-181-1/+1
|
* skeleton.py: use shutil.move instead of os.renameBoris Nagaev2016-10-281-1/+1
| | | | | Function os.rename fails if files are in different filesystems, e.g. if /tmp is mounted as tmpfs.
* build-pkg: system requirements are recommendationsBoris Nagaev2016-10-121-7/+16
| | | | | | ... not dependencies. fix #1537
* travis: download packages of plugins as wellBoris Nagaev2016-09-162-1/+10
| | | | | List of plugins with additional packages was moved from s3-fetch-and-sync to plugins-with-additional-packages.sh.
* travis-push.sh: do not push to gh-pagesBoris Nagaev2016-08-271-1/+0
| | | | See https://github.com/mxe/mxe/pull/1503#issuecomment-241625181
* move CNAME to docs/Boris Nagaev2016-08-271-1/+0
| | | | See https://github.com/mxe/mxe/issues/1500
* move index.html to docs/Boris Nagaev2016-08-272-4/+3
| | | | See https://github.com/mxe/mxe/issues/1500
* add missing thingsBoris Nagaev2016-08-271-0/+1
| | | | | | index.html: make docs/build-matrix.html a link mxe-activate: add versions.json add .PHONY for build-matrix.html
* mv versions.json build-matrix.html assets docs/Boris Nagaev2016-08-272-3/+1
| | | | See https://github.com/mxe/mxe/issues/1500
* rename doc/ to docs/Boris Nagaev2016-08-272-3/+3
| | | | See https://github.com/mxe/mxe/issues/1500
* Copyright headers: point to LICENSE.md and shortenBoris Nagaev2016-08-276-14/+7
| | | | | | | | | | | | | | | | | | | 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
* build-pkg: fix crash if package breaks in 1st passBoris Nagaev2016-08-021-4/+7
| | | | fix https://github.com/mxe/mxe/issues/1471
* build-pkg: track all files including gitignoredBoris Nagaev2016-07-201-1/+1
| | | | See https://github.com/mxe/mxe/pull/1443#issuecomment-233181951
* tools/copydlldeps: removing exit 0 at the endLars Engelhard2016-07-151-2/+0
|
* tools/copydlldeps: introducing excludepattern and whitelist of DLLsLars2016-07-152-32/+102
|
* tools/copydlldeps: multiCall + case insensitivityLars2016-07-152-58/+69
|
* skeleton: don't truncate index.html on write errorBoris Nagaev2016-07-121-1/+3
| | | | Write new version to a temporary file and rename it to index.html.
* make skeleton.py Python 3 compatibleBoris Nagaev2016-07-121-4/+15
|
* use $(TEST_FILE) in skeleton.pyBoris Nagaev2016-07-111-1/+1
|
* skeleton: use SOURCE_DIR and BUILD_DIRBoris Nagaev2016-07-111-11/+9
| | | | and do not mkdir build dir.
* add tool skeleton.pyBoris Nagaev2016-07-101-0/+272
| | | | This tool creates a skeleton of new MXE package.
* install-deps: install bc to compare versionsBoris Nagaev2016-06-281-0/+2
|
* install-deps: fix syntax in condition for libtoolBoris Nagaev2016-06-281-2/+2
| | | | | Without external `(` and `)` the condition is evaluated to false on Debian Jessie.
* install-deps: run apt-get with --yesBoris Nagaev2016-06-281-4/+4
| | | | Otherwise it will make interactive prompts.
* add tool install-depsBoris Nagaev2016-06-131-0/+81
|
* build-pkg: add env. var to change targetsBoris Nagaev2016-06-111-0/+12
| | | | MXE_BUILD_PKG_TARGETS
* build-pkg: prefix evn. vars with "MXE_BUILD_PKG"Boris Nagaev2016-06-111-6/+7
| | | | to distinguish them from environment variables of MXE itself.
* build-pkg: limit number of retries of downloadingBoris Nagaev2016-05-021-2/+17
| | | | fix #1308
* build-pkg, second pass: fix fail on broken packageBoris Nagaev2016-04-201-6/+8
| | | | | | | | If a package is found to be broken on the first pass, then prev_files = nil, because this structure is filled only for non-broken packages. See https://github.com/mxe/mxe/pull/1243#issuecomment-211137555
* build-pkg: provide more info about removed filesBoris Nagaev2016-04-201-3/+25
|
* build-pkg: detect broken symlink and removed fileBoris Nagaev2016-04-201-1/+11
|
* build-pkg: use "git add" with --allBoris Nagaev2016-04-201-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | From the warning produced by "git add ." after removing a file with "rm": > warning: You ran 'git add' with neither '-A (--all)' or '--ignore-removal', > whose behaviour will change in Git 2.0 with respect to paths you removed. > Paths like 'foo.txt' that are > removed from your working tree are ignored with this version of Git. > > * 'git add --ignore-removal <pathspec>', which is the current default, > ignores paths you removed from your working tree. > > * 'git add --all <pathspec>' will let you also record the removals. > > Run 'git status' to check the paths you removed from your working tree. $ git status --porcelain D foo.txt $ git add --all . $ git status --porcelain D foo.txt $ git --version git version 1.9.1
* build-pkg: exit with non-zero if second pass failsBoris Nagaev2016-04-201-2/+9
|
* build-pkg: provide a way to disable second passBoris Nagaev2016-04-201-4/+9
|
* build-pkg: add second passBoris Nagaev2016-04-201-9/+78
| | | | | | | | | | | | | | The second pass is done after the first one. During the second pass, an item is built in tree of files from all other items. It checks that: * packages can be built in any order satisfying dependencies; * a package can be rebuilt after its dependee. For both cases, not only build status is checked but also two sets of files are compared. Currently content of files is not checked, only their existance in both passes. See #1111
* build-pkg: move function isBuilt()Boris Nagaev2016-04-201-12/+12
| | | | It will be used in buildItem()
* build-pkg, buildItem(): log pass (first, second)Boris Nagaev2016-04-201-2/+2
|
* build-pkg: provide a way to mute removeEmptyDirs()Boris Nagaev2016-04-201-2/+5
|
* build-pkg: add argument pass=first to build funcsBoris Nagaev2016-04-201-14/+24
|
* build-pkg: move top-level code to main() functionBoris Nagaev2016-04-201-32/+36
|
* nonetwork: new line before the message and flushBoris Nagaev2016-03-261-1/+3
| | | | | fflush(stderr) may be needed: http://mailman.linuxchix.org/pipermail/courses/2002-August/000691.html
* Merge pull request #1270 from LuaAndC/nonetwork-print-messageTony Theodore2016-03-221-0/+11
|\ | | | | nonetwork: print message from replaced functions
| * nonetwork: print message from replaced functionsBoris Nagaev2016-03-201-0/+11
| | | | | | | | See https://github.com/mxe/mxe/issues/1269
* | copydlldeps.sh: fix #1226 (case insensitive)Pavel Vatagin2016-03-201-11/+17
|/
* Update copydlldeps.mdBoris Nagaev2016-02-101-21/+29
|
* markdown with code blocksdl5rcw2016-02-101-1/+4
| | | just noticed md + code blocks need these
* converting file to md formatdl5rcw2016-02-101-12/+14
| | | converting file from mediawiki to md format
* Rename copydlldeps.txt to copydlldeps.mddl5rcw2016-02-071-0/+0
|
* introducing copydlldeps.sh and copydlldeps.txtroot2016-02-052-0/+440
|
* build-pkg: set MXE_DIR automaticallyBoris Nagaev2016-01-251-7/+8
| | | | | | | Produce a warning if MXE_DIR != /usr/lib/mxe When making a debug build, it is better to get a warning than set MXE_DIR manually each time.