-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build and use asset graph (major internal change)
Now the command graph and the asset graph are separate. The hopen files create the command graph; the command graph creates the asset graph; and the asset graph creates the blueprint files (e.g., `Makefile`). Appveyor: - Always run with the latest Data::Hopen from Github Dependencies: - Test: +Test::Exception - Runtime: +Class::Tiny::ConstrainedAccessor, +vars::i Architectural changes: - Split asset graph off from command graph - Rename `Op`s in A::h to `Cmd`s or `Node`s to help keep everything straight Code changes include: - Add system environment to DAG's scope - Give each hopen-file package a unique name, just in case the same hopen file is run twice. This is setting up for eventually being able to run multiple phases with a single invocation of hopen(1). - Remove some apparently-unused dependencies from Makefile.PL - Add Appveyor badge to README - Bump required version of Data::Hopen - Add App::hopen::Asset, and its type constraints - Asset: permit storing App::hopen::Util::BasedPath instances directly - Add --build option - BasedPath: add orig_cwd; enforce requirement that path parameter be a relative path. - t/lib/HopenTest: Remove the creation of the "DUT" package alias since it prevents BUILD from being called correctly in Class::Tiny subclasses. Just use `$DUT->foo` instead. - Begin adding tests of A::h::H - Added A::h::G::Cmd with make(), {made}, {made_by}, and run() - Added A::h::G::AssetOp with constrained `asset` accessor - Added A::h::Gen::Make::AssetGraphNode - Updated tests per changes to Data::Hopen::Scope 2019-03-08 - A::h::Gen::asset() can update C<how> on existing AssetOp instances Tests: - Removed tests left over from Data::Hopen - we don't need to run the same tests here as well.
- Loading branch information
Chris White
committed
May 26, 2019
1 parent
d6c0de8
commit 257173d
Showing
49 changed files
with
1,352 additions
and
785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
Revision history for App-hopen | ||
|
||
0.000009 2019-??-?? | ||
Split former Build-Hopen into App-hopen and Data-Hopen | ||
0.000010 2019-05-26 | ||
First non-trial release. | ||
Major internal changes. Finished removing Data-Hopen leftovers. | ||
|
||
0.000008 2019-02-09 | ||
Tweak File::Glob usage to support Perl 5.14 | ||
0.000009 2019-02-24 (TRIAL RELEASE) | ||
Split former Build-Hopen into App-hopen and Data-Hopen | ||
|
||
0.000007 2019-02-08 | ||
First version that can generate a Makefile | ||
0.000008 2019-02-09 (TRIAL RELEASE) | ||
Tweak File::Glob usage to support Perl 5.14 | ||
|
||
0.000006 2019-02-06 | ||
Substantially expanded | ||
0.000007 2019-02-08 (TRIAL RELEASE) | ||
First version that can generate a Makefile | ||
|
||
0.000003 2018-01-02 | ||
First full trial release | ||
0.000006 2019-02-06 (TRIAL RELEASE) | ||
Substantially expanded | ||
|
||
0.000003 2018-01-02 (TRIAL RELEASE) | ||
First full trial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.