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
pull/1503/head
Boris Nagaev 8 years ago
parent 1b4b98c918
commit 6adb5ade12

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
MAKEFILE := $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST))
TOP_DIR := $(patsubst %/,%,$(dir $(MAKEFILE)))

@ -1,5 +1,4 @@
/* This file is part of MXE.
* See index.html for further information. */
/* This file is part of MXE. See LICENSE.md for licensing information. */
table.fullscreen {
width: 100%;

@ -1,5 +1,4 @@
/* This file is part of MXE.
* See index.html for further information. */
/* This file is part of MXE. See LICENSE.md for licensing information. */
body {
font-size: 11pt;
margin-top: 0em;

@ -3048,8 +3048,7 @@ local-pkg-list: $(LOCAL_PKG_LIST)</pre>
<p>
and should start with:
</p>
<pre>This file is part of MXE.
See index.html for further information.
<pre>This file is part of MXE. See LICENSE.md for licensing information.
This patch has been taken from:
https://...</pre>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
GIT_DIR = $(if $(patsubst .,,$($(1)_SUBDIR)) \
,$(GITS_DIR)/$($(1)_SUBDIR),$(GITS_DIR)/$(1))
@ -42,8 +41,7 @@ endef
define EXPORT_PATCH
cd '$(call GIT_DIR,$(1))' \
&& ( \
echo 'This file is part of MXE.'; \
echo 'See index.html for further information.'; \
echo 'This file is part of MXE. See LICENSE.md for licensing information.'; \
echo ''; \
echo 'Contains ad hoc patches for cross building.'; \
echo ''; \

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From e941cfd42870fe214f8c44cd5e4d8ee6893b0904 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := keepassx
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# enable native build of luajit for wrk
# leave build rule in src/luajit.mk for other uses (i.e. build-pkg)

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := qbittorrent
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := tor
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := wrk
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# MXE provides a fully featured build of Qt. Some users want more control...
# http://lists.nongnu.org/archive/html/mingw-cross-env-list/2013-08/msg00010.html

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := binutils-host
$(PKG)_IGNORE = $(binutils_IGNORE)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cmake-host
$(PKG)_IGNORE = $(cmake_IGNORE)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gcc-host
$(PKG)_IGNORE = $(gcc_IGNORE)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := make-w32-bin
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := pkgconf-host
$(PKG)_IGNORE = $(pkgconf_IGNORE)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := $(basename $(notdir $(lastword $(MAKEFILE_LIST))))
$(PKG)_FILE = $(qtbase_FILE)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := winpthreads-host
$(PKG)_IGNORE = $(mingw-w64_IGNORE)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
poppler_DEPS := $(filter-out qt ,$(poppler_DEPS)) qtbase
openscenegraph_DEPS := $(filter-out qt ,$(openscenegraph_DEPS)) qtbase

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# override relevant cloog, isl, and gcc variables changed in:
# https://github.com/mxe/mxe/pull/965

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# override relevant cloog, isl, and gcc variables changed in:
# https://github.com/mxe/mxe/pull/965

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := go-native
$(PKG)_WEBSITE := https://golang.org/

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := go
$(PKG)_WEBSITE := https://golang.org/

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 1d8e959ee39e7a46e150e722af12252448c7ac22 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := llthreads2
$(PKG)_WEBSITE := https://github.com/moteus/lua-llthreads2

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From f271a094f8add34df3f31ac6fb12c9fe683f763a Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := lpeg
$(PKG)_WEBSITE := http://www.inf.puc-rio.br/~roberto/lpeg/lpeg.html

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From dbedfa6c3b350b6cb2c13d17790a17129ce28721 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := lua-rapidjson
$(PKG)_WEBSITE := https://github.com/xpol/lua-rapidjson

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# enable native build for luarocks
# leave build rule in src/lua.mk for other uses (i.e. build-pkg)

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := luarocks
$(PKG)_WEBSITE := https://luarocks.org/

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 11c943734757cf703daa6768b3919b7a580fe8b0 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 25007fd7fed18926728b9a1249f827a27e1d03f1 Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := luasocket
$(PKG)_WEBSITE := http://www.impa.br/~diego/software/luasocket

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := luv
$(PKG)_WEBSITE := https://github.com/luvit/luv

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := autoconf
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := automake
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bison
$(PKG)_IGNORE := 3%

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := coreutils
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := flex
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gettext
$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := gperf
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := intltool
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libiconv
$(PKG)_TARGETS := $(BUILD) $(MXE_TARGETS)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := libtool
$(PKG)_TARGETS := $(BUILD)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := m4
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := make
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := patch
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := sed
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := tcl
$(PKG)_WEBSITE := https://tcl.tk

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := tk
$(PKG)_WEBSITE := https://tcl.tk

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := a52dec
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 2617d6a743ad197dc7ae0278a9c7015cc7dff61f Mon Sep 17 00:00:00 2001
From: Mark Brand <mabrand@mabrand.nl>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := agg
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := alure
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 1e244993f497ca7167361dfb29a2fe43232a7661 Mon Sep 17 00:00:00 2001
From: Timothy Gu <timothygu99@gmail.com>

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From: "Jon Schewe (BBN) <jschewe@bbn.com>"
Taken from https://issues.apache.org/bugzilla/attachment.cgi?id=31800.

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 72ceb6351c8519ed48b21233246fc87f5dc8ee18 Mon Sep 17 00:00:00 2001
From: Timothy Gu <timothygu99@gmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := apr-util
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := apr
$(PKG)_IGNORE :=

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <armadillo>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := armadillo
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := aspell
$(PKG)_IGNORE :=

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <assimp/cimport.h>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := assimp
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
diff -uNr a/atk/atkprivate.c b/atk/atkprivate.c
--- a/atk/atkprivate.c

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := atk
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := atkmm
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <aubio/aubio.h>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := aubio
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From e64e4a2b049ff472d6400d9650e295c1ebd6294b Mon Sep 17 00:00:00 2001
From: Boris Nagaev <bnagaev@gmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bfd
$(PKG)_IGNORE = $(binutils_IGNORE)

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := binutils
# see http://lists.nongnu.org/archive/html/mingw-cross-env-list/2016-01/msg00013.html

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := blas
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: xantares <xantares09@hotmail.com>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
# partial module - included by src/cmake/CMakeLists.txt

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#include <iostream>

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := boost
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := box2d
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
--- a/CMakeLists.txt Sat Sep 14 11:25:52 2013 -0700
+++ b/CMakeLists.txt Fri Sep 27 15:03:58 2013 +1000

@ -1,6 +1,5 @@
/*
* This file is part of MXE.
* See index.html for further information.
* This file is part of MXE. See LICENSE.md for licensing information.
*/
#pragma GCC diagnostic ignored "-Wunused-parameter"

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bullet
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
diff -uNr bzip2-1.0.6.orig/bzip2.c bzip2-1.0.6/bzip2.c
--- bzip2-1.0.6.orig/bzip2.c 2010-09-11 01:04:53.000000000 +0200

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := bzip2
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Insist that ssize_t is defined.

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
When DllMain is not being run, we need to initialize the font face mutex before using it.

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cairo
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cairomm
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := cblas
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
# This file is part of MXE.
# See index.html for further information.
# This file is part of MXE. See LICENSE.md for licensing information.
PKG := ccfits
$(PKG)_IGNORE :=

@ -1,5 +1,4 @@
This file is part of MXE.
See index.html for further information.
This file is part of MXE. See LICENSE.md for licensing information.
Contains ad hoc patches for cross building.

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save