XML catalogue of packages which are available for installation, using the mingw-get installer.
Revision | 0f5b8e1c33132974652ad46651b7c740a44b6ef0 (tree) |
---|---|
Time | 2019-01-23 02:15:45 |
Author | Keith Marshall <keith@user...> |
Commiter | Keith Marshall |
Publish MinGW.org WSL-5.2.1 package set.
@@ -1,3 +1,14 @@ | ||
1 | +2019-01-22 Keith Marshall <keith@users.osdn.me> | |
2 | + | |
3 | + Publish MinGW.org WSL-5.2.1 package set. | |
4 | + | |
5 | + * mingw32/mingw32-runtime.xml (mingwrt-5.2.1-dev, mingwrt-5.2.1-dll) | |
6 | + (mingwrt-5.2.1-lic, mingwrt-5.2.1-man, libmingwex-5.2.1-dll-2) | |
7 | + (libmingwex-5.2.1-dev, w32api-5.2.1-dev): Add references. | |
8 | + (wsl-features): New post-installation hook package; specify it. | |
9 | + (wsl-features-20190122-1-cfg): Add reference; define action. | |
10 | + * common/issue.log mingw32/issue.log: Update accordingly. | |
11 | + | |
1 | 12 | 2019-01-14 Keith Marshall <keith@users.osdn.me> |
2 | 13 | |
3 | 14 | Republish binutils-2.31.1 and gcc-8.2.0 package sets. |
@@ -23,6 +23,6 @@ | ||
23 | 23 | # MinGW Project, accept liability for any damages, however caused, |
24 | 24 | # arising from the use of this software. |
25 | 25 | # |
26 | - c6a9068e183254c0b930ac6e1a70fd81743dc212 2019011400 package-list.xml | |
26 | + c6a9068e183254c0b930ac6e1a70fd81743dc212 2019012200 package-list.xml | |
27 | 27 | # |
28 | 28 | # $RCSfile$: end of file |
@@ -51,11 +51,11 @@ | ||
51 | 51 | cd33ad74b608bce33ea297801253e6efbafce27c 2012073100 mingw32-mingw-utils.xml |
52 | 52 | 2d0fee36823579871e8d747ae4d4676da6071654 2018122800 mingw32-mpc.xml |
53 | 53 | 1b5e1e0c486dad8396884033777e13357365ad76 2018122800 mingw32-mpfr.xml |
54 | - 5c9570cce1ddd4fe275b83acbc06739a4361c26a 2019011400 mingw32-package-list.xml | |
54 | + 5c9570cce1ddd4fe275b83acbc06739a4361c26a 2019012200 mingw32-package-list.xml | |
55 | 55 | 1f15439ee5f66ec22321c7aa853559b6f8f7172f 2015090800 mingw32-pexports.xml |
56 | 56 | cdb2a4dbedfc9f2cdfc92340f6f9b12da061c0d9 2012073100 mingw32-popt.xml |
57 | 57 | 6032af6ff68aa4821cf51938781fd9e75f05de5f 2016082200 mingw32-pthreads-w32.xml |
58 | - 05e01205713a570248b6ed4e74fa1acc6aa5d5c3 2018122400 mingw32-runtime.xml | |
58 | + b744f76f2fece56318e800fa3641ece98d27d1d0 2019012200 mingw32-runtime.xml | |
59 | 59 | 12acb32f80e49c893167cfae82e448dd766d49bb 2013070100 mingw32-wsl-candidate.xml |
60 | 60 | 247a02890f109a5fe4996fde4af9d576dca3cd1e 2012073100 mingw32-xz.xml |
61 | 61 | a96bd18deeb11a9f5828a5757e8962faac2f3217 2018123101 mingw32-zlib.xml |
@@ -10,7 +10,43 @@ | ||
10 | 10 | <!-- packages, which comprise the standard MinGW Runtime Library API, --> |
11 | 11 | <!-- namely mingwrt and w32api. --> |
12 | 12 | |
13 | - <package name="mingw32-mingwrt" alias="mingwrt mingw-runtime" > | |
13 | + <package name="mingw32-wsl-features" alias="wsl-features"> | |
14 | + <affiliate group="MinGW Compiler Suite" /> | |
15 | + <affiliate group="MinGW Standard Libraries" /> | |
16 | + <description lang="en" title="MinGW Runtime Library Configuration Support"> | |
17 | + <paragraph> | |
18 | + This package provides an auto-update hook for MinGW's user-supplied | |
19 | + <features.h> header file. Subject to the user-supplied header | |
20 | + conforming to stipulated formatting conventions, the post-installation | |
21 | + hook will merge new features specifications into the user-supplied | |
22 | + file, while preserving all existing content, and features selections, | |
23 | + as already specified by the user. | |
24 | + </paragraph> | |
25 | + <paragraph> | |
26 | + In the event that no <features.h> header file yet exists, the | |
27 | + post-installation hook will simply install a suitably formatted, | |
28 | + pre-configured default header file. | |
29 | + </paragraph> | |
30 | + </description> | |
31 | + | |
32 | + <source tarname="mingwrt-*-mingw32-src.tar" /> | |
33 | + <licence tarname="mingwrt-*-mingw32-lic.tar" /> | |
34 | + | |
35 | + <component class="cfg"> | |
36 | + <release tarname="wsl-features-20190122-1-mingw32-cfg.tar.xz" /> | |
37 | + <action class="post-install"> | |
38 | + sysroot = os.getenv( "MINGW32_SYSROOT" ) | |
39 | + package.path = sysroot.."/var/lib/wsl/?.lua;"..package.path | |
40 | + have_features, config = pcall( require, "features" ) | |
41 | + if have_features | |
42 | + then | |
43 | + config.update( io.open( config.pathname(), "w" ) ) | |
44 | + end | |
45 | + </action> | |
46 | + </component> | |
47 | + </package> | |
48 | + | |
49 | + <package name="mingw32-mingwrt" alias="mingwrt mingw-runtime"> | |
14 | 50 | <affiliate group="MinGW Compiler Suite" /> |
15 | 51 | <affiliate group="MinGW Standard Libraries" /> |
16 | 52 | <description lang="en" title="The MinGW Runtime Library API"> |
@@ -29,6 +65,8 @@ | ||
29 | 65 | |
30 | 66 | <component class="dev"> |
31 | 67 | <requires eq="mingwrt-%-mingw32-dll.tar" /> |
68 | + <requires eq="wsl-features-*-mingw32-cfg.tar" /> | |
69 | + <release tarname="mingwrt-5.2.1-mingw32-dev.tar.xz" /> | |
32 | 70 | <release tarname="mingwrt-5.2-mingw32-dev.tar.xz" /> |
33 | 71 | <release tarname="mingwrt-5.1.1-mingw32-dev.tar.xz" /> |
34 | 72 | <release tarname="mingwrt-5.1-mingw32-dev.tar.xz" /> |
@@ -36,6 +74,7 @@ | ||
36 | 74 | </component> |
37 | 75 | |
38 | 76 | <component class="dll"> |
77 | + <release tarname="mingwrt-5.2.1-mingw32-dll.tar.xz" /> | |
39 | 78 | <release tarname="mingwrt-5.2-mingw32-dll.tar.xz" /> |
40 | 79 | <release tarname="mingwrt-5.1.1-mingw32-dll.tar.xz" /> |
41 | 80 | <release tarname="mingwrt-5.1-mingw32-dll.tar.xz" /> |
@@ -43,6 +82,7 @@ | ||
43 | 82 | </component> |
44 | 83 | |
45 | 84 | <component class="lic"> |
85 | + <release tarname="mingwrt-5.2.1-mingw32-lic.tar.xz" /> | |
46 | 86 | <release tarname="mingwrt-5.2-mingw32-lic.tar.xz" /> |
47 | 87 | <release tarname="mingwrt-5.1.1-mingw32-lic.tar.xz" /> |
48 | 88 | <release tarname="mingwrt-5.1-mingw32-lic.tar.xz" /> |
@@ -50,6 +90,7 @@ | ||
50 | 90 | </component> |
51 | 91 | |
52 | 92 | <component class="man"> |
93 | + <release tarname="mingwrt-5.2.1-mingw32-man.tar.xz" /> | |
53 | 94 | <release tarname="mingwrt-5.2-mingw32-man.tar.xz" /> |
54 | 95 | <release tarname="mingwrt-5.1.1-mingw32-man.tar.xz" /> |
55 | 96 | <release tarname="mingwrt-5.1-mingw32-man.tar.xz" /> |
@@ -76,6 +117,9 @@ | ||
76 | 117 | |
77 | 118 | <component class="dev"> |
78 | 119 | <requires eq="mingwrt-%-mingw32-dev.tar" /> |
120 | + <release tarname="libmingwex-5.2.1-mingw32-dev.tar.xz"> | |
121 | + <requires eq="libmingwex-%-mingw32-dll-2.tar" /> | |
122 | + </release> | |
79 | 123 | <release tarname="libmingwex-5.2-mingw32-dev.tar.xz"> |
80 | 124 | <requires eq="libmingwex-%-mingw32-dll-2.tar" /> |
81 | 125 | </release> |
@@ -91,6 +135,7 @@ | ||
91 | 135 | </component> |
92 | 136 | |
93 | 137 | <component class="dll"> |
138 | + <release tarname="libmingwex-5.2.1-mingw32-dll-2.tar.xz" /> | |
94 | 139 | <release tarname="libmingwex-5.2-mingw32-dll-2.tar.xz" /> |
95 | 140 | <release tarname="libmingwex-5.1.1-mingw32-dll-0.tar.xz" /> |
96 | 141 | <release tarname="libmingwex-5.1-mingw32-dll-0.tar.xz" /> |
@@ -117,6 +162,7 @@ | ||
117 | 162 | <licence tarname="mingwrt-%-mingw32-lic.tar.%" /> |
118 | 163 | |
119 | 164 | <component class="dev"> |
165 | + <release tarname="w32api-5.2.1-mingw32-dev.tar.xz" /> | |
120 | 166 | <release tarname="w32api-5.2-mingw32-dev.tar.xz" /> |
121 | 167 | <release tarname="w32api-5.1.1-mingw32-dev.tar.xz" /> |
122 | 168 | <release tarname="w32api-5.1-mingw32-dev.tar.xz" /> |