OSDN Git Service

98d58899832ccc9bead9fc955f0f25d929f3f665
[mingw/mingw-get.git] / ChangeLog
1 2013-06-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
2
3         Keep version strings clean when release class is unspecified.
4
5         * Makefile.in (RC_SCRIPT, VERSION_SCRIPT): Simplify; assign specified
6         release class to local variable; delegate release tag generation to...
7         (TAG_SCRIPT): ...this; check release class variable is not an empty
8         string, before inserting it into the generated release tag.
9
10 2013-06-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
11
12         Rework defective assignment of product version resources.
13
14         * Makefile.in (BUILD_TAG): Avoid creating an empty build.tag file.
15         (PACKAGE_VERINFO_SCRIPT): Ensure that the build tag is generated as a
16         string of non-zero length.  Do not assume that it comprises only two
17         elements; extract the final two, as the third and fourth elements
18         of the product version meta-data record.
19
20 2013-06-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
21
22         Rework defective package build time-stamping logic.
23
24         * Makefile.in (%.time): Make it explicitly touch its target; the
25         2013-05-15 changes, to reduce redundancy, didn't work as expected.
26         (%.tag): Add a side effect; make it also explicitly touch %.time.
27         (%.tagged.time): This is now redundant; remove it.
28
29 2013-06-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
30
31         Collect distributable package files in user specified directory.
32
33         * Makefile.in (distdir): New macro; define default as abs_builddir.
34         (srcdist, bindist, licdist): Use it; direct generated tarballs to it.
35         (%.txt.dist): New pattern rule; define, and use it to make a copy...
36         (readme.txt): ...of this, in distdir, when processing...
37         (dist): ...this build objective.
38
39 2013-06-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
40
41         Handle Microsoft's 32-bit vs. 64-bit time_t ambiguity.
42
43         * src/apihook.c: New file; it provides...
44         (have_api): ...this helper; it checks for availability of any specific
45         API function, within a specific system DLL, (MSVCRT.DLL by default).
46
47         * src/tarproc.cpp (have_utime64_api): New inline function; it wraps...
48         (have_api): ...this, to check whether MSVCRT.DLL provides...
49         (commit_saved_entity) [_utime64]: ...this; use if available, else...
50         (commit_saved_entity) [!_utime64]: ...fall back to using...
51         (utime): ...this.
52
53         * Makefile.in (CORE_DLL_OBJECTS): Add apihook.$OBJEXT
54
55 2013-06-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
56
57         Facilitate package extraction and registration at setup time.
58
59         * src/pkgproc.h (IMPLEMENTATION_LEVEL): Add filters to facilitate
60         implementation of distinct setup time archive processing behaviour.
61         (pkgArchiveProcessor::save_on_extract): New property; declare it.
62         (pkgArchiveProcessor::SaveExtractedFiles): New method; implement it.
63         (pkgArchiveProcessor::SetOutputStream): New method; declare it.
64
65         * src/tarproc.cpp (IMPLEMENTATION_LEVEL): Add filters to implement
66         distinct setup time specific archive processing behaviour.
67         (pkgArchiveProcessor::SetOutputStream): Implement it.
68         (pkgTarArchiveExtractor::ProcessDataStream): Use it.
69         (pkgTarArchiveInstaller::ProcessDataStream): Likewise.
70
71 2013-06-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
72
73         Implement some GUI progress metering dialogue enhancements.
74
75         * src/pkgbase.h (pkgProgressMeter): Don't pre-empt private features
76         of derived progress metering classes; hence, we no longer need this...
77         (AppWindowMaker): ...as a forward class declaration; delete it.
78
79         * src/guimain.rc (IDD_REPO_UPDATE): Resize, and adjust layout.
80         (IDD_PROGRESS_VAL, IDD_PROGRESS_MAX, IDD_PROGRESS_PCT): Add these
81         dialogue box progress counter display elements.
82
83         * src/pkgbind.cpp (pkgRepository::GetPackageList): Adjust style of
84         progress status messages, to suit reporting via GUI dialogue box or
85         CLI console, as appropriate.
86
87         * src/guiexec.cpp (ProgressMeterMaker): Redefine class, in terms of...
88         (PROGRESS_METER_CLASS): ...this new generic class name macro.
89         Reimplement private members, previously inherited from base class;
90         adjust class constructor to ensure that they are initialised.
91         Delete explicit destructor; a default destructor is now sufficient.
92         (ProgressMeterMaker::SetRange, ProgressMeterMaker::SetValue):
93         (ProgressMeterMaker::Annotate): Factor out; reimplement them...
94
95         * src/pmihook.cpp: ...in this new file, as generalised methods of...
96         (PROGRESS_METER_CLASS): ...the class named by this macro.
97         (PROGRESS_METER_CLASS::PutVal): New private method; implement it.
98
99 2013-05-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
100
101         Avoid a potential macro definition conflict.
102
103         * src/pkgbase.h (strcasecmp) [__MINGW32__]: Use string.h definition.
104
105 2013-05-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
106
107         Streamline build-time dependency tracking procedures.
108
109         * Makefile.in (DEPFLAGS): Adjust for simultaneous .o/.d generation.
110         (RC_DEPFLAGS): New macro; define dependency generation flags for the
111         resource compiler, which can't handle the new DEPFLAGS methodology.
112         (%.c, %.cpp, %.rc): Simplify $OBJEXT generation procedures.
113         (%.time): Remove redundantly replicated build-time procedure from...
114         (%.tagged.time): ...this; just make it a prerequisite.
115
116 2013-05-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
117
118         Add resources for specification of product version.
119
120         * src/verinfo.rc src/verinfo.h.in: New files; included by...
121         * src/guimain.rc: ...this, whence also specify version information...
122         (VERINFO_FILE_NAME, VERINFO_INTERNAL_NAME, VERINFO_FILE_DESCRIPTION):
123         (VERINFO_FILE_VERSION, VERINFO_FILE_VERSION_STRING): ...per these new
124         manifest constant macros; define them, with propagation to...
125         (ID_MAIN_WINDOW_CAPTION): ...this; keep it consistent.
126
127         * Makefile.in (TAG_SCRIPT): Include invocation for...
128         (PACKAGE_VERINFO_SCRIPT): ...this new macro; defined to interpret...
129         (PACKAGE_VERINFO_PRODUCT_VERSION): ...this new substitution template;
130         it is used in src/verinfo.h.in, whence verinfo.h is generated.
131         (RC_INCLUDES): Add current working directory, for...
132         (verinfo.h): ...this; add rule and dependencies to generate it.
133
134 2013-05-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
135
136         Make application manifest resource definition reusable.
137
138         * src/manifest.rc: New file; factor content from...
139         * src/guimain.rc: ...here, whence include it.
140
141 2013-05-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
142
143         Extend DMH services to delay-loaded DLL clients.
144
145         * src/dmhcore.h (dmh_bind): New function; declare it.
146         * src/dmhcore.cpp (dmh_bind): Implement it; it provides an API through
147         which the setup tool makes its existing DMH services available to post
148         install hooks in mingw-get-0.dll, which cannot be loaded until after
149         the providing package has been downloaded and unpacked.
150
151 2013-05-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
152
153         Avoid unnecessary command line globbing in GUI applications.
154
155         * src/guimain.cpp src/guistub.cpp (_CRT_glob): Declare as extern "C";
156         initialise to zero, so overriding the runtime start-up default.
157
158         * src/rites.c [! IMPLEMENT_INITIATION_RITES] (_CRT_glob): Initialise
159         to zero here too; lastrites.exe doesn't need globbing either.
160
161 2013-05-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
162
163         Address some GCC-4.7 string initialisation warnings.
164
165         * src/pkglist.cpp (AppWindowMaker::InitPackageListView): Declare all
166         headings[].text initialisers as 'const'; cast to 'char *' as required.
167         (pkgListViewMaker::Dispatch): Ditto, when inserting the 'const' empty
168         string into the list, as a component class value.
169
170         * src/pkgdata.cpp (AppWindowMaker::InitPackageTabControl): Declare all
171         TabLegend[] initialisers as 'const'; cast to 'char *' as required.
172
173 2013-05-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
174
175         Correct a spin wait thread synchronisation issue.
176
177         * src/pkgnget.cpp (pkgDownloadMeterGUI::SpinWait): Handle stop
178         requests explicitly; acknowledge when waiting thread has stopped.
179         (pkgDownloadMeterGUI::SpinWaitAction): Raise explicit stop requests;
180         wait for acknowledgement that waiting thread has stopped.
181
182 2013-04-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
183
184         Select compressed data streaming filters for use by setup tool.
185
186         * src/pkgstrm.cpp [IMPLEMENTATION_LEVEL != PACKAGE_BASE_COMPONENT]:
187         Exclude the implementations of all decompression filters, except...
188         (pkgXzArchiveStream): ...this, together with its requisite methods...
189         (pkgArchiveStream, pkgLzmaArchiveStream): ...from these.
190
191 2013-04-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
192
193         Adapt internet download agent for use by setup tool.
194
195         * src/pkgbase.h: More code rearrangement, exposing...
196         (safe_strcmp): ...this in any implementation context, controlled...
197         [USES_SAFE_STRCMP && ! HAVE_SAFE_STRCMP]: ...by this; when true...
198         (HAVE_SAFE_STRCMP): ...define this to 1, (must be non-zero).
199         [IMPLEMENTATION_LEVEL == PACKAGE_BASE_COMPONENT]: Ensure that...
200         (USES_SAFE_STRCMP): ...this is defined to 1, (i.e. non-zero).
201         (EXTERN_C): Relocate macro definition...
202         * src/pkgimpl.h: ...to here; add complementary implementation of...
203         (BEGIN_C_DECLS, END_C_DECLS): ...these new macros; define them.
204
205         * src/pkginet.h (pkgDownloadMeter::SpinWait): New static method;
206         declare it as inline, to be implemented elsewhere, delegating to...
207         (pkgDownloadMeter::SpinWaitAction): ...this new protected virtual
208         method; declare and implement it inline, as a "do nothing" base
209         class method, to be optionally overridden in a derived class.
210
211         * src/pkginet.cpp (pkgDownloadMeter::SpinWait): Implement it.
212         (pkgInternetAgent::OpenURL): Use it to invoke SpinWaitAction().
213         (USES_SAFE_STRCMP): Define as 1; (safe_strcmp() is required).
214         [IMPLEMENTATION_LEVEL != PACKAGE_BASE_COMPONENT]: Filter out code
215         which may not be required in more specialised contexts, then...
216         [IMPLEMENTATION_LEVEL == SETUP_TOOL_COMPONENT]: ...add specialised
217         variants specific to this.
218
219         * src/pkgnget.cpp [IMPLEMENTATION_LEVEL != PACKAGE_BASE_COMPONENT]:
220         Filter out code which may not be required in more specialised context.
221         (dmh_setpty): Provide locally declared prototype for external function.
222         (pkgDownloadMeterGUI): Add pseudo-terminal diagnostic message window.
223         (pkgDownloadMeterGUI::SpinWaitAction): Declare and implement GUI
224         specific method specialisation; it invokes a thread, running...
225         (pkgDownloadMeterGUI::SpinWait): ...this new static method overload.
226
227 2013-04-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
228
229         Implement pre-emptive update issue number identification.
230
231         * src/pkgkeys.h (serial_number): Declare function prototype.
232         * src/pkginet.cpp (serial_number): Implementation remains here;
233         promote from static to extern "C".
234
235         * src/pkgbind.cpp (value_assumed_new): New char constant; define it.
236         (pkgRepository::expected_issue): New private member var; declare and...
237         (pkgRepository::pkgRepository): ...initialise it, assuming new.
238         (pkgRepository::GetPackageList): Assign pre-emptively declared issue
239         number, (from package-list references), to 'expected_issue'; compare it
240         with 'current_issue' number recorded within locally stored catalogue.
241         [current_issue >= expected_issue]: Suppress redundant download; adjust
242         diagnostic messages as appropriate.
243
244 2013-04-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
245
246         Fix MinGW-Bug #1601 (on new issues tracker).
247
248         * aclocal.m4 (makeopts.m4): New build-aux module; include it.
249         (MINGW_AC_PROG_LEX): New macro; implement it.
250         
251         * configure.ac (AC_INIT): Make version number tripartite.
252         (MINGW_AC_MAKE_NO_PRINT_DIRECTORY): Use this new makeopts.m4 macro.
253         (MINGW_AC_PROG_LEX): Use it, in place of...
254         (AC_PROG_LEX): ...this.
255
256         * Makefile.in (MAKE): New macro; assign using autoconf's SET_MAKE.
257         (QUIET_MAKE): New macro; derive it from $(MAKE) --no-print-directory.
258         (LEX_COMMAND, LEX_COMMAND_ABORT): New macros; define them.
259         (LEX_MISSING, LEX_MISSING_MESSAGE, LEX_OUTPUT): Likewise.
260         (FORMAT_MESSAGE, MESSAGE_FOLD_WIDTH): Likewise; implemented from...
261         (AWK_CLEAR_LINE_BUFFER, AWK_FLUSH_BUFFER, AWK_PRINT_AND_CLEAR_BUFFER):
262         (AWK_COLLECT_MESSAGE, AWK_COLLECT_BLANK_LINE, AWK_PRINT_LINE_BUFFER):
263         ...this collection of internal helper macros; define them.
264         (%.c: %.l): Replacement for built-in rule; it handles "missing lex" in
265         a manner consistent with expectations of autoconf's AC_PROG_LEX.
266         (execute-command): New phoney build goal; it is used with...
267         (WITH_REQUEST): ...this new macro, to invoke commands recursively.
268
269 2013-03-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
270
271         Adapt DMH for use in setup tool.
272
273         * src/dmh.cpp: File renamed to...
274         * src/dmhcore.cpp: ...this; some code rearranged, to facilitate...
275         [IMPLEMENTATION_LEVEL == PACKAGE_BASE_COMPONENT]: ...marking of code
276         sections which are required in the base package build, but which may
277         be filtered out of the build context for the setup tool.
278         
279         * src/guidmh.cpp: File renamed to this...
280         * src/dmhguix.cpp: ...this; also add marking for...
281         [IMPLEMENTATION_LEVEL == PACKAGE_BASE_COMPONENT]: ...sections which
282         may be filtered out of the build context for the setup tool.
283         (dmhTypePTY::printf): Improve stratagem for output.
284
285         * Makefile.in (CORE_DLL_OBJECTS, GUIMAIN_OBJECTS): Adjust references
286         to renamed source files.
287
288 2013-03-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
289
290         Enable context hooks for build time code filtering.
291
292         * src/pkgimpl.h: New file; it defines...
293         (PACKAGE_BASE_COMPONENT, SETUP_TOOL_COMPONENT): ...these contexts;
294         either of these may be selected, by defining as manifest value for...
295         (IMPLEMENTATION_LEVEL): ...this; default is PACKAGE_BASE_COMPONENT.
296
297         * src/pkgbase.h: Include pkgimpl.h
298         [IMPLEMENTATION_LEVEL != PACKAGE_BASE_COMPONENT]: Occlude content.
299
300 2013-03-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
301
302         Specify additional files for clean-up.
303
304         * Makefile.in (distclean): Additionally specify...
305         (build.tag, build.time): ...these, as removable files.
306
307 2013-03-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
308
309         Add a missing distribution dependency.
310
311         * Makefile.in (srcdist): Explicitly require...
312         (pkginfo.c): ...this; previously, it was only an implicit build time
313         requirement, and may not have persisted until distribution time.
314
315 2013-03-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
316
317         Implement by-name association of resource scripts with programs.
318
319         * src/guidata.rc: Renamed as...
320         * src/guimain.rc: ...this, reflecting its association with...
321         * src/guimain.cpp: ...this program source.
322
323         * Makefile.in (GUIMAIN_OBJECTS): Update dependency...
324         (%.$OBJEXT:%.rc): ...replacing use of this pattern rule...
325         (%.res.$OBJEXT:%.rc): ...with this.
326
327 2013-01-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
328
329         Make GUI support visual styles in current Windows versions.
330
331         * src/guidata.rc: Add an appropriate inline manifest resource.
332
333         * src/guiexec.cpp (AppWindowMaker::Invoked): Ensure UpdateWindow() is
334         called after the initial call to AdjustLayout(); this is required to
335         ensure that all child windows are properly displayed from the outset.
336
337         * src/pkgview.cpp (AppWindowMaker::LayoutEngine):
338         [ID_PACKAGE_DATASHEET]: Adjust the top position of the frame, to make
339         the border coincide with the bottom border of the tab strip above.
340
341 2013-01-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
342
343         Merge gui-dev branch head to master; close gui-dev branch.
344
345         * configure.ac (AC_INIT): Reset version to 0.6; reset all package
346         files to state prevailing at gui-dev branch head.
347
348 2013-01-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
349
350         Create release branch for further r0.5 development.
351
352         * configure.ac (AC_INIT): Bump version number to 0.5.1; assign branch
353         label (mercurial bookmark) as "r0-5-1" for all files; (this is not to
354         be released, at this time).
355
356 2013-01-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
357
358         Implement data sheet compiler for list of installed files.
359
360         * src/pkgdata.cpp: #include pkgproc.h; it furnishes...
361         (pkgManifest): ...this class declaration, which is required by...
362         (DataSheetMaker::DisplayFilesManifest): ...this new private inline
363         method; declare and implement it; subsequently, invoke it...
364         (DataSheetMaker::OnPaint) [PKG_DATASHEET_INSTALLED_FILES]: ...here.
365         (pkgTroffLayoutEngine::WriteLn): Correct a defect in handling of
366         excess-length unbreakable "words" outside the viewport; previously
367         they were not dropped from the input queue, resulting in repeated
368         reprocessing in an infinite loop.
369
370 2013-01-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
371
372         Include release tags in GUI displayed package versions.
373
374         * src/pkglist.cpp (pkgVersionString) [ReleaseStatus != NULL]:
375         Append ReleaseStatus and ReleaseIndex to generated version string.
376
377 2013-01-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
378
379         Fix enumeration of pending install actions for scheduled upgrades.
380
381         * src/pkgdata.cpp (pkgActionItem::EnumeratePendingActions):
382         [action == ACTION_UPGRADE && classified == ACTION_INSTALL]: Enumerate
383         upgrade as a special case of the install classification.
384
385 2013-01-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
386
387         Implement "Mark All Upgrades" GUI capability.
388
389         * src/guimain.h (IDM_REPO_APPLY): Renumbered; make room for...
390         (IDM_REPO_MARK_UPGRADES): ...this new constant; define it.
391
392         * src/guidata.rc (IDM_REPO_MARK_UPGRADES): New option; add it...
393         (ID_MAIN_WINDOW_WINDOW) [Installation]: ...to this drop-down menu.
394
395         * src/pkgbase.h (pkgActionItem::SuppressRedundantUpgrades): New
396         public inline method; declare it.
397
398         * src/guiexec.cpp (AppWindowMaker::OnCommand):
399         [IDM_REPO_MARK_UPGRADES]: Add case handler for this menu selection.
400         (pkgActionItem::SuppressRedundantUpgrades): New method; implement it.
401
402 2013-01-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
403
404         Avoid unnecessary reloading of package list.
405
406         * src/guiexec.cpp (AppWindowMaker::OnCommand) [IDM_REPO_APPLY]:
407         Do not reload package list after processing; update it in place.
408
409 2013-01-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
410
411         Avoid potential heap corruption in action scheduler.
412
413         * src/guiexec.cpp (pkgActionItem::Clear): Factor out; relocate to...
414         * src/pkgexec.cpp (pkgActionItem::Clear): ...here; this keeps all use
415         of new and delete operators on the same side of the EXE/DLL boundary
416         as the constructor and destructor for pkgActionItem objects.
417         (pkgActionItem::Schedule): Ensure that all min_wanted and max_wanted
418         references are unique to each allocated pkgActionItem object, so that
419         the destructor may safely release their associated heap memory blocks.
420
421 2013-01-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
422
423         Update copyright notification for development in new year.
424
425         * configure.ac (YEARS_OF_ISSUE): Add year 2013.
426
427         * Makefile.in (version.c, guidata.$OBJEXT): Make them depend on...
428         (Makefile): ...this, so YEARS_OF_ISSUE propagates to built objects.
429
430 2012-12-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
431
432         Work around a GUI action scheduling instability.
433
434         * src/guimain.h (AppWindowMaker::UpdateDataSheet): Declare new method.
435         * src/pkgdata.cpp (AppWindowMaker::UpdateDataSheet): Implement it.
436         (AppWindowMaker::OnNotify): Use it.
437
438         * src/guiexec.cpp (AppWindowMaker::OnCommand) [IDD_REPO_APPLY]:
439         Don't refresh package list view in-place; clear and reload it instead.
440
441 2012-12-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
442
443         Update distribution build rules.
444
445         * Makefile.in (SRCDIST_FILES): Remove version.c.in; this was moved
446         to src/version.c.in, and is now automatically included via...
447         (SRCDIST_SUBDIRS): ...this; remove build-aux and build-aux/m4; we want
448         only selected files from these, as filtered by specification in...
449         (BUILD_AUX_DIRS, BUILD_AUX_FILES): ...these new macros; define them.
450         (BLDTAG, SCMTAG, GCMTAG): New release class macros; define them.
451         (bindist, licdist, srcdist): Use them.
452
453 2012-12-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
454
455         Update CLI implementation hooks for GUI integration.
456
457         * Makefile.in (LIBEXEC_PROGRAMS): Replace gui$EXEEXT with
458         guistub$EXEEXT; update make goal references accordingly.
459
460         * src/rites.c (MINGW_GET_GUI): Redefine to be guimain$EXEEXT.
461         (MINGW_GET_GFB): Define new fall-back; let it be guistub$EXEEXT.
462         (RITES_IMPLEMENTATION): Perform rites for MINGW_GET_GUI.
463
464         * src/clistub.c (main) [cannot exec MINGW_GET_GUI]: Try
465         MINGW_GET_GFB instead.
466
467 2012-12-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
468
469         Rename executive core file for GUI implementation.
470
471         * src/guixmld.cpp: File renamed...
472         * src/guiexec.cpp: ...to this; its function exceeds original intent.
473         * Makefile.in (GUIMAIN_OBJECTS): Update reference accordingly.
474
475 2012-12-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
476
477         Create foundation for implementation of package category tree view.
478
479         * Makefile.in (GUIMAIN_OBJECTS): Add pkgtree.$OBJEXT reference to...
480         * src/pkgtree.cpp: ...incorporate this new file; it implements...
481         (AppWindowMaker::InitPackageTreeView): ...this new class method...
482         (pkgInitCategoryTreeGraft): ...and this new extern "C" function.
483
484         * src/guimain.h (pkgInitCategoryTreeGraft): Declare prototype.
485         (AppWindowMaker::InitPackageTreeView): New private method; declare it.
486         (AppWindowMaker::PackageTreeView): New member variable; declare it.
487
488         * src/guixmld.cpp (AppWindowMaker::LoadPackageData): Call
489         pkgInitCategoryTreeGraft(), after loading profile.xml
490         (AppWindowMaker::Invoked): Call InitPackageTreeView()
491
492         * src/pkgview.cpp (AppWindowMaker::LayoutEngine):
493         [ID_PACKAGE_TREEVIEW]: Handle it.
494
495 2012-12-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
496
497         Make the "Apply Changes" dialogue "failure-aware".
498
499         * src/pkgtask.h (ACTION_APPLY_FAILED): Redefine, in terms of...
500         (ACTION_INSTALL_FAILED, ACTION_REMOVE_FAILED): New manifest defines.
501         (ACTION_UNSUCCESSFUL): New manifest constant; define it.
502
503         * src/pkgdata.cpp (pkgActionItem::EnumeratePendingActions):
504         [ACTION_UNSUCCESSFUL]: Make it a special case for enumeration.
505
506         * src/guixmld.cpp (pkgApplyChanges): Enumerate...
507         [ACTION_UNSUCCESSFUL > 0]: ...all such cases; when true...
508         [IDD_AUTO_CLOSE_OPTION]: ...this; select alternative close-out
509         messages, as appropriate.
510         (pkgActionItem::Assert): Factor out; relocate to...
511         * src/pkgexec.cpp (pkgActionItem::Assert): ...here; this moves its
512         object code into the mingw-get DLL.
513
514         * src/pkgunst.cpp (pkgRemove) [ACTION_REMOVE_FAILED]:
515         * src/pkginst.cpp (pkgInstall) [ACTION_INSTALL_FAILED]:
516         Assert as appropriate.
517
518 2012-12-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
519
520         Improve progress reporting in "Apply Changes" dialogue.
521
522         * src/pkgstat.h: New header file; it declares...
523         (pkgSpinWait): ...this new pure abstract base class; it specifies an
524         infrastructure for posting arbitrary text to dialogue controls.
525
526         * src/pkgexec.cpp (pkgSpinWait): Implement its static elements.
527         (pkgActionItem::Execute): Dispatch progress reports, handled by...
528         (pkgSpinWait::Report, pkgSpinWait::Indicator): ...these.
529
530         * src/guixmld.cpp (pkgDialogueSpinWait): New class; declare it and
531         implement locally.  It is derived from, and provides a listener for...
532         (pkgSpinWait): ...this abstract class.
533         (pkgApplyChanges): Use it.
534
535         * src/tarproc.cpp (pkgTarArchiveInstaller::ProcessDataStream): Call...
536         (pkgSpinWait::Report): ...this, to report extracted files.
537
538         * src/pkgunst.cpp (pkg_unst): Call...
539         (pkgSpinWait::Report): ...this, to report deleted files.
540
541         * src/sysroot.cpp (pkgXmlDocument::UpdateSystemMap): Call...
542         (pkgSpinWait::Report, pkgSpinWait::Indicator): ...these, to confirm
543         continuing database update activity.
544
545 2012-12-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
546
547         Update tab display on right-click in package list view.
548
549         * src/pkgdata.cpp (AppWindowMaker::OnNotify) [NM_RCLICK]:
550         Call DataSheetMaker::DisplayData(), before invoking pop-up menu.
551
552 2012-12-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
553
554         Add more protection against NULL pointer abuse.
555
556         * src/pkgbase.h (pkgActionItem::Reset): Method renamed to...
557         * src/guixmld.cpp (pkgActionItem::Assert): ...this; also renamed here.
558         (AppWindowMaker::OnCommand): When calling...
559         (pkgListViewMaker::MarkScheduledActions): ...this, pass argument as...
560         (pkgXmlDocument::ClearScheduledActions): ...pointer returned by this.
561
562         * src/pkgdata.cpp (AppWindowMaker::MarkSchedule):
563         [pending_actions == NULL]: Do not propagate invocation request to...
564         (pkgListViewMaker::MarkScheduledActions): ...this.
565
566         * src/pkglist.cpp (pkgListViewMaker::MarkScheduledActions):
567         [schedule == NULL]: Do nothing.
568
569 2012-12-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
570
571         Implement some additional permanent debugging support.
572
573         * src/pkgdeps.cpp (pkgXmlDocument::ResolveDependencies):
574         [DEBUG_TRACE_DEPENDENCIES]: Enable DMH digest mode for messages.
575
576         * src/tarproc.cpp (pkgTarArchiveInstaller::ProcessDataStream):
577         [DEBUG_TRACE_TRANSACTIONS]: Add logging of installed file path names.
578
579 2012-12-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
580
581         Insert a missing snprintf format effector.
582
583         * src/pkgnget.cpp (pkgDownloadMeterGUI::Update): Add omitted '%'
584         format specifier, in "%%", for formatting percentage-complete value.
585         Rename "size_buf" automatic variable as "buf"; this results in shorter
586         source lines, and consequently a tidier source code layout.
587         (pkgDownloadMeterGUI::ResetGUI): Likewise s/size_buf/buf/
588
589 2012-12-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
590
591         Add a missing header reference.
592
593         * src/approot.h: Include stdint.h; this ensures that wchar_t is
594         properly typedef'd, before attempting to use it.
595
596 2012-12-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
597
598         Make a clone of the package menu available as a pop-up.
599
600         * src/guimain.h (AppWindowMaker::SelectPackageAction): New private
601         method; declare it.
602
603         * src/pkgdata.cpp (AppWindowMaker::SelectPackageAction): Implement it.
604         (AppWindowMaker::OnNotify) [ID_PACKAGE_LISTVIEW]: Use it.
605
606 2012-12-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
607
608         Improve conditionally enabled state manipulation for menu items.
609
610         * src/guidata.rc (IDM_REPO_APPLY): Set its initial state as GRAYED.
611
612         * src/pkgdata.cpp (AppWindowMaker::UpdatePackageMenuBindings):
613         [IDM_PACKAGE_REINSTALL]: Always leave it GRAYED; this is a temporary
614         provision, until the GUI is updated to support "reinstall" capability.
615         [IDM_REPO_APPLY && !(EnumeratePendingActions > 0)]: Make it GRAYED.
616         [IDM_REPO_APPLY && (EnumeratePendingActions > 0)]: Enable it.
617
618 2012-12-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
619
620         Implement GUI bindings for processing a schedule of actions.
621
622         * src/guimain.h (IDD_DMH_CONSOLE): New resource ID; define it.
623         (IDD_APPLY_EXECUTE): New dialogue template resource ID; define it.
624         (AppWindowMaker::ExecuteScheduledActions): New method; declare it.
625
626         * src/guidata.rc (IDD_APPLY_EXECUTE): Implement dialogue template.
627
628         * src/guixmld.cpp (pkgApplyChanges): New thread function; implement it.
629         (AppWindowMaker::OnCommand) [IDD_REPO_APPLY]: Use it; it is invoked...
630         (IDD_APPLY_EXECUTE): ...via this dialogue box, subsequently calling...
631         (AppWindowMaker::ExecuteScheduledActions): ...this; implement it.
632
633         * src/pkgexec.cpp (pkgActionItem::Execute): Add argument; use it.
634         (pkgActionItem::~pkgActionItem): Unlink chained references.
635
636         * src/pkgbase.h (pkgActionItem::Execute): Adjust prototype.
637
638 2012-12-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
639
640         Do not preserve unnecessary download requests.
641
642         * src/pkginet.cpp (pkgActionItem::DownloadArchiveFiles):
643         [(flags & ACTION_INSTALL) != ACTION_INSTALL]: Actions having no
644         "install" effect do not require a download; cancel any associated
645         download request.
646
647 2012-12-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
648
649         Implement GUI bindings for package download agent.
650
651         * src/guimain.h (IDD_PROGRESS_VAL, IDD_PROGRESS_MAX):
652         (IDD_PROGRESS_PCT): New manifest resource IDs; define them.  They will
653         be used to identify dialogue controls, to be associated with...
654         (IDD_APPLY_DOWNLOAD): ...this new dialogue template ID; define it.
655         (AppWindowMaker::DownloadArchiveFiles): New inline method; declare it.
656
657         * src/guidata.rc (IDD_APPLY_DOWNLOAD): Implement dialogue template.
658
659         * src/pkgbase.h (pkgActionItem::DownloadArchiveFiles): New public
660         inline method; declare it.  It overloads an existing private method of
661         the same name, which it subsequently invokes.
662
663         * src/pkginet.h: New header file; it declares...
664         (pkgInvokeDownload): ...this new extern "C" function prototype, and...
665         (pkgDownloadMeter): ...this abstract class; it is factored from its
666         original implementation in pkginet.cpp, augmented by addition of...
667         (pkgDownloadMeter::primary): New static member variable; declare it.
668         (pkgDownloadMeter::UseGUI): New public method; implement it inline.
669         (pkgDownloadMeter::ResetGUI): New public method; declare it, providing
670         a do-nothing inline default implementation.  Any derived class, which
671         supports GUI capability, should override this.
672
673         * src/pkgnget.cpp: New file; it implements...
674         (pkgDownloadMeterGUI): New class, derived from pkgDownloadMeter.
675         (pkgActionItem::DownloadArchiveFiles): New overloaded inline method.
676         (AppWindowMaker::DownloadArchiveFiles): New inline method.
677         (pkgInvokeDownload): New dialogue box worker thread handler.
678
679         * src/pkginet.cpp: Include pkginet.h; hence...
680         (pkgDownloadMeter): ...remove redundant class declaration.
681         (pkgDownloadMeter::primary): Define and initialise it.
682         (pkgInternetStreamingAgent::Get) [pkgDownloadMeter::UseGUI]: Delegate
683         progress metering to referenced pkgDownloadMeterGUI class instance.
684         [! pkgDownloadMeter::UseGUI]: Continue to use the existing built-in
685         pkgDownloadMeterTTY mechanism.
686         (pkgActionItem::DownloadSingleArchive) [ACTION_DOWLOAD_FAILED]: Assert
687         this initially; subsequently clear it on successful completion.
688         (pkgActionItem::DownloadArchiveFiles): Collect diagnostic messages
689         into a single DMH_BEGIN_DIGEST ... DMH_END_DIGEST group.
690
691         * src/guixmld.cpp: Include pkginet.h; it is required by...
692         (AppWindowMaker::OnCommand) [IDD_REPO_APPLY]: Use pkgInvokeDownload.
693
694         * Makefile.in (GUIMAIN_OBJECTS): Include pkgnget.$OBJEXT
695
696 2012-12-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
697
698         Implement "Discard" handler for GUI "Apply Changes" dialogue.
699
700         * src/pkgbase.h (pkgActionItem::Reset): New public method; declare it.
701         (pkgActionItem::Clear): New public method; declare two overloaded
702         variants, of which implement one inline.
703         (pkgXmlDocument::ClearScheduledActions): New public method; declare
704         and implement it inline.
705
706         * src/pkgtask.h (ACTION_DOWNLOAD_FAILED, ACTION_APPLY_FAILED): New
707         manifest bit-flag constants; define them.  They provide a mechanism
708         for blocking the discard event in respect of failed actions.
709
710         * src/guixmld.cpp (pkgActionItem::Reset): Implement it.
711         (pkgActionItem::Clear): Implement second, out-of-line variant.
712         (ACTION_PRESERVE_FAILED): New local manifest bit-flag constant; define
713         it as an aggregate of ACTION_DOWNLOAD_FAILED and ACTION_APPLY_FAILED.
714         (AppWindowMaker::OnCommand) [IDD_REPO_APPLY]: Use them.
715
716 2012-12-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
717
718         Implement GUI dialogue for "Apply Changes" action approval.
719
720         * src/guidata.rc (ID_MAIN_WINDOW_MENU): Rename...
721         ("&Repository"): ...this drop-down menu entry...
722         ("&Installation"): ...this; add...
723         ("&Apply Changes"): ...this new selection.
724         (IDD_APPLY_APPROVE): New dialogue box resource template; define it.
725         (SS_CTEXTBOX): New aggregate style convenience macro; define it.
726         (ES_VT100): Likewise.
727
728         * src/guimain.h (IDM_REPO_APPLY): New resource ID; define it.
729         (IDM_REPO_QUIT): Redefined resource ID; was 302; changed to 312.
730         (IDD_APPLY_APPROVE, IDD_PROGRESS_TXT): New resource IDs; define them.
731         (IDD_APPLY_REMOVES_PACKAGES, IDD_APPLY_REMOVES_SUMMARY): Likewise.
732         (IDD_APPLY_INSTALLS_PACKAGES, IDD_APPLY_INSTALLS_SUMMARY): Likewise.
733         (IDD_APPLY_UPGRADES_PACKAGES, IDD_APPLY_UPGRADES_SUMMARY): Likewise.
734         (ID_APPLY, ID_DISCARD, ID_DEFER): New response IDs; define them.
735         (AppWindowMaker::EnumerateActions): New inline method; declare it.
736         (AppWindowMaker::DialogueResponse): New inline method; declare and
737         implement it.
738
739         * src/guixmld.cpp (pkglist.h): #included.
740         (dmh_setpty): Add locally declared prototype.
741         (AppWindowMaker::EnumerateActions): Implement it.
742         (pkgActionCount): New static helper function; implement it.
743         (ACTION_APPLY, APPLIES_TO): New macros; define them.
744         (FMT_APPLY_REMOVES, FMT_APPLY_INSTALLS, FMT_APPLY_UPGRADES): New
745         manifest string constants; define them.
746         (pkgApplyApproved): New static call-back function; implement...
747         (AppWindowMaker::OnCommand) [IDM_REPO_APPLY]: ...and use it.
748
749 2012-12-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
750
751         Implement enhanced action item enumeration capability.
752
753         * src/pkgbase.h (pkgActionItem::EnumeratePendingActions): New public
754         method; declare it.  It provides the capability to enumerate scheduled
755         actions, filtered by action classification; when invoked such that it
756         selects all actions, it may be used as a replacement for...
757         (pkgActionItem::Unapplied): ...this; delete declaration.
758
759         * src/pkgdata.cpp (pkgActionItem::EnumeratePendingActions): Implement
760         it; it is derived, with enhancement, from original implementation...
761         (pkgActionItem::Unapplied): ...of this; delete it, and...
762         (AppWindowMaker::OnClose): ...update calling reference accordingly.
763
764 2012-12-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
765
766         Implement PTY display emulation for GUI mode DMH.
767
768         * src/dmhcore.h (dmhTypeGeneric::set_console_hook): New public virtual
769         method; declare it, providing inline default do-nothing implementation.
770         (dmhTypeGeneric::severity_tag): New protected static method; declare it.
771         (dmhTypeGeneric::notification_format): New protected static property;
772         declare it.
773
774         * src/dmh.cpp (dmhTypeGeneric::severity_tag): Implement it.
775         (dmhTypeGeneric::notification_format): Define and initialise it.
776         (dmhTypeTTY::notify): Use them.
777         (dmh_setpty): New function; declare prototype and implement it.
778
779         * src/guidmh.cpp (dmhTypePTY): New locally implemented class.
780         (dmhTypeGUI::set_console_hook): New virtual method; declare and
781         implement it; it stores a dmhTypePTY reference pointer into...
782         (dmhTypeGUI::console_hook): ...this new private member variable.
783         (dmhTypeGUI::dmhTypeGUI): Initialise it.
784         (dmhTypeGUI::notify) [console_hook != NULL]: Delegate to it.
785         (dmhTypeGUI::printf) [console_hook != NULL]: Likewise.
786
787 2012-12-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
788
789         Implement generalised API for dialogue boxes with worker threads.
790
791         * src/guimain.h (pkgDialogueThread): New typedef; declare it.
792         (AppWindowMaker::DialogueThread): New static property; declare it.
793         (AppWindowMaker::DispatchDialogueThread): New method; declare it.
794
795         * src/guixmld.cpp: Formatting of several comments adjusted.
796         (pkgUpdate, pkgInitDataLoad): Defunct functions; replaced by...
797         (pkgDialogue): ...this new static call-back function; implement it.
798         (AppWindowMaker::DialogueThread): Instantiate and initialise it.
799         (AppWindowMaker::DispatchDialogueThread): Implement it.
800         (AppWindowMaker::Invoked): Use it to invoke pkgInvokeInitDataLoad()...
801         (AppWindowMaker::OnCommand): ...and pkgInvokeUpdate().
802
803 2012-12-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
804
805         Consolidate GUI implementation for package list view management.
806
807         * src/pkglist.h (pkgListViewMaker::GetTitle): Disused overloaded
808         method; remove all declarations.
809         (pkgListViewMaker::GetVersionString): Disused method; remove
810         declaration.
811         (pkgListViewMaker::GetItem): New private inline method; declare it.
812         (pkgListViewMaker::UpdateItem): New private method; declare it.
813         (pkgListViewMaker::UpdateListView): New public method; declare it.
814         (pkgListViewMaker::MarkScheduledActions): Likewise.
815
816         * src/guimain.h (AppWindowMaker::MarkSchedule): New public inline
817         method; declare it, but defer implementation to...
818
819         * src/pkgdata.cpp (AppWindowMaker::MarkSchedule): ...here; not used
820         elsewhere, it is derived from, and replaces...
821         (pkgMarkSchedule): ...this function; factor out redundant code, in
822         favour of delegation to pkgListViewMaker::MarkScheduledActions(), with
823         following call to AppWindowMaker::UpdatePackageMenuBindings(); update
824         calling function references...
825         (AppWindowMaker::UnmarkSelectedPackage): ...here, and...
826         (AppWindowMaker::Schedule): ...here.
827
828         * src/pkglist.cpp (pkgVersionString): New static function; implement
829         it as a local replacement for...
830         (pkgListViewMaker::GetVersionString): ...this defunct class method.
831         (pkgGetTitle): New overloaded static function; implement two variants,
832         as local replacements for...
833         (pkgListViewMaker::GetTitle): ...this defunct overloaded class method.
834         (pkgListViewMaker::UpdateItem): Implement it; factor code from...
835         (pkgListViewMaker::InsertItem): ...here, whence use it.
836         (pkgListViewMaker::MarkScheduledActions): Implement it.
837         (pkgListViewMaker::UpdateListView): Implement it.
838         (pkgListViewMaker::pkgListViewMaker): Remove references to...
839         (LVIF_TEXT): ...this.
840
841 2012-11-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
842
843         Increase width of window sash bars by 50%.
844
845         * src/guimain.h (SASH_BAR_THICKNESS): Increase from 4 to 6; this makes
846         it easier to grab the sash bars, so they may be dragged; IMO, it also
847         results in a better appearance.
848
849 2012-11-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
850
851         Maintain consistent internal vs. external installation records.
852
853         * src/pkginst.cpp (pkgInstall): Set "installed" attribute on internal
854         package reference, to "yes", after installation; CLI didn't need this,
855         but GUI will do so, for any package revisited in a single session.
856
857         * src/pkgunst.cpp (pkgRemove): Similarly, negate "installed" attribute
858         after package removal.
859
860 2012-11-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
861
862         Refactor to consolidate three instances of duplicate code.
863
864         * src/pkglist.h (pkgGetStatus): New function; declare it.
865         * src/pkglist.cpp (pkgGetStatus): Implement it; factor out from...
866         (pkgListViewMaker::InsertItem): ...here, whence use it.
867         * src/pkgdata.cpp (pkgMarkSchedule): Likewise here...
868         (DataSheetMaker::DisplayGeneralData): ...and here.
869
870 2012-11-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
871
872         Add GUI support for install, upgrade, and remove action scheduling.
873
874         * src/guimain.h (EXTERN_C): Ensure it is defined.
875         (pkgActionItem): Add forward declaration of class name.
876         (pkgMarkSchedule): New EXTERN_C function; declare and prototype it.
877         (AppWindowMaker::OnClose): New virtual method; declare it.
878         (AppWindowMaker::Schedule): New public method; declare it.
879         (AppWindowMaker::UnmarkSelectedPackage): Likewise.
880
881         * src/pkgbase.h (pkgActionItem::HasAttribute) [this == NULL]: Add
882         protective logic; ignore attempts to access non-existent objects.
883         (pkgActionItem::SelectPackage) [this == NULL]: Likewise.
884         (pkgActionItem::Selection) [this == NULL]: Likewise.
885         (pkgActionItem::GetReference): New overloaded public method; declare
886         prototype variant with argument type of pkgXmlNode*.
887         (pkgActionItem::Unapplied): New public method; declare it.
888         (pkgActionItem::CancelScheduledAction): Likewise.
889         (pkgXmlDocument::Schedule): Change return type from void to
890         pkgActionItem*; add default argument values.
891
892         * src/guixmld.cpp (AppWindowMaker::OnCommand): Add menu case hooks...
893         [IDM_PACKAGE_INSTALL]: ...to schedule package 'install' action...
894         [IDM_PACKAGE_UPGRADE]: ...package 'upgrade' action...
895         [IDM_PACKAGE_REMOVE]: ...package 'remove' action, or...
896         [IDM_PACKAGE_UNMARK]: ...to cancel any of these scheduling requests.
897         [IDM_REPO_QUIT]: Correct typo; s/WM_QUIT/WM_CLOSE/ in comment.
898
899         * src/pkgdata.cpp (pkgMarkSchedule): Implement it.
900         (pkgActionItem::CancelScheduledAction): Implement it.
901         (pkgActionItem::Unapplied): Implement it.
902         (AppWindowMaker::UpdatePackageMenuBindings): Improve comments.
903         (AppWindowMaker::UnmarkSelectedPackage): Implement it.
904         (AppWindowMaker::Schedule): Implement it.
905         (AppWindowMaker::OnClose): Implement it.
906
907         * src/pkgdeps.cpp (pkgActionItem::GetReference): Implement overload.
908         (pkgXmlDocument::Schedule): Change return type, and return value.
909         [this == NULL]: Add protective logic; ignore non-existent objects.
910         [name == NULL]: Do not schedule; just return existing action list.
911
912 2012-11-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
913
914         Add dynamically enabled state control for package menu items.
915
916         * src/guimain.h (AppWindowMaker::UpdatePackageMenuBindings): New
917         private method; declare it.
918
919         * src/pkgdata.cpp (AppWindowMaker::UpdatePackageMenuBindings):
920         Implement it, and...
921         (AppWindowMaker::OnNotify): ...use it.
922
923 2012-11-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
924
925         Avoid excessive inter-word spaces in adjusted text.
926
927         * src/pkgdata.cpp (pkgTroffLayoutEngine::WriteLn): Check extent of
928         padding to be added at each inter-word space, when adjusting text; do
929         not adjust, if it exceeds 5% of available display pane width.
930
931 2012-11-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
932
933         Elide unbreakable text which will not fit within display width.
934
935         * src/pkgdata.cpp (pkgTroffLayoutEngine::WriteLn): Add logic to detect
936         over-width unbreakable text; elide characters from the right, to make
937         it fit within the display width, with trailing ellipsis.
938
939 2012-11-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
940
941         Add content compiler for package data sheet "general" tab.
942
943         * src/pkgbase.h (pkgActionItem::PrintURI): Make it public.  Add a
944         call-back reference argument, for output function; assign puts() as
945         default, where previously had hard coded printf() emulating puts()
946
947         * src/pkginet.cpp (pkgActionItem::PrintURI): Use call-back hook.
948
949         * src/pkgdata.cpp (DataSheetMaker::Display): New static property; it
950         stores a reference to the active class instance, so static call-back
951         methods may delegate processing requests to non-static methods.
952         (DataSheetMaker::Advance): New static property; it is used to instruct
953         call-back methods to interpose paragraph leading it the output stream.
954         (DataSheetMaker::FormatRecord): New private method; implement it.
955         (DataSheetMaker::FormatText): Don't pass "canvas" as an argument; we
956         can access it directly as a class property.  Update all callers as
957         necessary, to conform to modified function prototype.
958         (pkgListSelection): New static function; implement it, and...
959         (DataSheetMaker::OnPaint): ...use it in switch cases, when calling...
960         [PKG_DATASHEET_GENERAL]: DataSheetMaker::DisplayGeneralData(), and...
961         [PKG_DATASHEET_DESCRIPTION]: DataSheetMaker::DisplayDescription().
962         (DataSheetMaker::DisplayGeneralData): New public method; implement it.
963         (DataSheetMaker::DisplayPackageURL): New static method; implement it.
964         (DataSheetMaker::DisplayLicenceURL): Likewise.
965         (DataSheetMaker::DisplaySourceURL): Likewise.
966
967 2012-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
968
969         Fix error in counting of catalogue files during loading.
970
971         * src/pkgbind.cpp (pkgRepository::GetPackageList): Increment count
972         variable once only, at start of each cycle of the catalogue loading
973         loop; previous strategy of counting in discrete logic paths could
974         miss several required increments, particularly in CLI mode.
975
976 2012-10-27  Keith Marshall  <keithmarshall@users.sourceforge.net>
977
978         Avoid DMH message digest fragmentation when downloading.
979
980         * src/dmh.h (DMH_GET_CONTROL_STATE): New macro; define it.
981         * src/pkginet.cpp (pkgInternetAgent::OpenURL): Use it; do not close
982         locally opened message digest, when called with one already open.
983
984 2012-10-27  Keith Marshall  <keithmarshall@users.sourceforge.net>
985
986         Initiate progress metering for catalogue load and update operations.
987
988         * src/guidata.rc (IDD_REPO_UPDATE): New dialogue template; define it.
989         (IDM_REPO_UPDATE): Enable selection from "Repository" drop-down menu.
990
991         * src/guimain.h (IDD_REPO_UPDATE, IDD_CLOSE_OPTIONS):
992         (IDD_AUTO_CLOSE_OPTION, IDD_PROGRESS_BAR, IDD_PROGRESS_MSG): New
993         resource identification manifest constants; define them.
994         (pkgXmlNode, pkgProgressMeter): Add forward class declarations.
995         (AppWindowMaker::AttachedProgressMeter): New private data; define...
996         (AppWindowMaker::AppWindowMaker): ...and initialise it.
997         (AppWindowMaker::AttachProgressMeter): New public method; declare it.
998         (AppWindowMaker::DetachProgressMeter): Likewise.
999         (AppWindowMaker::LoadPackageData, AppWindowMaker::ClearPackageList):
1000         (AppWindowMaker::UpdatePackageList): Make them public.
1001
1002         * src/pkgbase.h (pkgProgressMeter): New abstract class; declare it.
1003         (AppWindowMaker) [GUIMAIN_H undefined]: Add forward class declaration.
1004         (pkgXmlDocument::progress_meter): New private data member; declare...
1005         (pkgXmlDocument::pkgXmlDocument): ...and initialise it.
1006         (pkgXmlDocument::ProgressMeter, pkgXmlDocument::AttachProgressMeter):
1007         (pkgXmlDocument::DetachProgressMeter): New public inline methods;
1008         implement them.
1009
1010         * src/pkgview.cpp (WTK::GenericDialogue): Delete disused reference.
1011         (AppWindowMaker::OnCommand): Factor out implementation; relocate it...
1012         * src/guixmld.cpp: ...to here; thus it may utilise dependants of...
1013         (ProgressMeterMaker): ...this new locally implemented class.
1014         (AppWindowMaker::AttachProgressMeter): Implement it.
1015         (AppWindowMaker::AttachProgressMeter): Likewise.
1016         (pkgProgressMeter::~pkgProgressMeter): Likewise.
1017         (pkgUpdate, pkgInvokeUpdate): New static functions; implement them.
1018         (AppWindowMaker::Invoked): Replace direct call to LoadPackageData by
1019         an indirect invocation, via a progress metering dialogue box using...
1020         (pkgInitDataLoad): ...this new static callback function, invoking...
1021         (pkgInvokeInitDataLoad): ...this new static thread function, whence...
1022         (AppWindowMaker::LoadPackageData): ...this; add hook-up call to...
1023         (pkgXmlDocument::AttachProgressMeter): ...incorporate this.
1024
1025         * src/pkgbind.cpp (pkgRepository::total, pkgRepository::count): New
1026         private static properties; declare and instantiate them; provide...
1027         (pkgRepository::Reset, pkgRepository::IncrementTotal): ...new public
1028         static methods to manipulate them; declare and implement them inline.
1029         (pkgRepository::GetPackageList): Use them to manage updates to the
1030         pkgProgressMeter class instance, if any, which has been bound to
1031         the controlling pkgXmlDocument class instance, when invoking...
1032         (pkgXmlXmlDocument::BindRepositories): ...this.
1033
1034 2012-10-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
1035
1036         Associate DMH message boxes with active dialogues.
1037
1038         * src/guidmh.cpp (last_active_popup): New static inline function.
1039         (dmhTypeGUI::dispatch_message): Use it.
1040
1041 2012-10-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
1042
1043         Fix Diagnostic Message Handler initialisation logic.
1044
1045         * src/dmh.cpp (dmh_init) [DMH_SUBSYSTEM_GUI]: Correct a logic error;
1046         it previously fell through after any successful initialisation of the
1047         DMH_SUBSYSTEM_GUI handler, replacing it with a DMH_SUBSYSTEM_TTY type
1048         handler.  Also, assign a heap copy of the passed "progname" string
1049         resource, which is volatile, to ensure that the handler retains a
1050         valid reference.
1051
1052 2012-10-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
1053
1054         Implement preliminary GUI mode data sheet compiler.
1055
1056         * src/guimain.h (DataSheetMaker): New class; forward declare it.
1057         (AppWindowMaker::InitPackageTabControl): New private method; declare it.
1058         (AppWindowMaker::DataSheet, AppWindowMaker::PackageTabControl):
1059         (AppWindowMaker::TabDataPane, AppWindowMaker::PackageTabPane): New
1060         private data members; declare them.
1061         (ID_SASH_WINDOW_PANE_CLASS): New string resource identifier; define it.
1062         (ID_PACKAGE_DATASHEET, ID_PACKAGE_TABPANE): New window identifiers;
1063         define them.
1064
1065         * src/guidata.rc (ID_SASH_WINDOW_PANE_CLASS): Specify string resource.
1066
1067         * src/pkgview.cpp (AppWindowMaker::OnSize): Add handler for...
1068         (ID_PACKAGE_TABPANE, ID_PACKAGE_TABCONTROL, ID_PACKAGE_DATASHHET):
1069         ...this group of sash pane child window entities.
1070         (AppWindowMaker::OnNotify): Comment out disused stub implementation.
1071
1072         * src/pkgshow.cpp (pkgUTF8Parser): Factor out class declaration...
1073         (UTF32_MAX, UTF32_OVERFLOW, UTF32_INVALID): ...these definitions...
1074         (utf32_t): ...and this typedef; relocate to, and #include...
1075         * src/pkgdata.h: ...this new header file.
1076
1077         * src/pkgdata.cpp (DataSheetMaker): New class; declare and implement it.
1078         (AppWindowMaker::InitPackageTabControl): Implement it.
1079         (AppWindowMaker::OnNotify): Reimplement it.
1080
1081         * Makefile.in (GUIMAIN_OBJECTS): Add pkgdata.OBJEXT
1082
1083         * src/guixmld.cpp (AppWindowMaker::Invoked): Add call to invoke
1084         AppWindowMaker::InitPackageTabControl()
1085
1086 2012-10-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
1087
1088         Remove a grossly heuristic list view hack.
1089
1090         * src/pkglist.cpp (pkgListViewMaker::GetTitle): Remove code for the
1091         heuristic deletion of any redundant package name prefixes from package
1092         title attributes; by now, all such prefixes should have been removed
1093         from the catalogue, explicitly, at source.
1094
1095 2012-10-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
1096
1097         Implement GUI list view compiler for XML catalogue.
1098
1099         * src/pkgview.cpp (AppWindowMaker::LayoutEngine): Add case handler...
1100         [pane_id == ID_PACKAGE_LISTVIEW]: ...for this window pane class.
1101
1102         * src/guimain.h (ID_PKGLIST_TABLE_HEADINGS):
1103         (ID_PKGNAME_COLUMN_HEADING, ID_PKGTYPE_COLUMN_HEADING):
1104         (ID_INSTVER_COLUMN_HEADING, ID_REPOVER_COLUMN_HEADING):
1105         (ID_PKGDESC_COLUMN_HEADING): New resource identifiers; define them.
1106         (ID_PKGSTATE_AVAILABLE, ID_PKGSTATE_AVAILABLE_NEW):
1107         (ID_PKGSTATE_AVAILABLE_LOCKED, ID_PKGSTATE_AVAILABLE_INSTALL):
1108         (ID_PKGSTATE_INSTALLED_CURRENT, ID_PKGSTATE_INSTALLED_LOCKED):
1109         (ID_PKGSTATE_INSTALLED_OLD, ID_PKGSTATE_UPGRADE, ID_PKGSTATE_REMOVE):
1110         (ID_PKGSTATE_REINSTALL, ID_PKGSTATE_DOWNGRADE, ID_PKGSTATE_BROKEN):
1111         (ID_PKGSTATE_PURGE): New icon resource identifiers; define them.
1112         (AppWindowMaker::InitPackageListView): New private method; declare it.
1113         (AppWindowMaker::UpdatePackageList): New private method; declare it.
1114         (AppWindowMaker::ClearPackageList): New private method; declare and
1115         implement it inline.
1116
1117         * src/guidata.rc (ID_PKGSTATE_AVAILABLE, ID_PKGSTATE_AVAILABLE_NEW):
1118         (ID_PKGSTATE_AVAILABLE_LOCKED, ID_PKGSTATE_AVAILABLE_INSTALL):
1119         (ID_PKGSTATE_INSTALLED_CURRENT, ID_PKGSTATE_INSTALLED_LOCKED):
1120         (ID_PKGSTATE_INSTALLED_OLD, ID_PKGSTATE_UPGRADE, ID_PKGSTATE_REMOVE):
1121         (ID_PKGSTATE_REINSTALL, ID_PKGSTATE_DOWNGRADE, ID_PKGSTATE_BROKEN):
1122         (ID_PKGSTATE_PURGE): New icon resources; implement them.
1123
1124         * icons/state01.ico icons/state02.ico icons/state03.ico:
1125         * icons/state04.ico icons/state05.ico icons/state06.ico:
1126         * icons/state07.ico icons/state08.ico icons/state09.ico:
1127         * icons/state10.ico icons/state11.ico icons/state12.ico:
1128         * icons/state13.ico: New files.  All are cloned from synaptic icons;
1129         see src/guimain.rc for symbolic/functional reference names.
1130
1131         * src/pkglist.h [GUIMAIN_H defined] (pkgListViewMaker): New class;
1132         declare it for use in modules which #include guimain.h
1133
1134         * src/pkglist.cpp: New file; it implements...
1135         (pkgListViewMaker): ...this new class, and its clients...
1136         (AppWindowMaker::InitPackageListView): New method.
1137         (AppWindowMaker::UpdatePackageList): Likewise.
1138
1139         * Makefile.in (GUIMAIN_OBJECTS): Add pkglist.OBJEXT
1140
1141         * src/guixmld.cpp (AppWindowMaker::Invoke): Call InitCommonControls(),
1142         as prerequisite to AppWindowMaker::InitPackageListView(); follow up by
1143         calling AppWindowMaker::AdjustLayout().
1144
1145 2012-10-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
1146
1147         Add GUI initialiser hook for XML catalogue interface.
1148
1149         * src/guimain.h (AppWindowMaker::Invoke): New public method; declare
1150         it; it overrides the generic WTK::MainWindowMaker::Invoke() method, so
1151         providing the initialiser hook which will invoke this...
1152         (AppWindowMaker::LoadPackageData): ...new private method; declare it.
1153
1154         * src/guixmld.cpp: New file.
1155         (AppWindowMaker::Invoke): Implement it.
1156         (AppWindowMaker::LoadPackageData): Likewise.
1157
1158         * Makefile.in (GUIMAIN_OBJECTS): Add guixmld.OBJEXT
1159
1160 2012-09-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1161
1162         Add initial working GUI mode DMH class implementation.
1163
1164         * src/dmh.h (DMH_SEVERITY_MASK): New manifest constant; define it.
1165         (DMH_DIGEST_MASK, DMH_COMPILE_DIGEST, DMH_DISPATCH_DIGEST): Likewise.
1166         (DMH_BEGIN_DIGEST, DMH_END_DIGEST): Redefine in terms of above.
1167
1168         * src/dmhcore.h: New header file; it declares...
1169         (dmhTypeGeneric): ...this abstract base class, factored from...
1170
1171         * src/dmh.cpp (dmhTypeGeneric): ...here, whence remove it; it is
1172         still required, thus include dmhcore.h so that it remains visible.
1173         (dmh_exception): Remove errant namespace qualifier from constructor.
1174         (dmhTypeGUI): Delete class declaration and original constructor.
1175         (dmh_init): Delete reference to dmhTypeGUI; replace by call to...
1176         (dmh_init_gui): ...this new static function; it is a stub which
1177         invokes a DLL import of the same name, to instantiate a dmhTypeGUI.
1178         (dmhTypeGUI::control, dmhTypeGUI::notify, dmhTypeGUI::printf): Delete
1179         original method stubs.
1180
1181         * src/guidmh.cpp: New file; it reimplements...
1182         (dmhTypeGUI): ...this class; declare it and implement its constructor.
1183         (dmh_init_gui): Provide its DLL exported implementation.
1184         (dmhTypeGUI::dispatch_message): New private method; add it to the
1185         class declaration and implement it; it is a helper method for...
1186         (dmhTypeGUI::control, dmhTypeGUI::notify): ...these; implement them.
1187         (dmhTypeGUI::printf): Provide a replacement stub.
1188
1189         * Makefile.in (GUIMAIN_OBJECTS): Add guidmh.OBJEXT
1190
1191         * src/guimain.h (AppWindowMaker::Create): New method; add it to the
1192         class declaration; it overrides the default Create() method inherited
1193         from WTK::MainWindowMaker
1194
1195         * src/pkgview.cpp (AppWindowMaker::Create): Implement it; it handles
1196         window class registration and dmhTypeGUI initialisation, in addition
1197         to the inherited CreateWindow() behaviour.
1198
1199         * src/guimain.cpp: Include dmh.h
1200         (WinMain): Add catch block for dmh_exception.  Remove window class
1201         registration request; it is now delegated to AppWindowMaker::Create()
1202
1203 2012-09-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
1204
1205         Add .hgignore as tracked file.
1206
1207         * .hgignore: New file.
1208
1209 2012-09-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
1210
1211         Defer generation of version.c until "make" time.
1212
1213         * version.c.in: Move it...
1214         * src/version.c.in: ...to here.
1215         (PACKAGE_NAME, PACKAGE_VERSION, COPYRIGHT_HOLDER, YEARS_OF_ISSUE):
1216         Change substitution field marker character from "@" to "%".
1217
1218         * configure.ac (AC_CONFIG_FILES): Remove version.c
1219
1220         * Makefile.in (TAG_SCRIPT): New macro, factored out from...
1221         (RC_SCRIPT): ...here, whence use it; also use it to implement...
1222         (VERSION_SCRIPT): ...this further new macro; use it in...
1223         (%.c): ...this generic template rule for version.c
1224         (time-stamp, %.time, %.tagged.time, %.tag): New generic build
1225         goals; use them to track package release progression via...
1226         (build.tag): ...this new intermediate; make it a pre-requisite...
1227         (guidata.OBJEXT, version.c): ...of these.
1228
1229 2012-09-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
1230
1231         Implement framework for GUI sash window layout controller.
1232
1233         * configure.ac (AC_INIT): Bump version number to 0.6
1234         (CLI_RELEASE_CLASS): New AC_SUBST variable; default to "beta".
1235         (GUI_RELEASE_CLASS): New AC_SUBST variable; default to "alpha".
1236         (SNAPSHOT_CLASS): Recognise as user specified environent variable
1237         override for both CLI_RELEASE_CLASS and GUI_RELEASE_CLASS.
1238         (RC): New AC_CHECK_TOOL substitution variable name; it replaces...
1239         (WINDRES): ...this, as reference name for the resource compiler.
1240         (MINGW_AC_ASSERT_MISSING): Add AC_CHECK_HEADER traps for missing
1241         "lua-dev" and "wtklite-dev" support.
1242
1243         * Makefile.in (CLI_RELEASE_CLASS, GUI_RELEASE_CLASS): Use them.
1244         (BUILD_TAG, RC_SCRIPT, RC_INCLUDES): New macros; define and use...
1245         (RC): ...with this, to implement new target rule for compiling...
1246         (%.rc): ...resource definition files to %.OBJEXT objects.
1247         (GUIMAIN_OBJECTS, GUIMAIN_LIBS): New macros; define and use...
1248         (guimain.EXEEXT): ...to implement build rule for this.
1249         (LIBEXEC_PROGRAMS): Add guimain.EXEEXT
1250         (lastrites.EXEEXT): Use GUI_LDFLAGS.
1251         
1252         * src/guimain.h src/guimain.cpp src/guidata.rc: New files.
1253         * src/pkgview.cpp: New file.
1254
1255 2012-09-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
1256
1257         Adjust incorrectly resolved 2012-09-14 merge from master.
1258
1259         * src/Makefile.in: Restore lost reference to guistub.cpp
1260
1261 2012-09-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1262
1263         Implement GUI hooks in "rites of passage" internal API.
1264
1265         * src/pkglock.h: New file; it adds the pkgLock() and pkgRelease()
1266         inline wrapper functions, through which the GUI application acquires
1267         and manages an exclusive access lock for the XML catalogue.
1268
1269         * src/rites.c (lockfile_name): Explicitly cast memory allocated for
1270         the returned name to (char *), so this may be embedded in C++ code.
1271         (pkgInitRites): Factor out lock acquisition failure diagnostics...
1272         (pkgLockFail): ...to this inline helper function; conditionally...
1273         [ifdef GUIMAIN_H]: ...provide one implementation for GUI use...
1274         [ifndef GUIMAIN_H]: ...and an alternative for CLI use.
1275
1276 2012-09-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
1277
1278         Be case agnostic when matching shortcut targets.
1279
1280         * scripts/libexec/unlink.js [ref.TargetPath == chklink]: Apply
1281         toLowerCase() on both sides of the comparison.
1282
1283 2012-09-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1284
1285         Note relocation of m4 when packaging source distribution.
1286
1287         * Makefile.in (SRCDIST_SUBDIRS): Refer to build-aux/m4, not m4.
1288
1289 2012-09-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
1290
1291         Move guimain.cpp out of the way.
1292
1293         * src/guimain.cpp: Rename file as...
1294         * src/guistub.cpp: ...this; we want to keep current features for now,
1295         but to use the guimain.cpp name for main GUI application development.
1296         * Makefile.in: Adjust references accordingly.
1297
1298 2012-09-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
1299
1300         Fix typo, and update licensing terms for embedded getopt.c
1301
1302         * src/getopt.c: Incorporate MIT/X style licence; update copyright
1303         notice, to reflect chronology of publication; correct degenerate RCS
1304         keyword usage in EOF marker comment.
1305
1306 2012-09-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1307
1308         Correct omission from copyright notice.
1309
1310         * src/pkgkeys.c: Add year 2012, to reflect 2012-09-02 update.
1311
1312 2012-09-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1313
1314         Redefine paragraph_key with project global scope.
1315
1316         * src/pkgkeys.h (paragraph_key): Declare it.
1317         * src/pkgkeys.c (paragraph_key): Define it.
1318
1319         * src/pkgshow.cpp (pkgDirectoryViewer::EmitDescription): Delete
1320         function local definition; use global definition instead.
1321
1322 2012-09-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1323
1324         Correct defect introduced by 2012-08-03 commit.
1325
1326         * src/approot.c (AppPathNameW): Add omitted 'else', so that tail
1327         pointer isn't moved after the APPROOT prefix is truncated.
1328
1329 2012-09-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1330
1331         Remap Mercurial subrepository reference via local hg-git clone.
1332
1333         * .hgsub (build-aux): Point to ../build-aux; this must be a locally
1334         hosted hg clone of the git origin repository, and it must pre-exist as
1335         a sibling of any created hg clone of the mingw-get repository.
1336
1337         * .hgsubstate: New file, automatically generated by Mercurial.
1338
1339 2012-08-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
1340
1341         Add Mercurial subrepository reference for build-aux.
1342
1343         * .hgsub: New file.
1344
1345 2012-08-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
1346
1347         More code refactoring, to facilitate GUI implementation.
1348
1349         * src/clistub.c (AppPathNameW): Factor out; relocate to...
1350         * src/approot.c: ...this new file; it reproduces the original
1351         implementation, modified to also consider any "libexec" directory in
1352         the executable path as the first child of the APPROOT prefix.  Note
1353         also, that no longer terminates APPROOT with a trailing backslash.
1354
1355         * src/approot.h: New file; it trivially declares the prototype for...
1356         (AppPathNameW): ...this relocated extern "C" function.
1357
1358         * src/clistub.c (main): Adapt usage of AppPathNameW(), to reinstate
1359         trailing backslash on assignment to APPROOT environment variable.
1360
1361         * Makefile.in (CLI_EXE_OBJECTS): New macro; define it as the original
1362         set of prerequisites, with the addition of approot.OBJEXT, for...
1363         (mingw-get.EXEEXT): ...this; use it.
1364
1365         * src/rites.c: Add comment regarding APPROOT usage.
1366
1367 2012-08-02  Earnie Boyd  <earnie@users.sourceforge.net>
1368
1369         Find missing.m4 in build-aux/m4 directory.
1370
1371         * aclocal.m4: Change path  m4/missing.m4 to build-aux/m4/missing.m4.
1372
1373 2012-07-31  Earnie Boyd  <earnie@users.sourceforge.net>
1374
1375         Add build-aux as a submodule.
1376         Move .cvsignore to .gitignore.
1377
1378         * .gitmodules: New file.
1379         * build-aux: New submodule directory.
1380         * .cvsignore: Remove.
1381         * .gitignore: New file.
1382
1383 2012-07-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
1384
1385         Disable globbing of command line arguments.
1386
1387         * src/clistub.c (_CRT_glob): Define and initialise to zero; we don't
1388         need globbing, and it may cause case transliteration of case-sensitive
1389         action keywords, when a file system entity with a case-insensitively
1390         matching name exists.
1391
1392 2012-06-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1393
1394         Refactor API to facilitate implementation of GUI ListView hooks.
1395
1396         * src/pkgkeys.h (title_key, description_key): Declare them.
1397         * src/pkgkeys.c (title_key, description_key): Define them; relocate...
1398         * src/pkgshow.cpp (pkgDirectoryViewer::EmitDescription): ...from here.
1399         (pkgXmlDocument::CalalogueAllPackages): New public method; factor...
1400         (pkgXmlDocument::DisplayPackageInfo): ...from here, whence use it.
1401         (pkgDirectoryViewerEngine::EnumerateComponents): New private method;
1402         implement as a concrete method of this abstract base class; factor...
1403         (pkgDirectoryViewer::Dispatch): ...from original inline implementation
1404         within this method of the concrete derived class, whence use it.
1405         (pkgDirectoryViewerEngine, pkgDirectory): Factor class declarations...
1406         * src/pkglist.h: ...into this new header file; include it.
1407
1408         * src/pkgbase.h (pkgDirectory): Add forward class declaration.
1409         (pkgXmlDocument::CatalogueAllPackages): Declare it.
1410
1411 2012-05-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1412
1413         Update help text to document package version selection capability.
1414
1415         * src/clistub.c (help_text): Add description of command line syntax
1416         which may be used to specify an alternative to the default package
1417         version selection, for install and upgrade actions.
1418
1419 2012-05-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
1420
1421         Support options set by preferences assigned within profile.xml
1422
1423         * xml/profile.xml (preferences): New element; add defaults.
1424
1425         * src/pkgopts.h (OPTION_ASSIGNED_FLAGS, OPTION_DESKTOP_ARGS):
1426         (OPTION_START_MENU_ARGS): New enumerated constants; define them.
1427         (OPTION_DESKTOP, OPTION_START_MENU): New manifest constants.
1428         (OPTION_ASSIGNED, mark_option_as_set): New macros; define them.
1429         (pkgOpts::GetValue, pkgOpts::GetString): Restrict look-up index to
1430         least significant 12-bits of full-range index value.
1431         (pkgOpts::IsSet): New inline method; implement it.
1432
1433         * src/clistub.c (main): Reimplement --desktop and --start-menu
1434         options; each now becomes an OPTION_GENERIC optarg string store.
1435         (set_script_hook): Function no longer used; delete it; delegate to...
1436         * src/pkgbase.h (pkgXmlDocument::EstablishPreferences): ...this new
1437         method; declare it, providing its implementation in...
1438         * src/pkgopts.cpp: ...this new file; invoke it...
1439         * src/climain.cpp (climain): ...here.
1440
1441         * Makefile.in (CORE_DLL_OBJECTS): Add pkgopts.$OBJEXT
1442
1443 2012-04-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
1444
1445         Correct sequence of installation/removal progress reporting.
1446
1447         * src/pkgunst.cpp (pkgRemove): Delay output of "removing package ..."
1448         message, until after pre-remove hooks have run; this ensures that any
1449         output from the pre-remove hook scripts appears in correct sequence.
1450
1451         * src/pkginst.cpp (pkgInstall): Likewise, for "installing package ..."
1452         message, in relation to pre-install hooks.
1453
1454 2012-04-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
1455
1456         mingw-get-0.5-beta-20120426-1 released.
1457
1458         * configure.ac (AC_INIT): Version number updated.
1459         * srcdist-doc/NEWS.in: Updated; bug-fix notifications added.
1460         * All files (r0-5-beta-20120426-1): Tag assigned.
1461
1462 2012-04-25  Keith Marshall  <keithmarshall@users.sourceforge.net>
1463
1464         Interim work-around for MinGW-Bug #3520864.
1465
1466         * src/pkgdeps.cpp (pkgXmlDocument::ResolveDependencies):
1467         [DEBUG_TRACE_DEPENDENCIES]: Add request flags to messages reporting
1468         the scheduling of installation activities.
1469
1470         * src/pkgexec.cpp (pkgXmlDocument::Schedule): Add temporary diagnostic
1471         hooks to confirm request flags; bracket them with #if 0 ... #endif.
1472         [ACTION_PRIMARY && pre-scheduled request]: Don't trash request flags
1473         when updating the pre-existing action item data.
1474
1475 2012-04-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
1476
1477         Fix MinGW-Bug #3520488
1478
1479         * src/pkgexec.cpp (action_code): Check for, and reject NULL pointer
1480         passed as action request string; also reject ambiguous abbreviations.
1481
1482         * src/climain.cpp (climain): Discriminate between NULL pointer and
1483         other forms of invalid action keyword matching failures.
1484
1485 2012-04-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1486
1487         mingw-get-0.5-beta-20120416-1 released.
1488
1489         * configure.ac (AC_INIT): Version number updated.
1490         (YEARS_OF_ISSUE): 2012 added.
1491
1492         * srcdist-doc/NEWS.in: Updated; release notes added.
1493         * All files (r0-5-beta-20120416-1): Tag assigned.
1494
1495 2012-04-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
1496
1497         Assign icon to temporary GUI executable file.
1498
1499         * icons/pkgicon.ico: New file, shamelessly copied from synaptic.
1500
1501         * configure.ac: Add identification for windres; propagate it to...
1502         * Makefile.in: ...here; use it to compile object from icon files...
1503         (srcdir/icons) [%.ico]: ...from this new vpath location.
1504         (gui.exe): Link to compiled icon's object file.
1505         (SRCDIST_SUBDIRS): Add icons directory.
1506
1507 2012-04-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
1508
1509         Ensure that package removal requests are correctly scheduled.
1510
1511         * src/pkgdeps.cpp (pkgXmlDocument::Schedule) [ACTION_REMOVE]: Schedule
1512         as a distinct case, when the installed version is not the most recent
1513         available release; consideration of this distinct case was previously
1514         erroneously overlooked.
1515
1516 2012-04-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
1517
1518         Correct scheduling of new prerequisites when upgrading.
1519
1520         * src/pkgdeps.cpp (pkgXmlDocument::ResolveDependencies):
1521         [ACTION_UPGRADE && ACTION_PRIMARY]: Don't exclude scheduling for this
1522         case of a prerequisite with no previously installed version; it may be
1523         a delegated primary requirement of a meta-package.
1524
1525 2012-04-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
1526
1527         Don't require subsystem within user specified version bounds.
1528
1529         * src/pkgdeps.cpp (pkgActionItem::ApplyBounds): Automatically consider
1530         "*" wild-card matches for subsystem, if user doesn't specify it.
1531
1532 2012-04-09  Charles Wilson  <mingw@cwilson.fastmail.fm>
1533
1534         Fix missing include.
1535
1536         * src/pkgdeps.cpp (pkgopts.h): Include unconditionally; do not rely...
1537         (debug.h) [DEBUG_TRACE_DYNAMIC]: ...on this, for indirect inclusion.
1538
1539 2012-04-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
1540
1541         Correct a srcdist package construction defect.
1542
1543         * Makefile.in (srcdist) [for SRCDIST_SUBDIRS]: Use...
1544         (mkinstalldirs): ...this, to create package image directories.
1545
1546 2012-04-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
1547
1548         Add scripting hooks to support creation of MS-Windows shortcuts.
1549
1550         * src/clistub.c (progname): New static variable with file scope; it
1551         replaces former automatic variable, of same name, in main() function.
1552         (set_script_hook): New static function; implement it, and call it...
1553         (main) [--desktop, --start-menu]: ...from here, to interpret these new
1554         command line options; they are propagated to scripts via...
1555         (MINGW_GET_DESKTOP_HOOK, MINGW_GET_START_MENU_HOOK): ...these new
1556         internally assigned environment variables.
1557         (help_text): Document --desktop and --start-menu.
1558
1559         * scripts/libexec/setup.lua scripts/libexec/wsh.lua: New lua module
1560         files; they implement a lua scripting API; they delegate requests to
1561         the Windows Scripting Host, via either of this pair of...
1562         * scripts/libexec/shlink.js: ...new script to create shortcuts, or...
1563         * scripts/libexec/unlink.js: ...its complement, to remove them.
1564         * Makefile.in (SRCDIST_SUBDIRS): Integrate them; enumerate them in...
1565         (scripts_srcdir, LIBEXEC_SCRIPTS): ...these new macros; use to...
1566         (install): ...install them.
1567
1568 2012-04-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
1569
1570         Initialise $LUA_PATH to locate mingw-get specific scripts.
1571
1572         * src/pkgexec.cpp (lua_path_init): New static inline function.
1573         (pkgXmlNode::DispatchScript): Call it on first time invocation, per...
1574         [lua_path_setup == false]: ...this static function local variable.
1575
1576 2012-04-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
1577
1578         Support installation of releases other than latest available.
1579
1580         * src/pkgbase.h (pkgActionItem::ApplyBounds): New method; declare it.
1581
1582         * src/pkgdeps.cpp (pkgActionItem::ApplyBounds): Implement it.
1583         (pkgXmlDocument::Schedule): Use it to interpret user specified version
1584         bounds, and apply them to scheduled action items.  Having used...
1585         (get_version_bounds): ...this new static inline function...
1586         ...to acquire any user specified version bounds, check that they can
1587         be honoured, before scheduling any action; delegate diagnostics to...
1588         (dmh_notify_no_match): ...this new local helper function, to report
1589         when they can't, and to indicate viable alternatives.
1590
1591 2012-03-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
1592
1593         Rework previously inadequate solution for MinGW-Bug #3424406
1594
1595         * src/pkgtask.h: Update copyright notice for current year.
1596         (ACTION_MAY_SELECT): New manifest constant for use as flag; define it.
1597         * src/pkgexec.cpp (pkgActionItem::SelectIfMostRecentFit): Assign it.
1598
1599         * src/pkgdeps.cpp (STATIC_INLINE): New macro; define it.
1600         (ACTION_RECURSIVE_REINSTALL, ACTION_RECURSIVE_UPGRADE):
1601         (ACTION_RECURSIVE_REPLACE): New action code constants; define them.
1602         (with_flags): Original macro deleted; replace it with...
1603         (with_request_flags): ...this new static inline function.
1604         (if_noref, if_match, if_alias, with_download, promote): New static
1605         inline functions; they replace original macros of the same names.
1606         (is_recursive_action): Function no longer used; delete it.
1607         (action_class): New static inline function; implement and use it...
1608         (pkgXmlDocument::ResolveDependencies): ...here, to identify scheduling
1609         requirements for packages which are already installed; depends on...
1610         (request_mode): ...this new automatic variable; it augments and...
1611         (recursive_mode): ...replaces this one; rename it accordingly.
1612         (viable): Automatic variable no longer used; delete it.
1613         [DEBUG_REQUEST & DEBUG_TRACE_DEPENDENCIES]: Emit notification for
1614         scheduled installation.
1615         (pkgXmlDocument::Schedule): Add an implied...
1616         (ACTION_REMOVE): ...when scheduling a reinstallation.
1617
1618 2012-03-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
1619
1620         Address reinstallation issues per MinGW-Bugs #3416013 and #3424406
1621
1622         * src/pkgexec.cpp (reinstall_action_scheduled): New inline function.
1623         (pkgActionItem::Execute): Use it to identify cases where...
1624         [--reinstall]: ...implicit package removal is required, and also to
1625         facilitate improved progress reporting in such cases.
1626
1627         * src/pkgdeps.cpp (is_recursive_action): New inline function.
1628         (pkgXmlDocument::ResolveDependencies): Use it in tandem with...
1629         (recursive_mode): ...this new automatic variable, so as to handle...
1630         [meta-package dependency]: ...implicit recursion, to extend the scope
1631         of the current action to the first level of non-meta dependency.
1632         [install --reinstall]: ...reinstall original version of nominated
1633         package, ignoring any available upgrade; extend scope of operation...
1634         [install --reinstall --recursive]: ...to all prerequisite packages.
1635         [upgrade --reinstall]: ...upgrade nominated package if possible; if no
1636         upgrade available, reinstall current version; extend scope...
1637         [upgrade --reinstall --recursive]: ...to all prerequisites.
1638         (pkgXmlDocument::Schedule): Partially revert 2012-03-05 change;
1639         reimplement selectively; never promote...
1640         [install, install --reinstall]: ...these operations to become...
1641         [upgrade]: ...this, even if available; issue diagnostic instead.
1642
1643 2012-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1644
1645         Rationalise implementation and usage of --all-related option.
1646
1647         * src/pkgopts.h: Update copyright notice; add year 2012.
1648         (OPTION_RECURSIVE, OPTION_ALL_RELATED): New constants; define them.
1649         (pkgOpts::SetFlags): New method; declare and implement it inline.
1650
1651         * src/clistub.c: Update copyright notice; add year 2012.
1652         (options) [recursive, all-related]: Redefine in terms of...
1653         (OPTION_RECURSIVE, OPTION_ALL_RELATED): ...these.
1654         (help_text): Update appropriately.
1655
1656         * src/climain.cpp: Update copyright notice; add year 2012.
1657         (climain) [all-related]: Associate its use exclusively with...
1658         (source, licence): ...these package processing operations; use...
1659         (pkgOptions::SetFlags): ...this, to propagate its effect.
1660
1661 2012-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
1662
1663         Don't report failed downloads in respect of virtual packages.
1664
1665         * src/pkginet.cpp (pkgActionItem::DownloadArchiveFiles): Clear...
1666         [ACTION_DOWNLOAD]: ...this status flag for any package identified as
1667         a meta-package; this corrects a further regression introduced with the
1668         2011-11-09 update, whereby pending download requests for such virtual
1669         packages were not cancelled, resulting in failure to install due to
1670         failed downloads, when no download is actually required.
1671
1672 2012-03-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
1673
1674         Don't suppress implied downloads for top-level actions.
1675
1676         * src/pkgdeps.cpp: Update copyright notice for new year.
1677         (pkgXmlDocument::Schedule) [!OPTION_PRINT_URIS]: Ensure that...
1678         [ACTION_DOWNLOAD]: ...this is enabled, when scheduling an install or
1679         an upgrade action for a package specified as a command line argument;
1680         this corrects a regression introduced on 2011-11-09, which resulted in
1681         ACTION_DOWNLOAD being enabled only for second tier dependent actions.
1682
1683 2012-02-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
1684
1685         Copyright notice updates.
1686
1687         * Makefile.in: Add 2012 as year of republication.
1688         * src/pkgbase.h src/sysroot.cpp src/pkgexec.cpp: Likewise.
1689         * src/rites.c src/pkginst.cpp src/pkgunst.cpp: Likewise.
1690
1691 2012-02-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
1692
1693         Fix ill-advised optimisation in $APPROOT environment lookup.
1694
1695         * src/rites.c (approot_path): Don't save result of getenv() lookup
1696         across calls; the environment may have been moved in the interim,
1697         making the original result invalid on any subsequent call.  Also,
1698         prefer MS-Windows style (with backslashes) for default.
1699         (pkgLastRites): Report full path name for lastrites.exe, on execl()
1700         failure, rather than only the path relative to $APPROOT.
1701
1702 2012-02-20  Keith Marshall  <keithmarshall@users.sourceforge.net>
1703
1704         Propagate sysroot path settings to scripts via the environment.
1705
1706         * src/pkgbase.h (PKG_PUTENV_FLAGS_MASK): New constant; it maps...
1707         (PKG_PUTENV_DIRSEP_MSW, PKG_PUTENV_DIRSEP_POSIX): ...these flags...
1708         (PKG_PUTENV_SCAN_VARNAME, PKG_PUTENV_NAME_TOUPPER): ...and these;
1709         they are used to specify optional behavioural choices for...
1710         (pkgPutEnv): ...this new function; declare it.
1711
1712         * src/sysroot.cpp (pkgPutEnv): Implement it.
1713         (pkgXmlDocument::LoadSystemMap): Use it to add $SUBSYSTEM_SYSROOT path
1714         specifications to the environment, for each named subsystem associated
1715         with the active system map.
1716
1717         * src/pkgexec.cpp (pkgActionItem::Execute): Invoke pkgPutEnv() prior
1718         to processing of each package install, upgrade, or remove action, so
1719         as to update environment variable $SYSROOT to represent the sysroot
1720         path for each package processed, during execution of script hooks.
1721
1722 2012-02-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
1723
1724         Implement hooks to support lua scripting interface.
1725
1726         * Makefile.in (LIBS): Add -llua.
1727
1728         * src/pkgbase.h (pkgXmlNode::InvokeScript): New method; declare it
1729         as private, and provide overloaded public inline API implementation.
1730         (pkgXmlNode::DispatchScript): New private method; declare it.
1731
1732         * src/pkgexec.cpp (pkgXmlNode::InvokeScript): Implement it.
1733         (pkgXmlNode::DispatchScript): Likewise; it directs InvokeScript to...
1734         (pkgInvokeScript): ...this new static function; implement it.
1735
1736         * src/pkginst.cpp (pkgInstall): Call InvokeScript as appropriate.
1737         * src/pkgunst.cpp (pkgRemove): Likewise.
1738
1739 2011-11-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
1740
1741         Avoid implicit cast warnings; reported by Robert Hartmann.
1742
1743         * src/dmh.h (DMH_BEGIN_DIGEST): Explicitly cast to uint16_t.
1744         (DMH_END_DIGEST): Likewise.
1745
1746 2011-11-09  Keith Marshall  <keithmarshall@users.sourceforge.net>
1747
1748         Avoid unnecessary downloads for already installed packages.
1749
1750         * src/pkginet.cpp (pkgActionItem::DownloadSingleArchive): Require
1751         external scheduling of ACTION_DOWNLOAD; cancel the scheduled request
1752         on completion, or when not required due to pre-existing local copy.
1753
1754         * src/climain.cpp (pkgActionItem::GetSourceArchive): Must always be
1755         prepared to download the associated archive; enable ACTION_DOWNLOAD.
1756
1757         * src/pkgexec.cpp (pkgActionItem::Schedule) [OPTION_REINSTALL]:
1758         May need to download the archive, even when the requested package was
1759         previously installed; schedule ACTION_DOWNLOAD to enable this.
1760
1761         * src/pkgdeps.cpp (promote): Macro redefined in terms of...
1762         (with_flags, with_download): ...these new macros; implement and...
1763         (pkgXmlDocument::ResolveDependencies): ...use them to enable/schedule
1764         ACTION_DOWNLOAD only when expected that it may be necessary.
1765
1766 2011-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
1767
1768         Fix packaging anomalies for source and licence distributions.
1769
1770         * Makefile.in (licdist): Link README from ${CURDIR}, not from '..'.
1771         (srcdist): Explicitly link pkginfo.c from ${CURDIR} to src/pkginfo,
1772         rather than as implied prerequisite; this avoids a bogus attempt to
1773         link srcdist-doc into src/pkginfo.
1774
1775 2011-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
1776
1777         Bump version number for subsequent CVS snapshots.
1778
1779         * configure.ac (AC_INIT): Set version to 0.4-alpha-1.1cvs
1780
1781 2011-11-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
1782
1783         mingw-get-0.4-mingw32-alpha-1 released.
1784
1785         * configure.ac (AC_INIT): Adjust version number.
1786         * srcdist-doc/NEWS.in: Updated; document new features and bugs fixed.
1787         * All files (r0-4-alpha-1): Tag assigned.
1788
1789 2011-11-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1790
1791         Don't upgrade installed DLL components to incompatible version.
1792         Provide clearer diagnostics for failed requests on implied packages.
1793
1794         * src/pkgdeps.cpp (is_abi_compatible): New static inline function.
1795         (pkgXmlDocument::ResolveDependencies) [is_installed]: Use it.
1796         (pkgXmlDocument::ResolveDependencies) [DEBUG_TRACE_DEPENDENCIES]:
1797         Clean up and improve diagnostic message content and formatting.
1798         (pkgXmlDocument::Schedule) [(upgrade || remove) && ! installed]:
1799         Downgrade diagnostic to WARNING, for implicitly specified component
1800         packages; provide additional explanatory diagnostics.
1801
1802         * src/pkgspec.cpp (pkgSpecs::VersionComparator):
1803         * src/pkgexec.cpp (pkgActionItem::SelectIfMostRecentFit):
1804         [DEBUG_TRACE_DEPENDENCIES]: Eliminate diagnostic noise.
1805
1806 2011-10-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
1807
1808         Fix --download-only vs. --reinstall conflict.
1809
1810         * src/pkgexec.cpp (pkgActionItem::Execute) [OPTION_DOWNLOAD_ONLY]:
1811         Test for explicit inequality, rather than equality to zero; since the
1812         2011-08-30 update, which made --download-only also imply --reinstall,
1813         it will test as non-zero when --reinstall is specified, even though
1814         --download-only is not.
1815
1816 2011-10-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
1817
1818         Add support for non-specific upgrade of all installed packages.
1819
1820         * src/pkgbase.h (pkgXmlDocument::RescheduleInstalledPackages):
1821         New public method; declare it.
1822
1823         * src/pkgdeps.cpp (pkgXmlDocument::RescheduleInstalledPackages):
1824         Implement it.
1825
1826         * src/climain.cpp (climain) [ACTION_UPGRADE && argc < 2]: Invoke
1827         pkgXmlDocument::RescheduleInstalledPackages() to schedule the upgrade
1828         request for all packages currently registered as installed.
1829
1830 2011-10-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
1831
1832         Implement "source" and "licence" operations.
1833
1834         * src/pkgopts.h (OPTION_ALL_DEPS): New option code; define it.
1835         * src/clistub.c (main): Associate it with...
1836         (all-related, recursive): ...these synonymous option names...
1837         (options): ...defined within this local structured array.
1838         (help_text): Document them; also document "source" and "licence" as
1839         new operations which may be specified on the command line.
1840
1841         * src/pkgtask.h (action_source, action_licence): Enumerate them.
1842         (ACTION_SOURCE, ACTION_LICENCE): Define their manifest values, and...
1843         * src/pkgexec.cpp (action_name): ...associate with operation names.
1844
1845         * src/pkgbase.h (pkgActionItem::GetScheduledSourceArchives):
1846         (pkgActionItem::GetSourceArchive, pkgXmlDocument::GetSourceArchive):
1847         New public methods; declare them for external implementation.
1848         (pkgXmlDocument::GetScheduledSourceArchives): New public method;
1849         implement it as inline.
1850
1851         * src/climain.cpp (pkgProcessedArchives): New pointer to stack of...
1852         (pkgArchiveNameList): ...this new locally defined class; implement it.
1853         (pkgActionItem::GetSourceArchive, pkgXmlDocument::GetSourceArchive):
1854         (pkgActionItem::GetScheduledSourceArchives): Implement them.
1855         (climain): Add invocation hooks.
1856
1857 2011-10-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
1858
1859         Establish mapping from release tarname to source tarname.
1860
1861         * src/pkgreqs.cpp (inherited_requirement): New inline function.
1862         (requirement): Use it; adapt to propagate release archive format and
1863         compression type fields, in addition to version fields, when resolving
1864         "%" wildcard matches within the template for the resultant tarname.
1865         (pkgAssociateName): New public function; implement it for use by...
1866         * src/pkgname.cpp (pkgResolvedName): ...this new inline function.
1867         (pkgXmlNode::SourceArchiveName): Use it; adapt to accept a category
1868         selector, so it may resolve source or licence tarnames on demand.
1869
1870         * src/pkgbase.h (pkgXmlNode::SourceArchiveName): Modify declaration;
1871         add category selector argument to support source/licence choice.
1872
1873 2011-10-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1874
1875         Facilitate downloads using diverse cache directories.
1876
1877         * src/pkgbase.h (pkgActionItem::DownloadSingleArchive): New private
1878         method; declare it; it handles the download for a single named archive
1879         file, and stores it in a specifed cache directory.
1880
1881         * src/pkginet.cpp (pkgActionItem::DownloadSingleArchive): Implement
1882         it; factor its code from the original implementation within...
1883         (pkgActionItem::DownloadArchiveFiles): ...this; adapt to use it.
1884
1885 2011-10-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
1886
1887         Establish cache directory for source archive downloads.
1888
1889         * src/mkpath.h (pkgSourceArchivePath): New function; declare it.
1890         * src/mkpath.c (pkgSourceArchivePath): Implement it.
1891
1892 2011-08-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
1893
1894         Support archive extraction to arbitrary destination without install.
1895
1896         * src/pkgproc.h (pkgArchiveProcessor::ExtractFile): New virtual
1897         helper method for use, as core helper, by derived classes; declare it.
1898         (pkgArchiveProcessor::CreateExtractionDirectory): Likewise.
1899         (pkgTarArchiveProcessor): Declare overloaded default constructor.
1900         (pkgTarArchiveExtractor): New class definition; it is derived from
1901         pkgTarArchiveProcessor.
1902
1903         * src/tarproc.cpp (pkgArchiveProcessor::ExtractFile): Implement it.
1904         (pkgArchiveProcessor::CreateExtractionDirectory): Likewise.
1905         (pkgTarArchiveExtractor): Implement constructor, together with...
1906         (pkgTarArchiveExtractor::ProcessDirectory): ...this method, and also...
1907         (pkgTarArchiveExtractor::ProcessDataStream): ...this one; these are
1908         declared as abstract, in the pkgTarArchiveProcessor base class.
1909         (pkgTarArchiveInstaller::ProcessDirectory): Simplify; it now delegates
1910         directory creation to pkgArchiveProcessor::CreateExtractionDirectory.
1911         (pkgTarArchiveInstaller::ProcessDataStream): Simplify; delegate file
1912         handling to pkgArchiveProcessor::ExtractFile, as appropriate.
1913
1914 2011-08-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
1915
1916         Make --download-only and --print-uris imply --reinstall.
1917
1918         * src/pkgopts.h (OPTION_PRINT_URIS): Adjust definition.
1919         (OPTION_DNLOAD_ONLY, OPTION_DOWNLOAD_ONLY): Likewise.
1920
1921 2011-08-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
1922
1923         Implement --download-only and --print-uris options.
1924
1925         * src/pkgopts.h (OPTION_DOWNLOAD_ONLY, OPTION_PRINT_URIS):
1926         New manifest constants, identifying flag bits; define them.
1927         (OPTION_DNLOAD_ONLY): Likewise; an alias for OPTION_DOWNLOAD_ONLY.
1928
1929         * src/pkgbase.h (pkgActionItem::PrintURI): New private method.
1930         * src/pkginet.cpp: Implement it.
1931
1932         * src/clistub.c (options): Add "download-only" and "print-uris".
1933         (help_text): Document them.
1934         * src/pkgexec.cpp (pkgActionItem::Execute): Process them.
1935
1936 2011-07-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1937
1938         mingw-get-0.3-mingw32-alpha-2.1 released.
1939
1940         * configure.ac (AC_INIT): Adjust version number.
1941         * srcdist-doc/NEWS.in: Updated; document bugs fixed.
1942         * All files (r0-3-alpha-2-1): Tag assigned.
1943
1944 2011-07-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
1945
1946         Adopt tar.xz as default package archive format.
1947
1948         * Makefile.in (TARZIP, TAREXT): New macros; define them.
1949         (bindist, licdist, srcdist): Use them in place of hardcoded tar.gz
1950         (maintainer-clean): Expunge tar files of any compression format.
1951
1952 2011-07-27  Keith Marshall  <keithmarshall@users.sourceforge.net>
1953
1954         Correct handling of release status in requirements specifications.
1955
1956         * src/debug.h (DEBUG_TRACE_DEPENDENCIES): New tracing hook; define it.
1957         * src/pkgexec.cpp (pkgActionItem::SelectIfMostRecentFit): Use it; add
1958         function entry/exit tracing report hooks.
1959         * src/pkgdeps.cpp (pkgXmlDocument::ResolveDependencies): Likewise;
1960         also add internal trace point reporting, which may also require...
1961         (show_required): ...this new static inline DEBUG_INVOKED function.
1962
1963         * src/pkgreqs.cpp (requirement): Propagate release status and release
1964         reference index fields from requirer, when package version requirement
1965         is specified by a '%' token, and no explicit release status override
1966         is included in the requirement specification.
1967
1968         * src/pkgspec.cpp (is_wildcard_spec): New static inline helper.
1969         (pkgSpecs::VersionComparator): Use it to identify any package version
1970         specification which may require the extension of a wildcard match, to
1971         span the package version and release status fields; also add tracing
1972         hooks, triggered on DEBUG_TRACE_DEPENDENCIES, to facilitate debugging.
1973
1974 2011-06-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
1975
1976         Avoid accidental RCS keyword substitutions.
1977
1978         * Makefile.in (DOLLAR): New macro; define it.
1979         (readme.txt, readme.txt.in): Use it, where unexpanded RCS Id keyword
1980         matching is intended.
1981
1982 2011-06-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
1983
1984         Mercurial support revisited.
1985
1986         * .cvsignore (.hgtags): Add to CVS untracked list.
1987
1988 2011-06-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
1989
1990         Update readme.txt ID tag-line to track NEWS rather than README.
1991
1992         * Makefile.in (readme.txt.in): New rule; implement it.
1993         (readme.txt.tag): Likewise; this implements the tag-line tracking.
1994         (readme.txt): Rule redefined in terms of the preceding pair.
1995
1996 2011-06-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
1997
1998         mingw-get-0.3-mingw32-alpha-2 released.
1999
2000         * configure.ac (AC_INIT): Adjust version number.
2001         * srcdist-doc/NEWS.in: Updated; document new features and bugs fixed.
2002         * All files (r0-3-alpha-2): Tag assigned.
2003
2004 2011-06-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
2005
2006         Add internal documentation for --reinstall option.
2007
2008         * src/clistub.c (help_text): Add description for "--reinstall".
2009
2010 2011-06-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
2011
2012         Support use of Mercurial within a CVS working copy.
2013
2014         * .cvsignore (.hg, .hgignore): Don't have CVS track these.
2015
2016 2011-06-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
2017
2018         Implement --reinstall option.
2019
2020         * src/pkgopts.h (OPTION_REINSTALL): New macro; define it.
2021         (OPTION_GENERIC, OPTION_SHIFT_MASK): Likewise.
2022         (OPTION_EXTRA_FLAGS): New field; declare it.
2023
2024         * src/clistub.c (options): Add "reinstall".
2025         (OPTION_GENERIC): Use it where appropriate; within its scope...
2026         (OPTION_STORAGE_CLASS): Improve descriptive comments; add handling for
2027         default case of flag type options requiring an alignment shift.
2028
2029         * src/pkgexec.cpp: Remove previous "always reinstall" kludge.
2030         (pkgOptionSelected, PKG_OPTION_REINSTALL): Remove obsolete macros.
2031         (pkgActionItem::Execute): Check for "upgrade" request on any package
2032         which is already up to date; report this state, otherwise...
2033         [OPTION_REINSTALL || ACTION_UPGRADE]: Mark package as "removed", to
2034         avoid bail-out on "package already installed", when calling...
2035         (pkgInstall): ...this.
2036
2037 2011-06-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2038
2039         Don't require -vv to report progress of update operation.
2040
2041         * src/pkgbind.cpp (pkgRepository::GetPackageList): Eliminate all
2042         basename() calls; `dname' already tells us what it should return.
2043         [update]: Report progress, irrespective of verbosity setting.
2044
2045 2011-06-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
2046
2047         Fix MinGW-Bug #3313806.
2048
2049         * src/pkginfo/pkginfo.l (CMS_KEYWORDS): Do not match them within the
2050         PACKAGE_NAME field; this avoids misinterpretation as a release status
2051         qualifier when intended as part of the package name, as in msys-cvs.
2052
2053 2011-06-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
2054
2055         Provisional correction for MinGW-Bug #3309438.
2056
2057         * src/debug.h [DEBUGLEVEL == 0]: Provide defaults for...
2058         (DEBUG_ENABLED, DEBUG_REQUEST): ...these macros.
2059
2060         * src/tarproc.cpp (pkgTarArchiveInstaller::ProcessDirectory):
2061         (pkgTarArchiveInstaller::ProcessDataStream): Use DEBUG_REQUEST to
2062         enable runtime trace activation for previous compile time choices.
2063
2064 2011-05-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
2065
2066         mingw-get-0.3-mingw32-alpha-1 released.
2067
2068         * configure.ac (AC_INIT): Adjust version number.
2069         * srcdist-doc/NEWS.in: Updated; document new features.
2070         * All files (r0-3-alpha-1): Tag assigned.
2071
2072 2011-05-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
2073
2074         Support assignment of DEBUGLEVEL at configure time.
2075
2076         * configure.ac (DEBUGLEVEL): Declare as a precious variable, using
2077         AC_ARG_VAR; also declare with AC_SUBST, to ensure it is initialised.
2078
2079         * Makefile.in (DEBUGLEVEL): Let AC_SUBST assign it.
2080
2081 2011-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
2082
2083         Work around bugs in MinGW and GNU getopt_long_only() implementations.
2084
2085         * src/getopt.c: New file; this is a free-standing replacement for any
2086         implementation provided by system libraries.  We will always use this
2087         to ensure correct operation irrespective of system bugs; (different
2088         bug manifestations have been identified in the stock MinGW and GNU
2089         implementations).
2090
2091         * Makefile.in (mingw-get.EXEEXT): Use it.
2092
2093         * src/clistub.c (options): Remove redundant declaration of `-v' as a
2094         long form option.
2095
2096 2011-05-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
2097
2098         Implement user selection of traceable features at run-time.
2099
2100         * src.pkgopts.h (OPTION_VERBOSE_MAX): New macro; define it.
2101
2102         * src/debug.h (DEBUG_ENABLED): New macro; define it.
2103         (DEBUG_REQUEST, DEBUG_REQUEST_FLAGS, DEBUG_TRACE_DYNAMIC): Likewise.
2104
2105         * src/clistub.c (main) [--trace]: Don't make it available unless...
2106         [DEBUG_ENABLED(DEBUG_TRACE_DYNAMIC)]: ...this is set (at compile-time).
2107         [--verbose]: Limit to OPTION_VERBOSE_MAX, using...
2108         (atmost): ...this new macro; define it.
2109         (options): Declare `-v' as both long and short form, pending bug fix
2110         in MinGW's getopt_long_only() implementation.
2111
2112         * src/pkginet.cpp (pkgInternetAgent::OpenURL): Use DEBUG_REQUEST.
2113         (pkgInternetLzmaStreamingAgent::TransferData): Likewise.
2114         (pkgInternetStreamingAgent::TransferData): Likewise.
2115         (pkgInternetStreamingAgent::Get): Likewise.
2116
2117         * src/pkgunst.cpp (pkgActionItem::SetAuthorities): Use DEBUG_REQUEST.
2118         (pkg_rmdir, pkg_unlink): Likewise.
2119
2120         * src/sysroot.cpp (pkgXmlDocument::LoadSystemMap): Use DEBUG_REQUEST.
2121
2122 2011-05-21  Keith Marshall  <keithmarshall@users.sourceforge.net>
2123
2124         Implement protocol for processing global program options.
2125
2126         * src/pkgopts.h: New file.
2127
2128         * src/climain.cpp (cli_setopts): New function; implement it.
2129         (pkgOptions): Likewise.
2130
2131         * src/clistub.c (xatoi): New function; implement it.
2132         (cli_setargv): New inline helper function; implement it.
2133         (main): Use it.  Also incorporate implementation of...
2134         (parsed_options): New structure; it accommodates...
2135         (verbose, trace): New options; interpret them, and...
2136         (help_text): ...document them.
2137
2138         * src/pkgbind.cpp (pkgRepository::GetPackageList): Make catalogue
2139         loading notifications and progress reports conditional on...
2140         [OPTION_VERBOSE > 1]: ...this.
2141
2142 2011-05-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
2143
2144         Augment known development status keywords and accept CMS labels.
2145
2146         * src/pkginfo/pkginfo.l (CMS_KEYWORDS): Define new provisional list;
2147         add transitional state scanner rule and code to interpret them.
2148         (STATUS_KEYWORDS): Add "pre" and "rc" to existing list; modify scanner
2149         code to maintain consistency with CMS_KEYWORDS processing; also extend
2150         this coding strategy to other rules.
2151
2152         * src/pkginfo/driver.c (spec): Strip initial '$' token from displayed
2153         field values; (we expect it only for a CMS_KEYWORDS field value).
2154
2155         * src/pkgreqs.cpp (pkgSpecs::GetTarName): Remove any initial '$' token
2156         from PACKAGE_RELEASE_STATUS field, when performing reverse of tarname
2157         decomposition transformation.
2158
2159 2011-05-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
2160
2161         Correct omission from 2011-02-18 commit.
2162
2163         * src/tarproc.cpp (Copyright Notice): Add 2011 as year of release.
2164
2165 2011-05-14  Keith Marshall  <keithmarshall@users.sourceforge.net>
2166
2167         mingw-get-0.2-mingw32-alpha-4 released.
2168
2169         * configure.ac (AC_INIT): Adjust version number.
2170         * srcdist-doc/NEWS.in: Updated; add bug-fix/feature descriptions.
2171         * All files (r0-2-alpha-4): Tag assigned.
2172
2173 2011-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2174
2175         Fix MinGW-Bug #3297660 (reported by Chris Sutcliffe).
2176
2177         * src/pkgbase.h (pkgActionItem::SetAuthorities): Return unsigned long.
2178         (pkgActionItem::HasAttribute): New inline method; implement it.
2179
2180         * src/pkgtask.h (ACTION_DOWNLOAD, ACTION_DOWNLOAD_OK): New macros.
2181
2182         * src/pkginet.cpp (pkgActionItem::DownloadArchiveFiles):
2183         [ACTION_DOWNLOAD]: Assert it at commencement of each package download;
2184         clear it again, on successful download completion.
2185
2186         * src/pkginst.cpp (pkgtask.h): #include it.
2187         (pkgInstall) [ACTION_DOWNLOAD]: Don't proceed with installation when
2188         set; this indicates failed download; diagnose it.
2189
2190         * src/pkgunst.cpp (pkgRemove) [ACTION_DOWNLOAD && ACTION_UPGRADE]:
2191         Don't proceed with pre-emptive removal when both set; this indicates
2192         failed download of replacement package; diagnose it.
2193
2194 2011-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2195
2196         Fix MinGW-Bug #3295526 (reported by Charles Wilson).
2197
2198         * src/pkgunst.cpp (sys/stat.h): #include it; we need it for...
2199         (pkg_unlink): ...chmod( file, S_IWRITE ), emulating `rm -f' semantics.
2200
2201 2011-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2202
2203         Diagnose and aggressively retry failed download connections.
2204
2205         * src/debug.h (DEBUG_TRACE_INTERNET_REQUESTS): New macro; define it.
2206
2207         * src/pkginet.cpp (debug.h): #include it.
2208         (pkgDownloadMeter): New abstract class; declare it and implement its
2209         default (non-abstract) data and methods; derive...
2210         (pkgDownloadMeterTTY): ...this new class from it; implement it...
2211         (pkgInternetStreamingAgent::Get): ...and instantiate it (naively for
2212         now), as associated pkgDownloadMeter object; add tracing diagnostic.
2213         (pkgInternetAgent::OpenURL): Don't inline it; move implementation out
2214         of line; add retry loops to aggressively retry failed connections.
2215         (pkgInternetAgent::QueryContentLength): New method; implement it.
2216         (pkgInternetStreamingAgent::TransferData): Avoid Microsoft specific
2217         data type `DWORD'; prefer equivalent standard `unsigned long'.  Add
2218         tracing diagnostic.  Remove progress diagnostic; replace it with an
2219         `Update' request to associated pkgDownloadMeter.
2220         (pkgInternetLzmaStreamingAgent::GetRawData): Avoid `DWORD' data type.
2221         (pkgInternetLzmaStreamingAgent::TransferData): Likewise; add tracing
2222         diagnostic on failure.
2223
2224 2011-03-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
2225
2226         mingw-get-0.2-mingw32-alpha-3 released.
2227
2228         * configure.ac (AC_INIT): Adjust version number.
2229         * srcdist-doc/NEWS.in: Updated; add bug-fix description.
2230         * All files (r0-2-alpha-3): Tag assigned.
2231
2232 2011-03-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
2233
2234         Provisional handling for http proxy authentication.
2235         (Adapted from patch by Scott Michel <pingbak@users.sourceforge.net>)
2236         (ref: MinGW-Patch #3158453)
2237
2238         * src/pkginet.cpp: Several format/layout adjustments; add comments.
2239         Eliminate several instances of Microsoft specific typedef nastiness.
2240         (dmh_dialogue_context): New macro; kludge definition to support...
2241         (pkgInternetAgent::OpenURL) [HTTP_STATUS_PROXY_AUTH_REQ]: Detect
2242         and handle it.
2243
2244 2011-03-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
2245
2246         Expand macros in path names for files and directories to be removed.
2247
2248         * src/pkgunst.cpp (pkgRemove): Format sysroot as a template, so...
2249         (pkg_rmdir, pkg_unlink): ...are able to use mkpath() to construct the
2250         full path name for each file or directory to be removed.
2251
2252 2011-03-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
2253
2254         Correct defective activation logic for some debugging hooks.
2255
2256         * src/pkgunst.cpp (pkg_rmdir, pkg_unlink) [DEBUG_INVOKE_IF]:
2257         (pkgActionItem::SetAuthorities) [DEBUG_INVOKE_IF]: Use bit-wise `&'
2258         operator, not `&&', to evaluate DEBUGLEVEL state.
2259
2260 2011-03-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
2261
2262         Avoid Unicode hyphens in generated ASCII document files.
2263
2264         * Makefile.in (NROFF): New macro; define it to invoke `nroff -Tascii'.
2265         (%.dist, readme.txt): Use it to ensure that output is pure ASCII.
2266
2267 2011-03-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
2268
2269         mingw-get-0.2-mingw32-alpha-2 released.
2270
2271         * configure.ac (AC_INIT): Adjust version number.
2272         * srcdist-doc/NEWS.in: Updated; add bug-fix description.
2273         * All files (r0-2-alpha-2): Tag assigned.
2274
2275 2011-03-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
2276
2277         Fix MinGW-Bug 3212246.
2278
2279         * src/keyword.c (has_keyword): Avoid incrementing the comparison
2280         pointers when a significant character in one string is not matched in
2281         the other; previously the pointers were left pointing one character to
2282         the right of the mismatch, and this was overlooked if the mismatch
2283         occurred at the rightmost character in both strings.
2284
2285 2011-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2286
2287         mingw-get-0.2-mingw32-alpha-1 released.
2288
2289         * configure.ac (AC_INIT): Set version number; correct capitalisation
2290         in URI reference to bug reporting instructions.
2291
2292         * srcdist-doc/NEWS.in: Confirm release date.
2293         [bug reporting]: Remove redundant paragraph; the information is
2294         provided, via reference to mingw.org. in the README and INSTALL files.
2295
2296         * All files (r0-2-alpha-1): Tag assigned.
2297
2298 2011-03-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2299
2300         * srcdist-doc/INSTALL.in [building]: Qualify liblzma.a requirement;
2301         add earliest acceptable snapshot release date.
2302
2303 2011-03-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
2304
2305         Remove unused 7zip and boost source code from CVS trunk.
2306
2307         * 7z: Directory and all content removed.
2308         * boost: Likewise.
2309
2310 2011-03-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
2311
2312         Refactor and update existing installation and usage instructions.
2313
2314         * src/clistub.c (help_text): Updated.
2315
2316         * srcdist-doc: New directory.
2317
2318         * README: Deleted; its content refactored into...
2319         * srcdist-doc/README.in srcdist-doc/INSTALL.in srcdist-doc/NEWS.in:
2320         ...these new template files, updated for current development state.
2321
2322         * srcdist-doc/gendoc.sed.in: New sed script; it directs formatting of
2323         generated text files derived from the srcdist-doc templates.
2324
2325         * Makefile.in (SRCDIST_SUBDIRS): Add srcdist-doc.
2326         (SRCDIST_FILES): Add NEWS and INSTALL.
2327         (srcdist-doc): New build rule to generate README, NEWS and INSTALL.
2328         (srcdist, licdist): Adjust path to locate them.
2329         (readme.txt): New build rule to generate on-line package description.
2330         (dist): Require it.
2331         (distclean): Don't remove Makefile...
2332         (maintainer-clean): ...but do it here instead.  Also remove generated
2333         README, NEWS and INSTALL, the autom4te cache, and all distributable
2334         zip files, in addition to tarballs, for the current version.
2335
2336 2011-02-27  Keith Marshall  <keithmarshall@users.sourceforge.net>
2337
2338         Initial implementation for "remove" feature.
2339
2340         * src/pkgbase.h: Update copyright notice; add current year.
2341         (pkgActionItem::SetPrimary): New inline public method; declare it.
2342         (pkgActionItem::SetAuthorities): New public method; declare it.
2343
2344         * src/pkgtask.h (ACTION_PREFLIGHT, ACTION_REMOVE_OK): New defines.
2345
2346         * src/pkgproc.h: Update copyright notice; add current year.
2347         (pkgManifest::GetSysRootReference): New public method; declare it.
2348         (pkgManifest::GetRoot): New inline method; declare and implement it.
2349         (pkgManifest::DetachSysRoot): Argument type changed to const char*.
2350         (pkgRemove): New extern "C" function; declare it.
2351
2352         * src/pkgexec.cpp (pkgActionItem::SetPrimary): Implement it, and...
2353         (pkgXmlDocument::Schedule): ...use it to promote actions on all user
2354         specified packages, as listed on the command line, to primary status.
2355         (pkgActionItem::Execute): Repeatedly invoke...
2356         (pkgActionItem::SetAuthorities): ...this; incorporate call of...
2357         (pkgActionItem::DownloadArchiveFiles): ...this, within the loop, so
2358         that we retry failed downloads at least a second time.
2359         [ACTION_REMOVE]: Delete stub; invoke pkgRemove().
2360
2361         * src/pkgunst.cpp: New file.
2362         (pkgActionItem::SetAuthorities): Implement it.
2363         (pkgManifest::GetSysRootReference): Implement it.
2364         (pkgManifest::DetachSysRoot): Implement it per new declaration.
2365         (pkgRemove): Implement it.
2366
2367         * Makefile.in (CORE_DLL_OBJECTS): Add pkgunst.OBJEXT
2368
2369 2011-02-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
2370
2371         Work-around for improper stderr buffering in MSYS mintty and rxvt.
2372         (Merged from r0-1-alpha-5 branch).
2373
2374         * src/dmh.cpp (dmhTypeTTY::emit_and_flush): New private method.
2375         (dmhTypeTTY::printf, dmhTypeTTY::notify): Use it to force an fflush()
2376         after each output record is written to stderr.
2377
2378         * README: Update as appropriate.
2379
2380 2011-02-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
2381
2382         Tidy up some debugging hooks.
2383
2384         * src/debug.h (DEBUG_INVOKED): New macro; define it.
2385         (DEBUG_INVOKE_IF): Likewise; this takes arguments providing for
2386         conditional invocation of code when DEBUGLEVEL is non-zero; make it
2387         expand to nothing, when DEBUGLEVEL is zero.
2388         (DEBUG_TRACE_INIT): Redefined macro; value changed to 0x0010.
2389         (DEBUG_TRACE_TRANSACTIONS, DEBUG_SUPPRESS_INSTALLATION):
2390         (DEBUG_UPDATE_INVENTORY): New macros; define them.
2391
2392         * src/tarproc.cpp (pkgTarArchiveInstaller::ProcessDirectory):
2393         (pkgTarArchiveInstaller::ProcessDataStream): Refactor debugging hooks;
2394         implement them in terms of DEBUGLEVEL, with reference to...
2395         (DEBUG_SUPPRESS_INSTALLATION, DEBUG_UPDATE_INVENTORY): ...these.
2396
2397 2011-02-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
2398
2399         Make package version comparisons more robust.
2400
2401         Fixes an issue reported by Chris Sutcliffe: previously, version
2402         comparisons were evaluated solely on the basis of differences in the
2403         package version field itself.  Henceforth, if this field compares as
2404         equal, then the comparison is extended to also consider differences
2405         between development phase qualifiers, and, if these too compare as
2406         equal, to differences in the target subsystem version fields.
2407
2408         * src/pkginfo/pkginfo.h (pkgSpecs::VersionComparator): New private
2409         method; declare it.
2410
2411         * src/pkgspec.cpp (pkgSpecs::VersionComparator): Implement it.
2412         (pkgSpecs::operator<, pkgSpecs::operator<=, pkgSpecs::operator>=):
2413         (pkgSpecs::operator>): Use it, replacing...
2414         (version): ...this static function; now unreferenced; delete it.
2415
2416         * src/vercmp.h (pkgVersionInfo::pkgVersionInfo): Make it inline; it
2417         now delegates the entire class construction operation to...
2418         (pkgVersionInfo::Parse): ...this new private method; declare it.  This
2419         is also used to facilitate implementation of...
2420         (pkgVersionInfo::Reset): ...this new inline method, also requiring...
2421         (pkgVersionInfo::FreeAll): ...this new inline method; also now used by
2422         the class destructor, it encapsulates separate calls to...
2423         (pkgVersionInfo::Free): ...this original inline method, renamed...
2424         (pkgVersionInfo::FreeEntry): ...as this.
2425
2426         * src/vercmp.cpp (pkgVersionInfo::Parse): Implement it.
2427
2428 2011-02-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
2429
2430         Merge from mingw-get-0.1-mingw32-alpha-5 bug-fix branch.
2431
2432         * src/pkgdeps.cpp (pkgXmlDocument::ResolveDependencies): Promote
2433         "install" action on new prerequisites, where a previously uninstalled
2434         package is required to satisfy any "upgrade" dependency.
2435
2436         * src/pkgexec.cpp (pkgActionList::Execute): Don't make misleading
2437         claims concerning package removal.
2438
2439         * src/pkgtask.h (STRICTLY_GT, STRICTLY_LT, ACTION_PRIMARY): Add one
2440         level of parentheses around defining expressions.
2441
2442 2011-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
2443
2444         Publish mingw-get-0.0-mingw32-alpha-5.1 bug-fix release.
2445
2446         * README: Updated to reflect changes.
2447
2448 2011-02-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
2449
2450         Improve diagnostics for failed GUI invocation.
2451
2452         * src/guimain.cpp: New file; currently delivers only a diagnostic
2453         stub, provided by Sze Howe Koh <axfangli@users.sourceforge.net>, to
2454         pop-up a message block explaining why GUI mode cannot be invoked.
2455
2456         * Makefile.in (GUI_LDFLAGS): New macro; it is required by...
2457         (gui$EXEEXT): ...this new build rule; add to prerequisites of...
2458         (all): ...this [default] build rule; redefine this in terms of...
2459         (BIN_PROGRAMS, LIBEXEC_PROGRAMS, LIBEXEC_DATA): ...these new macros;
2460         define them, and also use them as loop iterator objectives for...
2461         (install, install_strip): ...these; also schedule them...
2462         (clean): ...for removal by this.
2463
2464         * src/clistub.c (Copyright): Add new year.
2465         (main): Amend error message, if gui$EXEEXT doesn't start; make it
2466         more intelligible to normal users.
2467
2468 2011-02-07  Keith Marshall  <keithmarshall@users.sourceforge.net>
2469
2470         Correct omissions from packaged source tarball.
2471
2472         * Makefile.in (Copyright): Add new year.
2473         (SRCDIST_FILES): Add aclocal.m4
2474         (SRCDIST_SUBDIRS): Add m4
2475
2476 2011-01-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
2477
2478         Reduce path names to base names, in some diagnostic message contexts.
2479
2480         * src/climain.cpp: Update copyright notice for new year.
2481         (climain): Extract base name from argv[0], to pass as program name tag
2482         in initialisation of diagnostic message handler.
2483
2484         * src/dmh.h, src/dmh.cpp: Update copyright notices; make some layout
2485         adjustments, for more consistent formatting style.
2486
2487         * src/pkgbind.cpp: Update copyright notice.
2488         (pkgRepository::GetPackageList): Reduce path names for catalogue files
2489         to their base names, when reporting them in diagnostic messages.
2490
2491 2011-01-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
2492
2493         Avoid a potential out-of-range action name look-up.
2494
2495         * src/pkgdeps.cpp: Update copyright notice for new year.
2496         (pkgXmlDocument::Schedule): Mask action code with ACTION_MASK, to
2497         determine correct action name when diagnosing uninstalled package.
2498
2499 2011-01-03  Keith Marshall  <keithmarshall@users.sourceforge.net>
2500
2501         Make "install" and "remove" notifications symmetric.
2502
2503         * configure.ac (AC_INIT): Bump version to "0.1-alpha-6cvs".
2504         (YEARS_OF_ISSUE): Add new year.
2505         
2506         * src/pkginst.cpp: Update copyright notice for new year.
2507         (pkgInstall): Add notification for package being installed.
2508
2509 2010-12-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
2510
2511         Add preliminary CLI support for "list" and "show" actions.
2512
2513         * src/pkgtask.h (ACTION_PRIMARY): New manifest constant; define it.
2514         (ACTION_LIST, ACTION_SHOW): Likewise; cast to enumerated values for...
2515         (action_list, action_show): ...these; define them.
2516
2517         * src/pkgexec.cpp (action_name): Add defining text for...
2518         (action_list, action_show): ...these.
2519
2520         * src/climain.cpp: Partially revert 2010-11-01 change...
2521         (climain) [! ACTION_UPDATE]: Reinstate original "if" block, moving
2522         the "switch" block within it, but without the ACTION_UPDATE case.
2523         [ACTION_LIST, ACTION_SHOW]: New "switch" cases; they invoke...
2524         (pkgXmlDocument::DisplayPackageInfo): ...this new method.
2525
2526         * src/pkgbase.h (pkgXmlDocument::DisplayPackageInfo): Declare it.
2527         (pkgActionItem::ConfirmInstallationStatus): New method; declare it.
2528         (pkgXmlNode::GetSysRoot): Make declaration style consistent with
2529         others in the class; do not name arguments in the declaration.
2530         (pkgXmlNode::FindFirstAssociate): Likewise.
2531         (pkgXmlNode::FindNextAssociate): Likewise.
2532
2533         * src/pkgshow.cpp: New file.
2534         (pkgXmlDocument::DisplayPackageInfo): Implement it.
2535
2536         * src/pkgdeps.cpp (pkgMsgUnknownPackage): New extern "C" function;
2537         implement it temporarily, pending a future i18n reimplementation.
2538         (assert_installed): Drop "inline" attribute; leave it as "static".
2539         Set "tarname" correctly, to match the installed package version; (it
2540         previously incorrectly returned the latest available version).
2541         (pkgActionItem::ConfirmInstallationStatus): Implement it.
2542         (pkgXmlDocument::Schedule) [ACTION_PRIMARY]: Set as appropriate.
2543         (pkgXmlDocument::Schedule) [ACTION_REMOVE || ACTION_UPGRADE]: Complain
2544         if requested package is not recorded as having been installed.
2545         (pkgXmlDocument::ResolveDependencies) [! ACTION_INSTALL]: Do not
2546         invoke it recursively.
2547
2548         * Makefile.in (pkgshow.$OBJEXT): Add reference.
2549
2550 2010-11-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
2551
2552         Lay groundwork for implentation of additional actions.
2553
2554         * src/climain.cpp (climain): Adjust indentation; replace `if' block...
2555         [action != ACTION_UPDATE]: ...with this default `switch' case, and...
2556         [action == ACTION_UPDATE]: ...this as explicit "do nothing" case.
2557
2558 2010-10-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
2559
2560         mingw-get-0.1-mingw32-alpha-5 released.
2561
2562         * configure.ac (AC_INIT): Bump version to 0.1-alpha-5.
2563         * README: Update release notes accordingly.
2564         * All files (r0-1-alpha-5): Tag assigned.
2565
2566 2010-10-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
2567
2568         Make pkgInitRites/pkgLastRites processing more robust;
2569         avoid a potential race condition in mingw-get-inst.
2570
2571         * src/rites.c: Refactor conditional code to segregate execution of...
2572         [defined IMPLEMENT_INITIATION_RITES]: ...this into distinct phases.
2573         (PHASE_ONE_RITES, PHASE_TWO_RITES): Define constants to identify them.
2574         (do_init_rites): Renamed to...
2575         (invoke_rites): ...this; inline it.
2576         (pkgLastRites): Invoke it, to pre-empt rename action of...
2577         (lastrites.exe): ...this, subsequently exec()ed process.
2578         (perror): Issue more informative diagnostic on exec() failure.
2579
2580         * src/clistub.c (IMPLEMENT_INITIATION_RITES): Stipulate as...
2581         (PHASE_ONE_RITES): ...this phase of implementation only.
2582
2583         * src/pkgexec.cpp (IMPLEMENT_INITIATION_RITES): Define to provide...
2584         (PHASE_TWO_RITES): ...this phase of implementation, facilitated by...
2585         (self_upgrade_rites): ...this locally defined RITES_INLINE function.
2586         (pkgActionItem::Execute): Invoke it, in remove/install loop, while...
2587         [init_rites_pending]: ...new loop local variable remains true.
2588
2589 2010-09-10  Charles Wilson  <mingw@cwilson.fastmail.fm>
2590
2591         Fix packaging bug in -lic package.
2592
2593         * Makefile.in (licdist): Use directory named
2594         "share", not "shared".
2595
2596 2010-09-10  Charles Wilson  <mingw@cwilson.fastmail.fm>
2597
2598         mingw-get-0.1-mingw32-alpha-4 released.
2599
2600         * All files (r0-1-alpha-4): Tag assigned.
2601
2602 2010-09-10  Charles Wilson  <mingw@cwilson.fastmail.fm>
2603
2604         Add rudimentary help option.
2605
2606         * README: Update release notes.
2607
2608         * src/clistub.c: Add --help option.
2609
2610 2010-09-10  Charles Wilson  <mingw@cwilson.fastmail.fm>
2611
2612         Fix "mingw-get deletes itself" bug in last rites handling.
2613
2614         * README: Add new release notes.
2615
2616         * configure.ac: Bump version to 0.1-alpha-4.
2617
2618         * src/dmh.h: If __cplusplus, include <exception> and
2619         declare dmh_exception class.
2620
2621         * src/dmh.cpp (class dmh_exception): Implement.
2622         (abort_if_fatal): If DMH_FATAL, throw dmh_exception rather
2623         than calling exit().
2624
2625         * src/climain.cpp (climain): Wrap entire function body in try/
2626         catch block. If dmh_exception is caught, return EXIT_FAILURE.
2627
2628         * src/clistub.c (main): Capture return value of climain(). If
2629         non-zero, perform last rites and return EXIT_FAILURE.
2630
2631 2010-08-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
2632
2633         mingw-get-0.1-mingw32-alpha-3 released.
2634
2635         * README: Add new release notes.
2636
2637         * All files (r0-1-alpha-3): Tag assigned.
2638
2639 2010-08-27  Keith Marshall  <keithmarshall@users.sourceforge.net>
2640
2641         Add runtime hooks to support self-upgrade for future releases.
2642
2643         * src/rites.c: New file; compile it free-standing, to provide...
2644         (lastrites.exe): ...this helper application for context clean-up;
2645         alternatively, use it as an include file, with pre-definition of...
2646         (IMPLEMENT_INITIATION_RITES): ...this, to implement...
2647         (pkgInitRites, pkgLastRites): ...these inline functions.
2648
2649         * src/clistub.c (main) [argc > 1]: Use them.
2650         (progname): New local variable within `main'; set it once, then use it
2651         instead of repeated references to `basename(*argv)' in diagnostics.
2652         (MINGW_GET_DLL, MINGW_GET_GUI): Relocate to `src/rites.c'.
2653
2654         * src/debug.h (DEBUG_INHIBIT_RITES_OF_PASSAGE):
2655         (DEBUG_FAIL_FILE_RENAME_RITE, DEBUG_FAIL_FILE_UNLINK_RITE): New
2656         defines; they facilitate debugging of the src/rites.c code.
2657
2658         * Makefile.in (lastrites$EXEEXT): New target; build as prerequisite...
2659         (all): ...of this primary target.
2660         (install, install-strip): Install it.
2661         (SRCDIST_FILES): Remove install-sh; it is now included in...
2662         (build-aux): ...this directory; add it to...
2663         (SRCDIST_SUBDIRS): ...this.
2664
2665 2010-08-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
2666
2667         Set default sysroots relative to mingw-get installation directory.
2668
2669         * xml/profile.xml (system-map) [name == default]: For each of...
2670         [subsystem == mingw32]: ...set sysroot path to value of %R macro...
2671         [subsystem == msys]: ...and to its %R/msys/1.0 subdirectory.
2672
2673 2010-08-19  Keith Marshall  <keithmarshall@users.sourceforge.net>
2674
2675         Some dependency resolver enhancements and bug fixes.
2676
2677         * src/pkgbase.h (pkgXmlNode::GetContainerAttribute): New method;
2678         declare it.
2679
2680         * src/pkgdeps.cpp (pkgXmlNode::GetContainerAttribute): Implement it;
2681         it is used to retrieve package name attributes from the containing
2682         'package' element, when given a pointer to a 'release' element by...
2683         (assert_unmatched, assert_installed): ...these new static functions.
2684         (pkgXmlDocument::Schedule): Use them to reconstruct and register
2685         dependency reference data for previously installed packages which are
2686         no longer included in the distribution manifest.
2687         (pkgXmlDocument::ResolveDependencies): Fix a block nesting error;
2688         catch and diagnose unresolved dependencies; don't look beyond the XML
2689         document root node, (tinyxml error not caught?), when searching for
2690         requirements specified on container nodes.
2691
2692 2010-08-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
2693
2694         Improve scheduling of package processing requests.
2695
2696         * src/pkgexec.cpp (pkgXmlDocument::Schedule): Inspect entire `actions'
2697         list, when checking for duplicate package processing requests; decline
2698         to schedule any such duplicate, or any request which lacks a package
2699         association.
2700
2701 2010-08-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
2702
2703         Lay foundation for selective compilation of debugging code.
2704
2705         * src/debug.h: New file...
2706         * src/sysroot.cpp: Include it.
2707         (pkgXmlDocument::LoadSystemMap): Make debugging output conditional...
2708         [DEBUGLEVEL & DEBUG_TRACE_INIT]: ...on this new debugging state.
2709
2710 2010-08-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
2711
2712         * src/pkgkeys.h: Typo in comment: file was previously identified as
2713         pkgkeys.c; corrected.
2714
2715 2010-08-13  Keith Marshall  <keithmarshall@users.sourceforge.net>
2716
2717         Improve diagnostics for invalid references to non-release XML nodes.
2718
2719         * src/pkgkeys.h (value_unknown): New global string; declare it.
2720         * src/pkgkeys.c (value_unknown): Implement it.
2721
2722         * src/pkgname.cpp (pkgArchiveName): Identify XML element type when
2723         diagnosing references to elements of types other than release; use...
2724         (value_unknown): ...this, as appropriate.
2725
2726 2010-08-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2727
2728         Guard against a potential buffer overrun.
2729
2730         * src/pkgreqs.cpp (pkgSpecs::SetProperty): Allocate an additional
2731         byte to accommodate an extra field separator, when inserting a new
2732         data value into a previously empty field.
2733
2734 2010-07-27  Cesar Strauss  <cestrauss@gmail.com>
2735
2736         Handle the GNU long name tar header format.
2737
2738         * src/pkgproc.h (TAR_ENTITY_TYPE_GNU_LONGNAME): New manifest constant;
2739         define it.
2740         (pkgTarArchiveProcessor::EntityDataAsString): New protected method;
2741         declare and...
2742         * src/tarproc.cpp: ...implement it.
2743         (pkgTarArchiveProcessor::Process): Before building the entry pathname,
2744         check for a GNU long name type header; when found, read pathname from
2745         the entry data area, before fetching the following header, from which
2746         to retrieve the associated entity data.
2747
2748 2010-06-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
2749
2750         Work around an autoconf bug (reported by Stefano Sabatini).
2751
2752         * Makefile.in (VPATH): Use @top_srcdir@ instead of ${srcdir}; current
2753         autoconf incorrectly elides references to @srcdir@ and ${srcdir} when
2754         substituting within a VPATH specification for building `in-source'.
2755         Also, prefer colons to blanks as path name separators, for improved
2756         portability to non-GNU implementations of make; (recommendation by
2757         Ralf Wildenhues).
2758
2759 2010-06-24  Keith Marshall  <keithmarshall@users.sourceforge.net>
2760
2761         Include alias search, when matching component package name.
2762
2763         * src/keyword.c (has_keyword): Rearrange argument declarations for
2764         more natural order; update all callers accordingly.  Simplify; compare
2765         keyword to be matched with each successive candidate from match-list,
2766         character-by-character and in-place, so avoiding memory allocation
2767         for any local duplicate of the passed match-list; thus...
2768         (safe_strdup): ...this static function no longer required; delete it.
2769         (string.h): No references remain; do not include it.
2770
2771         * src/pkgfind.cpp (pkgXmlNode::FindPackageByName): Augment component
2772         package name matching to include potential matches of the look-up name
2773         with trailing component name stripped off, when that matches the class
2774         name of an identified component package, and the initial substring of
2775         the look-up name, after stripping, matches any specified alias name
2776         for the containing package.
2777
2778 2010-06-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
2779
2780         Address FIXME relating to identification of distributable files.
2781
2782         * install-sh: Move to...
2783         * build-aux: ...this new directory.
2784
2785         * Makefile.in (PACKAGE_DISTVERSION): Modify `sed' edit sequence; make
2786         it depend on, and ensure that it incorporates the expansion of...
2787         (PACKAGE_SUBSYSTEM): ...this new macro; defined as substitution of...
2788         (host_os): ...this autoconf variable, set by...
2789
2790         * configure.ac (AC_CANONICAL_HOST): ...this; add it, requiring...
2791         (AC_CONFIG_AUX_DIR): ...`build-aux' directory reference, providing...
2792
2793         * build-aux/config.guess, build-aux/config.sub: ...these new standard
2794         files; import them from the standard `build-aux' repository.
2795
2796 2010-05-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
2797
2798         Bump version for next release cycle.
2799
2800         * configure.ac (AC_INIT): Bump version suffix to alpha-3.
2801
2802 2010-05-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
2803
2804         mingw-get-0.1-mingw32-alpha-2 released.
2805
2806         * README: Add new release notes.
2807
2808         * xml/profile.xml: Update to use default referencing for...
2809         (package-list.xml.lzma): ...this repository master catalogue.
2810
2811         * All files (r0-1-alpha-2): Tag assigned.
2812
2813 2010-05-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
2814
2815         Make provision to protect user's profile settings during upgrade.
2816
2817         * Makefile.in (install): Remove `profile.xml'; replace it with...
2818         (install-profile): ...this new prerequisite installation goal; it
2819         renames the installed copy of `profile.xml' as `defaults.xml', within
2820         the installed package image.
2821
2822         * src/pkgkeys.h (defaults_key): New key; declare it.
2823         * src/pkgkeys.c: Some cosmetic formatting (tabulation) adjustments.
2824         (defaults_key): Implement it; it refers to the `defaults.xml' file.
2825
2826         * src/climain.cpp (climain): Check `profile_key' for accessibility of
2827         the `profile.xml' file; if [! R_OK] emit a diagnostic warning, fall
2828         back on `defaults_key', and attempt to load configuration from the
2829         distributed `defaults.xml' file.
2830
2831 2010-05-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
2832
2833         Add preliminary support for future `-reinstall' option.
2834
2835         * src/pkgexec.cpp (pkgActionItem::Execute) [ACTION_INSTALL]: Force
2836         installation if `-reinstall' option is selected, overriding state of
2837         any prior installation; temporarily assume that this option is always
2838         selected, to permit proper `upgrade' operation in the absence of any
2839         functional `uninstall' capability, and pending implementation of a
2840         mechanism for interpreting user specified options.
2841
2842 2010-05-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
2843
2844         Correct handling for "%R" macro in relative sysroot path specs.
2845
2846         * src/tarproc.cpp (pkgTarArchiveProcessor): In constructor, expand the
2847         sysroot path specification a second time, to capture the effect of any
2848         embedded macros, before computing the recorded `sysroot_len' value.
2849
2850 2010-05-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
2851
2852         Handle "%" wildcard matches in package and subsystem version strings.
2853
2854         * src/pkgbase.h (pkgSpecs): Forward declare it.
2855         (pkgActionItem::~pkgActionItem): Declare explicit destructor.
2856         (pkgActionItem::SetRequirements): Add extra `pkgSpecs*' argument;
2857         update references, passing additional argument in...
2858
2859         * src/pkgdeps.cpp (pkgXmlDocument::ResolveDependencies): ...this.
2860
2861         * src/pkgexec.cpp (pkgActionItem::~pkgActionItem): Implement it.
2862         (pkgActionItem::SetRequirements): Delete obsolete implementation.
2863
2864         * src/pkginfo/pkginfo.h: Update copyright notice; add year 2010.
2865         (pkgSpecs::GetTarName): New public method; declare it.
2866         (pkgSpecs::SetProperty): New private method; declare it.
2867         (pkgSpecs::SetPackageName): New inline method; implement it.
2868         (pkgSpecs::SetPackageVersion, pkgSpecs::SetPackageBuild): Likewise.
2869         (pkgSpecs::SetSubSystemName, pkgSpecs::SetSubSystemVersion): Likewise.
2870         (pkgSpecs::SetSubSystemBuild, pkgSpecs::SetReleaseStatus): Likewise.
2871         (pkgSpecs::SetReleaseIndex, pkgSpecs::SetComponentClass): Likewise.
2872         (pkgSpecs::SetComponentVersion, pkgSpecs::SetPackageFormat): Likewise.
2873         (pkgSpecs::SetCompressionType): Likewise.
2874
2875         * src/pkginfo/pkginfo.l: Update copyright notice; add year 2010.
2876         (TRANS): Interpret "%" as wildcard in version string matches.
2877
2878         * src/pkgreqs.cpp: New file.
2879         (pkgActionItem::SetRequirements): Reimplement per new declaration;
2880         it now always allocates heap memory for requirements specifications.
2881         (pkgSpecs::GetTarName, pkgSpecs::SetProperty): Implement them.
2882
2883         * Makefile.in (CORE_DLL_OBJECTS): Add `pkgreqs.$(OBJEXT)'.
2884
2885 2010-04-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
2886
2887         Revert 2010-04-04 refactoring of tarproc.cpp and tarinst.cpp
2888
2889         * src/tarinst.cpp: File removed; its content merged into...
2890         * src/tarproc.cpp: ...this; it cannot be cleanly separated out.
2891
2892         * Makefile.in (tarinst.$OBJEXT): Remove reference.
2893
2894 2010-04-29  Keith Marshall  <keithmarshall@users.sourceforge.net>
2895
2896         Handle "*" wildcard matches in package and subsystem version strings.
2897
2898         * src/vercmp.h (pkgVersionInfo::version_string): New private member
2899         variable; it stores a pointer to a dynamically allocated local copy of
2900         the invariant `version' argument, to facilitate correct parsing.
2901         (pkgVersionInfo::build_string): Likewise; it provides similar handling
2902         for the invariant `build' argument.
2903         (pkgVersionInfo::Free): New private inline method; it provides a NULL
2904         pointer safe wrapper, calling the C library `free()' function, (since
2905         some implementations are believed to be unsafe); it is used by...
2906         (pkgVersionInfo::~pkgVersionInfo): ...this new inline destructor, to
2907         release the memory allocated by the constructor, for `version_string'
2908         and `build_string'.
2909
2910         * src/vercmp.cpp (pkgVersionInfo::pkgVersionInfo): Allocate memory for
2911         `version_string' and `build_string', as required; populate it.
2912         Explicitly handle "*" as a `match anything' wildcard...
2913         (pkgVersionInfo::Compare): ...matching it as `equal' to everything.
2914
2915 2010-04-18  Keith Marshall  <keithmarshall@users.sourceforge.net>
2916
2917         Correct omission from configure script prerequisite checks.
2918
2919         * aclocal.m4 (MINGW_AC_OUTPUT): New macro; it wraps AC_OUTPUT itself,
2920         adding a trap to force an abort if any preceding prerequisite check
2921         was handled by MINGW_AC_ASSERT_MISSING.
2922
2923         * configure.ac: Qualify package component types, in prerequisite
2924         checks handled by MINGW_AC_ASSERT_MISSING; invoke MINGW_AC_OUTPUT
2925         in place of AC_OUTPUT.
2926
2927 2010-04-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
2928
2929         Add configure script checks for prerequisite library headers.
2930         (Thanks to Cesar Strauss for proposing a rudimentary implementation).
2931
2932         * aclocal.m4: New file; it does no more than include...
2933         * m4/missing.m4: ...this; new file incorporated from build-aux module.
2934
2935         * configure.ac: Add AC_CHECK_HEADER assertions for...
2936         (zlib.h, bzlib.h, lzma.h): ...these; invoke MINGW_AC_ASSERT_MISSING in
2937         respect of each failing assertion.
2938
2939 2010-04-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
2940
2941         Case-insensitive subsystem name matching revisited.
2942
2943         * src/pkgfind.cpp (pkgXmlDocument::FindPackageByName): Use...
2944         (subsystem_strcmp): ...this to match subsystem names, instead of...
2945         (match_if_explicit): ...this.
2946
2947 2010-04-15  Keith Marshall  <keithmarshall@users.sourceforge.net>
2948
2949         Enable recursive processing of repository package lists.
2950
2951         * src/pkgbase.h (pkgXmlDocument::SyncRepository): Make it public.
2952
2953         * src/pkgbind.cpp (pkgRepository): New locally defined and implemented
2954         class; it facilitates recursive loading and parsing of package lists,
2955         replacing much of the original non-recursive functionality within...
2956         (pkgXmlDocument::BindRepositories): ...this; use it.
2957
2958 2010-04-04  Keith Marshall  <keithmarshall@users.sourceforge.net>
2959
2960         Implement installer function; use per-package file manifests.
2961
2962         * src/pkgproc.h (pkgManifest): New class; declare it.
2963         (pkgArchiveProcessor::origin): New protected member variable.
2964         (pkgArchiveProcessor::sysroot_len): New protected member variable.
2965         (pkgArchiveProcessor::installed): Type changed to `pkgManifest *'.
2966         (pkgTarArchiveInstaller::Process): Declare specialisation hook.
2967         (pkgTarArchiveInstaller::UpdateInstallationManifest): Disused member
2968         function; remove redundant declaration from class definition.
2969         (pkgInstall): New generalised installation function; declare it.
2970         (pkgRegister): New function; declare it.
2971
2972         * src/pkginst.cpp: New file.
2973         (pkgManifest, pkgInstall, pkgRegister): Implement them.
2974
2975         * src/pkgexec.cpp (pkgActionItem::Execute): Use `pkgInstall' in place
2976         of stub formerly provided here.
2977
2978         * src/pkgkeys.h (manifest_key, reference_key): New keys; declare them.
2979         * src/pkgkeys.c (manifest_key, reference_key): Implement them.
2980
2981         * src/tarproc.cpp: Code refactored.
2982         (pkgTarArchiveProcessor::sysroot_len): Initialise it.
2983         (pkgTarArchiveProcessor::origin): Initialise it.
2984         (pkgTarArchiveProcessor::installed): Initialise; associate it with a
2985         pkgManifest class entity, and populate this as appropriate.
2986         (pkgTarArchiveProcessor::~pkgTarArchiveProcessor): Add explicit clean
2987         up of linked `pkgManifest *' entity referenced by `installed'.
2988         (pkgTarArchiveProcessor::Process) [TAR_ENTITY_TYPE_DIRECTORY]: Add
2989         braces to demarcate localised inner scope of string scan for removal
2990         of trailing directory name separators; (thanks to Cesar Strauss for
2991         reporting invalid local pointer declaration error in GCC >= 4.4).
2992         (pkgTarArchiveInstaller::UpdateInstallationManifest): Deleted.
2993         (pkgTarArchiveInstaller::pkgTarArchiveInstaller): Factor out.
2994         (pkgTarArchiveInstaller::ProcessDirectory): Likewise.
2995         (pkgTarArchiveInstaller::ProcessDataStream): Likewise.
2996         (commit_saved_entity): Likewise.
2997
2998         * src/tarinst.cpp: New file; it implements...
2999         (pkgTarArchiveInstaller::Process): ...this new specialisation
3000         of the original pkgTarArchiveProcessor::Process method...
3001         (pkgTarArchiveInstaller::pkgTarArchiveInstaller): ...and this
3002         refactored code, abstracted from src/tarproc.cpp and modified to
3003         use the pkgManifest class for installation tracking.
3004         (pkgTarArchiveInstaller::ProcessDirectory): Likewise.
3005         (pkgTarArchiveInstaller::ProcessDataStream): Likewise.
3006         (commit_saved_entity): Relocated from src/tarproc.cpp.
3007
3008         * Makefile.in (CORE_DLL_OBJECTS): Add...
3009         (pkginst.OBJEXT, tarinst.OBJEXT): ...these new object files.
3010
3011 2010-03-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
3012
3013         Guard against NULL pointer dereferences in tinyxml code.
3014
3015         * src/pkgbase.h (pkgXmlNode::GetName): Verify `this' pointer is
3016         non-NULL, before invoking the underlying tinyxml method.
3017         (pkgXmlNode::GetParent, pkgXmlNode::GetChildren): Likewise.
3018         (pkgXmlNode::GetNext, pkgXmlNode::GetPropVal): Likewise.
3019         (pkgXmlNode::AddChild, pkgXmlNode::DeleteChild): Likewise.
3020         (pkgXmlNode::GetDocumentRoot): Likewise.
3021         (pkgXmlNode::IsElementOfType): Likewise.
3022
3023 2010-03-28  Cesar Strauss  <cestrauss@gmail.com>
3024
3025         Avoid running InternetAttemptConnect in pkgInternetAgent
3026         constructor, since it is called during DLL initialisation.
3027
3028         * src/pkginet.cpp (pkgInternetAgent::pkgInternetAgent): Move the
3029         InternetAttemptConnect call from constructor...
3030         (pkgInternetAgent::OpenURL): ...to here.
3031
3032 2010-03-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
3033
3034         Automate object code dependency tracking.
3035
3036         * Makefile.in (DEPFLAGS): New macro; define it.
3037         (%.OBJEXT: %.c, %.OBJEXT: %.cpp): Add dependency generator commands...
3038         (%.d): ...to create these dependency maps; `sinclude' them, and...
3039         (clean): ...remove them.
3040         
3041         * .cvsignore (*.d): Add wild card template to match them.
3042
3043 2010-03-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
3044
3045         Support case insensitive matching for file and subsystem names.
3046
3047         * src/pkgbase.h (safe_strcmp): New inline function; it provides NULL
3048         argument safe comparison of strings, returning the boolean inverse of
3049         the `strcmp' result, using either case-sensitive or case-insensitive
3050         semantics; derive it from...
3051         (match_if_explicit): ...this; redefine as macro; invoke `safe_strcmp'
3052         using explicitly case-sensitive semantics.
3053         (subsystem_strcmp): New macro; it invokes `safe_strcmp' with either
3054         case-sensitive or case-insensitive semantics, depending on...
3055         (CASE_INSENSITIVE_SUBSYSTEMS): ...this new context selection macro; it
3056         fixes the choice between case-sensitive and case-insensitive matching
3057         semantics for any given implementation, at compile time.
3058         (pkg_strcmp): New macro; it invokes `safe_strcmp' with either
3059         case-sensitive or case-insensitive semantics, depending on...
3060         (CASE_INSENSITIVE_FILESYSTEM): ...this new context selection macro; it
3061         fixes the choice between case-sensitive and case-insensitive matching
3062         semantics for any given implementation, at compile time.
3063
3064         * src/sysroot.cpp (pkgXmlNode::GetSysRoot): Use `subsystem_strcmp'.
3065
3066 2010-03-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
3067
3068         Add preliminary support for virtual packages.
3069
3070         * src/pkgkeys.h (yes_value, no_value): Redefine as aliases...
3071         (value_yes, value_no): ...for these new global strings; declare them.
3072         (value_none, value_virtual): New global strings; declare them.
3073
3074         * src/pkgkeys.c (yes_value, no_value): Rename...
3075         (value_yes, value_no): ...to implement these, respectively.
3076         (value_none, value_virtual): Implement them.
3077
3078         * src/pkgname.cpp (pkgXmlNode::ArchiveName): Check containing package
3079         node for `class' attribute set to `value_virtual'; if present, always
3080         return the effective `tarname' property as `value_none'.
3081
3082         * src/pkginet.cpp (pkgActionItem::DownloadArchiveFiles): For packages
3083         with an effective `tarname' of `value_none', do not download anything.
3084
3085         * src/pkgexec.cpp (pkgActionItem::Execute): For packages with an
3086         effective `tarname' of `value_none', do not invoke any tar archive
3087         processing function.
3088
3089 2010-03-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
3090
3091         Don't write installation records for unavailable packages.
3092
3093         * src/tarproc.cpp (pkgTarArchiveInstaller): In constructor, ensure
3094         archive is ready for processing, before initialising an installation
3095         manifest record.
3096
3097 2010-03-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
3098
3099         Rationalise path identification for XML file locations.
3100
3101         * src/sysroot.cpp (pkgXmlDocument::LoadSystemMap): Use `xmlfile()'
3102         function to locate `sysroot' map file; free memory when done.
3103         (pkgXmlDocument::UpdateSystemMap): Likewise.
3104         (sigpath): Static global variable disused; delete it.
3105
3106 2010-03-01  Keith Marshall  <keithmarshall@users.sourceforge.net>
3107
3108         Extend package name search to include component packages.
3109
3110         * src/pkgfind.cpp (pkgHasMatchingName): Remove; fold it into...
3111         (pkgXmlNode::FindPackageByName): ...this; augment to extend search
3112         within package definition elements, seeking a potential match on an
3113         included component package name or component class-implied name.
3114
3115         * src/pkgkeys.h (class_key): New global string constant; declare it.
3116         * src/pkgkeys.c (class_key): Implement it.
3117
3118 2010-02-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
3119
3120         Bump version for next release cycle.
3121
3122         * configure.ac (AC_INIT): Bump version suffix to alpha-2.
3123
3124 2010-02-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
3125
3126         mingw-get-0.1-mingw32-alpha-1 released.
3127
3128 2010-02-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
3129
3130         Prepare initial package release.
3131
3132         * README: New file; use it to source release notes.
3133
3134         * Makefile.in (SRCDIST_FILES): Use ...
3135         (LICENCE_FILES): ...this new macro; define it.
3136         (licdist): New build goal; implement it.
3137         (bindist): Require it; add alternative `zip' format package.
3138
3139         * xml/profile.xml (repository): Set default `package-index' name.
3140         (system-map): Normalise spelling for default `sysroot' path names.
3141
3142 2010-02-10  Keith Marshall  <keithmarshall@users.sourceforge.net>
3143
3144         Add directory/file records in installation manifests.
3145
3146         * src/pkgkeys.h (dirname_key, filename_key): New strings; declare...
3147         * src/pkgkeys.c (dirname_key, filename_key): ...and implement them.
3148
3149         * src/pkgproc.h (pkgArchiveProcessor::installed): New class member
3150         variable; declare it.
3151         (pkgTarArchiveInstaller::UpdateInstallationManifest): New method;
3152         declare it.
3153
3154         * src/tarproc.cpp: Miscellaneous comment updates.
3155         (pkgTarArchiveInstaller): In constructor...
3156         (pkgTarArchiveInstaller::installed): ...use new member variable...
3157         (pkgArchiveProcessor::installed): ...inherited from this.
3158         (pkgTarArchiveInstaller::UpdateInstallationManifest): Implement and...
3159         (pkgTarArchiveInstaller::ProcessDataStream): ...use it.
3160         (pkgTarArchiveInstaller::ProcessDirectory): Likewise.
3161
3162 2010-02-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
3163
3164         Work around a deficiency in Microsoft's stat() implementation.
3165
3166         * src/tarproc.cpp (pkgTarArchiveProcessor::ProcessDirectory): Don't
3167         pass a `pathname' argument with trailing slashes; strip them off.
3168
3169 2010-02-06  Keith Marshall  <keithmarshall@users.sourceforge.net>
3170
3171         Add machinery for installation and packaging for distribution.
3172
3173         * install-sh: New file; source it from autoconf distribution.
3174
3175         * configure.ac (AC_PREFIX_DEFAULT): Assign it as `C:/MinGW'.
3176         (AC_PROG_MKDIR_P, AC_PROG_INSTALL, AC_PROG_LN_S): Invoke these.
3177         (STRIP): New output variable; use AC_CHECK_TOOL to define it.
3178
3179         * Makefile.in (abs_top_srcdir): Define to AC_SUBST value.
3180         (PACKAGE_TARNAME, PACKAGE_VERSION): Define to AC_SUBST values.
3181         (prefix, exec_prefix, bindir, libexecdir, localstatedir): Likewise.
3182         (INSTALL, INSTALL_PROGRAM, INSTALL_SCRIPT, INSTALL_DATA): Likewise.
3183         (STRIP): New macro; define it using AC_CHECK_TOOL substitution.
3184         (mkinstalldirs): New macro; define it as AC_PROG_MKDIR_P result.
3185         (LN_S): New macro; define it as AC_PROG_LN_S result.
3186         (dist, srcdist, bindist): New build objectives; implement them.
3187         (install, installdirs, install-strip, maintainer-clean): Likewise.
3188         (SRCDIST_FILES, SRCDIST_SUBDIRS): New macros; define them.
3189         (PACKAGE_DISTNAME, PACKAGE_DISTVERSION): Likewise.
3190         (PACKAGE_DISTROOT, PACKAGE_ROOTVERSION): Likewise.
3191         (PACKAGE_CONFIG_DIR): Likewise.
3192
3193 2010-02-02  Keith Marshall  <keithmarshall@users.sourceforge.net>
3194
3195         Implement package installer for tar archives.
3196
3197         * src/pkgexec.cpp (pkgXmlDocument::Execute): Replace existing
3198         stub implementation of installer, using methods provided by...
3199         * src/pkgproc.h, src/tarproc.cpp: ...these new files, with trap...
3200         * src/pkgdeps.cpp (pkgXmlDocument::Schedule) [installed]: Add entry...
3201         (pkgActionItem::Selection) [to_remove]: ...for this; use it to detect
3202         `install' requests for packages which are aleady installed.
3203
3204         * Makefile.in (CORE_DLL_OBJECTS): Add tarproc.$(OBJEXT); specify
3205         dependencies as appropriate.
3206
3207         * src/sysroot.cpp (pkgXmlDocument::LoadSystemMap): Don't commit
3208         newly created `sysroot' mapping records to disk; defer to...
3209         (pkgXmlDocument::UpdateSystemMap): ...this new method.
3210         (sigpath): Make it a global variable, with file (static) scope.
3211
3212         * src/climain.cpp (pkgXmlDocument::UpdateSystemMap): Invoke it.
3213
3214         * src/pkgkeys.h (download_key, modified_key, source_key): New global
3215         string variables; declare them, providing their implementations...
3216         * src/pkgkeys.c (download_key, modified_key, source_key): ...here.
3217         * src/pkgname.cpp (download_key, source_key): Use them.
3218
3219         * src/pkginet.cpp (pkgActionItem::ArchivePath): Delete; replace...
3220         * src/mkpath.c (pkgArchivePath): ...with this free standing function.
3221         * src/mkpath.h (pkgArchivePath): Declare its prototype.
3222
3223         * src/pkgbase.h (pkgActionItem::ArchivePath): Delete declaration.
3224         (pkgXmlDocument): Add a default constructor; implement as `inline'.
3225         (pkgXmlDocument::AddDeclaration): Use heap memory to allocate the new
3226         declaration object, instead of `auto' variable, to avoid scope error.
3227         (pkgXmlDocument::UpdateSystemMap): Declare it.
3228
3229 2010-01-26  Keith Marshall  <keithmarshall@users.sourceforge.net>
3230
3231         Implement rudimentary dependency resolver.
3232
3233         * src/pkgdeps.cpp: New file.
3234
3235         * Makefile.in (CORE_DLL_OBJECTS): Add pkgdeps.$(OBJEXT) reference;
3236         establish header file dependencies.
3237
3238         * src/pkgbase.h (to_remove, to_install, selection_types): New enum.
3239         (pkgActionItem::selection): Extend it to store as enumerated pair...
3240         (pkgActionItem::SelectPackage): New inline method; assign them.
3241         (pkgActionItem::Selection): New inline method; retrieve them.
3242         (pkgXmlNode::GetInstallationRecord): New method; declare it.
3243
3244         * src/pkgexec.cpp (pkgActionItem): In constructor...
3245         (selection): ...initialise both references in enumerated pair.
3246         (pkgActionItem::GetReference): Use `Selection()' method.
3247         (pkgActionItem::SelectIfMostRecent): Ditto; also correct logic for
3248         making selection, and assign to `to_install' element.
3249         (pkgXmlDocument::Schedule): Don't update `request'.
3250         (pkgActionItem::Execute): Implement as stub.
3251
3252         * src/pkginet.cpp (pkgActionItem::DownloadArchiveFiles): Use new
3253         `Selection()' method.
3254
3255         * src/pkgkeys.h (yes_value, no_value): Declare new string constants.
3256         * src/pkgkeys.c (yes_value, no_value): Implement them.
3257
3258         * src/vercmp.cpp: Update copyright notice.
3259         (pkgVersionInfo::operator<=): Bug fix; must test for `<', but had `>'.
3260
3261 2010-01-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
3262
3263         Avoid segmentation faults when processing invalid data streams.
3264
3265         * src/pkgstrm.h: Update copyright notice.
3266         (pkgArchiveStream::IsReady): New pure virtual method.
3267         (pkgRawArchiveStream::IsReady): Provide inline implementation.
3268         (pkgGzipArchiveStream::IsReady): Likewise.
3269         (pkgBzipArchiveStream::IsReady): Likewise.
3270         (pkgLzmaArchiveStream::IsReady): Likewise.
3271         (pkgXzArchiveStream::IsReady): Likewise.
3272
3273         * src/pkgstrm.cpp: Update copyright notice.
3274         (pkgLzmaArchiveStream, pkgXzArchiveStream) [fd == -1]: Decline to
3275         perform any form of read or decode processing.
3276
3277         * src/pkginet.cpp (pkgInternetLzmaStreamingAgent): Use `fd = -2' as
3278         pseudo-descriptor for the pkgLzmaArchiveStream derived component of
3279         this internet data streaming class.
3280
3281 2010-01-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
3282
3283         Require liblzma >= liblzma-4.999.9beta_20091209-3-mingw32-dev
3284
3285         * src/pkgstrm.h (LZMA_API_STATIC): Remove definition and associated
3286         comment; it was required to permit, (but not to enforce), linking to
3287         the static liblzma.a library, with earlier beta releases, but this
3288         anomaly has now been corrected.
3289
3290 2010-01-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
3291
3292         Remove zlib sources from trunk.
3293         (Application builders should use free standing implementation of
3294          zlib, from MinGW's package distribution page on SourceForge).
3295
3296 2010-01-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
3297
3298         Remove bzip2 sources from trunk.
3299         (Application builders should use free standing implementation of
3300          bzip2, from MinGW's package distribution page on SourceForge).
3301
3302 2010-01-22  Keith Marshall  <keithmarshall@users.sourceforge.net>
3303
3304         Add subsystem specific sysroot mapping facility.
3305
3306         * src/pkghash.c: New file; required by...
3307         * src/sysroot.cpp: New file; it implements...
3308         (pkgXmlDocument::LoadSystemMap, pkgXmlNode::GetSysRoot): New methods.
3309
3310         * src/pkgbase.h: Update copyright notice.
3311         (pkgXmlDocument::LoadSystemMap): Declare it.
3312         (pkgXmlDocument::AddDeclaration): New inline method.
3313         (pkgXmlDocument::SetRoot, pkgXmlDocument::Save): Likewise.
3314         (pkgXmlNode::GetSysRoot): Declare it.
3315         (pkgXmlNode::GetDocumentRoot): New inline method.
3316         (pkgXmlNode::AddChild, pkgXmlNode::DeleteChild): Likewise.
3317
3318         * src/climain.cpp: Update copyright notice.
3319         (climain): Invoke pkgXmlDocument::LoadSystemMap() as required.
3320
3321         * Makefile.in (CORE_DLL_OBJECTS): Add ...
3322         (pkghash.$(OBJEXT), sysroot.$(OBJEXT)): ...these; upate dependencies.
3323         (DEBUGLEVEL): New macro; define it.
3324         (CPPFLAGS): Use it.
3325
3326 2010-01-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
3327
3328         Assign standardised keys for XML database lookup.
3329
3330         * src/pkgkeys.h: New file; provide public key declarations.
3331         * src/pkgkeys.c: New file; implement them.
3332
3333         * src/pkgbind.cpp: Use them; update copyright notice.
3334         * src/pkgexec.cpp, src/pkgfind.cpp, src/pkginet.cpp: Likewise.
3335         * src/pkgname.cpp, src/pkgspec.cpp: Likewise.
3336
3337         * Makfile.in (CORE_DLL_OBJECTS): Add pkgkeys.$(OBJEXT); update all
3338         dependencies accordingly.
3339
3340 2010-01-08  Keith Marshall  <keithmarshall@users.sourceforge.net>
3341
3342         Add CLI version reporting option.
3343
3344         * configure.ac: Update copyright notice for new year.
3345         (COPYRIGHT_HOLDER): New AC_SUBST variable; define it.
3346         (YEARS_OF_ISSUE): New AC_SUBST variable; define it.
3347         (AC_CONFIG_FILES): Add `version.c'; source it from...
3348
3349         * version.c.in: ...this new file.
3350
3351         * Makefile.in: Update copyright notice for new year.
3352         (mingw-get$(EXEEXT)): Add dependency on `version.$(OBJEXT)'.
3353         (distclean): Add `version.c'.
3354
3355         * configure: Regenerated.
3356
3357         * src/clistub.c: Update copyright notice for new year.
3358         (options): New array of `struct option'; define and use it as the
3359         reference for `argv' parsing with `getopt_long_only()'.
3360
3361 2009-12-17  Keith Marshall  <keithmarshall@users.sourceforge.net>
3362
3363         Add CLI support for "update" action.
3364
3365         * src/pkgtask.h (ACTION_UPDATE): Define it, derived from...
3366         (action_update): ...this new entry in anonymous enumeration.
3367         
3368         * src/pkgexec.cpp (action_name): Add "update" keyword identification.
3369
3370         * src/pkgbase.h: Typo in comment; s/xwXmlDocument/wxXmlDocument/.
3371         (pkgXmlDocument::BindRepositories): Add `force_update' parameter...
3372         * src/pkgbind.cpp (pkgXmlDocument::BindRepositories): Use it to...
3373         (pkgXmlDocument::SyncRepository): ...invoke this method when passed as
3374         a `true' flag, in addition to (as previously) first time reference.
3375
3376         * src/climain.cpp (climain): Interpret "update" keyword for...
3377         [ACTION_UPDATE]: ...passing state as `force_update' parameter to...
3378         (pkgXmlDocument::BindRepositories): ...this method, then...
3379         [!ACTION_UPDATE]: Follow with normal action processing.
3380
3381 2009-12-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
3382
3383         Add status checking for Internet URL connections.
3384
3385         * src/pkginet.cpp (pkgInternetAgent::QueryStatus): New method.
3386         (pkgInternetStreamingAgent::Get): Use it; set `dl_status' as return
3387         value, deferring failure diagnostics to callers, i.e. to...
3388         (pkgXmlDocument::SyncRepositories): ...this, and to...
3389         (pkgActionItem::DownloadArchiveFiles): ...this.
3390
3391 2009-11-23  Keith Marshall  <keithmarshall@users.sourceforge.net>
3392
3393         Add package download and repository synchronisation machinery.
3394
3395         * src/pkgstrm.h: New header file.
3396
3397         * src/pkgbind.cpp, src/pkginet.cpp, src/pkgstrm.cpp,
3398         src/pkgfind.cpp, src/pkgname.cpp, src/keyword.c: New files.
3399         * Makefile.in (CORE_DLL_OBJECTS): Add build goals for them.
3400
3401         * xml: New directory.
3402
3403         * src/climain.cpp (climain): Establish repository bindings from...
3404         * xml/profile.xml: ...this new configuration file.
3405
3406 2009-11-16  Keith Marshall  <keithmarshall@users.sourceforge.net>
3407
3408         Add XML database bindings and preliminary action executive for CLI.
3409
3410         * src/pkgbase.h, src/pkgtask.h,
3411         src/mkpath.h, src/vercmp.h: New header files.
3412
3413         * src/climain.cpp, src/pkgexec.cpp, src/pkgspec.cpp,
3414         src/mkpath.c, src/vercmp.cpp, src/xmlfile.c: New files.
3415
3416         * Makefile.in (CORE_DLL_OBJECTS): Define initial set of files...
3417         (mingw-get-0.dll): ...build them into this new DLL target; add it...
3418         (all): ...as prerequisite for this primary build goal.
3419
3420 2009-11-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
3421
3422         Avoid some potential GCC warnings.
3423
3424         * src/clistub.c: Include process.h for `execv' prototype...
3425         (main): Cast `argv' to appropriately matched type when calling it.
3426
3427         * src/pkginfo/driver.c: Include stdlib.h for `free' prototype.
3428
3429 2009-11-11  Keith Marshall  <keithmarshall@users.sourceforge.net>
3430
3431         Create diagnostic message handler for CLI usage.
3432
3433         * src/dmh.h: New header file; it defines the public interface.
3434         * src/dmh.cpp: New file; it implements the message handler.
3435
3436 2009-11-05  Keith Marshall  <keithmarshall@users.sourceforge.net>
3437
3438         Correct some identified TinyXML issues.
3439
3440         * tinyxml/tinyxml.h (IsWhiteSpace): Add FIXME annotation to flag
3441         probable redundancy of checks for '\n' and '\r'.
3442         * tinyxml/tinyxmlparser.cpp: Revert John E's 2008-08-09 change; remove
3443         all such redundancies in IsWhiteSpace() calls throughout.
3444
3445         * tinyxml/tinyxml.cpp (TiXmlAttribute::SetDoubleValue): Correct format
3446         specification in sprintf()/snprintf() calls; "%lf" is invalid; replace
3447         with "%f".
3448
3449 2009-10-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
3450
3451         Add CLI loader stub.
3452
3453         * src/clistub.c: New file.
3454         * Makefile.in: Add build rule for it; build as...
3455         (mingw-get.exe): ...this; also add to...
3456         (clean): ...this goal.
3457
3458 2009-10-31  Keith Marshall  <keithmarshall@users.sourceforge.net>
3459
3460         Set up build mechanism.
3461
3462         * configure.ac, Makefile.in: New files.
3463         * .cvsignore (configure, autom4te.cache): Add to ignored files.
3464
3465 2009-10-30  Keith Marshall  <keithmarshall@users.sourceforge.net>
3466
3467         Add GPL-v3 licensing terms.
3468
3469         * COPYING: New file, sourced from gnu.org.
3470
3471 2009-10-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
3472
3473         Add pkginfo implementation.
3474
3475         * src, src/pkginfo: New directories.
3476         * src/pkginfo/pkginfo.h, src/pkginfo/pkginfo.l: New files.
3477         * src/pkginfo/driver.c: New file.
3478
3479 2009-10-12  Keith Marshall  <keithmarshall@users.sourceforge.net>
3480
3481         Create tdm-branch.
3482
3483         * All files (tdm-branch): Assign new branch tag.
3484         * All top-level files: Remove from trunk.
3485         * ChangeLog: New file.