Commit Graph

26 Commits

Author SHA1 Message Date
Viktor Szakats e467d9d1ec Secure URLs 2018-07-31 22:49:26 +10:00
Tony Theodore ccfc302d54 netlib pkgs: fix updates, share metadata, use pkg-config 2018-03-20 20:37:07 +11:00
Andy May ca338312b0 netlib blas, cblas and lapack 2018-03-20 20:37:07 +11:00
Tony Theodore 01e2a64d00 cross packages: replace dependency gcc with cc 2017-12-23 08:19:00 +11:00
Tony Theodore 0c0f60a580 blas etc.: disable reference packages 2017-11-21 12:10:35 +11:00
Viktor Szakats b8599ed14b secure/update URLs
* change libssh2/apache/xiph URLs to canonical ones
* resubmit patch to remove unnecessary
  --no-check-certificate option. The URLs
  are non-HTTPS anyway
* blas: restore URL and point to versioned archive
2017-09-24 16:04:56 +00:00
Boris Nagaev 939ece1fd9 download blas from backup
... while upstream URL is being fixed

See https://github.com/mxe/mxe/issues/1610
2016-12-24 17:29:40 +01: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
Tony Theodore 043e7aea85 blas, lapack: remove -fdefault-integer-8 FFLAGS (#1258)
* only required for octave build:
    - https://www.gnu.org/software/octave/doc/interpreter/Compiling-Octave-with-64_002dbit-Indexing.html
* closes #1247
2016-04-12 12:26:09 +10:00
Boris Nagaev a80d3cb13f update blas
see #922
see http://lists.nongnu.org/archive/html/mingw-cross-env-list/2015-10/msg00009.html
2015-10-13 12:40:34 +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
Tony Theodore be1395f48f package blas: fix shared build 2014-03-10 13:34:26 +11:00
Tony Theodore 7f86626c48 package blas: tidy up build rule 2014-02-26 21:58:45 +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 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 38ecb38947 update package: blas 2011-04-22 18:00:41 +02:00
Volker Grabsch 0ca6392e68 improved download URLs of packages: blas cblas gcc-mpc lapack 2011-04-05 01:26:14 +02:00
Volker Grabsch 44fb1f071d fix dummy permissions (664 -> 644) 2010-11-17 03:56:10 +01:00
Volker Grabsch b3c7c457fc fix website URLs of packages: blas suitesparse 2010-11-17 03:32:28 +01:00
Volker Grabsch a149a4a947 cleanup packages: blas cblas lapack metis suitesparse 2010-11-17 00:52:47 +01:00
Alois Schlögl 47ffebc2f2 new packages: blas cblas lapack 2010-11-16 19:10:10 +01:00