-
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
B2 version 4.4.2. First BFG release.
- Loading branch information
Showing
752 changed files
with
2,915 additions
and
2,039 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
name: Feature Request | ||
about: Create an issue that requests a feature or other improvement | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Make sure you completed the following tasks | ||
|
||
- [ ] I searched the [discussions](https://github.com/bfgroup/b2/discussions) | ||
- [ ] I searched the closed and open [issues](https://github.com/bfgroup/b2/issues?q=is%3Aissue) | ||
|
||
### Environment and version details | ||
|
||
* Operating System+version: **Linux Ubuntu 18.04** | ||
* Compiler+version: **GCC 8** | ||
* Shell: **Bash, Batch, etc** | ||
* B2 Version: Output of `b2 -v` and `b2 --version` | ||
|
||
### Describe your use case | ||
|
||
Describe the problem you're trying to solve. This is not mandatory and we do | ||
consider features without a specific use case, but real problems have priority. | ||
|
||
**If a project of yours is blocked on this feature, please, mention it explicitly.** | ||
|
||
### Describe the solution you'd like | ||
|
||
Please explain what the wanted solution should look like. You are strongly | ||
encouraged to attach a snippet of (pseudo)code. | ||
|
||
### Alternatives, if applicable | ||
|
||
A clear and concise description of any alternative solutions or features | ||
you've managed to come up with, if any. | ||
|
||
### Additional context | ||
|
||
Add any other context about the feature request here. |
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
--- | ||
name: Problem Report | ||
about: Report a bug, something does not work as it supposed to | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
### Make sure you completed the following tasks | ||
|
||
- [ ] I searched the [discussions](https://github.com/bfgroup/b2/discussions) | ||
- [ ] I searched the closed and open [issues](https://github.com/bfgroup/b2/issues?q=is%3Aissue) | ||
- [ ] I read the [contribution guidelines](https://github.com/bfgroup/b2/blob/main/CONTRIBUTING.adoc) | ||
|
||
### Environment and version details | ||
|
||
* Operating System+version: **Linux Ubuntu 18.04** | ||
* Compiler+version: **GCC 8** | ||
* Shell: **Bash, Batch, etc** | ||
* B2 Version: Output of `b2 -v` and `b2 --version` | ||
* B2 Configuration: Output of `b2 --debug-configuration` in your project. | ||
|
||
``` | ||
Place output of "b2 --debug-configuration" here. | ||
``` | ||
|
||
### Brief problem description | ||
|
||
### Steps to reproduce the issue | ||
|
||
### Actual behavior summary | ||
|
||
When I do like *this*, *that* is happening and I think it shouldn't. | ||
|
||
**If a project of yours is blocked due to this bug, please, mention it explicitly.** | ||
|
||
``` | ||
Attach, or place here, log output showing the bug including running | ||
with the options: -d2 --debug-configuration | ||
``` | ||
|
||
### Expected behavior summary | ||
|
||
I think *this* should happen instead. |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
## Proposed changes | ||
|
||
Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue. | ||
|
||
## Types of changes | ||
|
||
What types of changes does your code introduce? | ||
|
||
_Put an `x` in the boxes that apply_ | ||
|
||
- [ ] Bugfix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] Code style update (formatting, renaming) | ||
- [ ] Refactoring (no functional changes, no api changes) | ||
- [ ] Documentation content changes | ||
- [ ] Other (please describe): | ||
|
||
## Checklist | ||
|
||
_Put an `x` in the boxes that apply. You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. We're here to help! This is simply a reminder of what we are going to look for before merging your code._ | ||
|
||
- [ ] I searched the [discussions](https://github.com/bfgroup/b2/discussions) | ||
- [ ] I searched the closed and open [issues](https://github.com/bfgroup/b2/issues?q=is%3Aissue) | ||
- [ ] I read the [contribution guidelines](https://github.com/bfgroup/b2/blob/main/CONTRIBUTING.adoc) | ||
- [ ] I added myself to the copyright attributions for significant changes | ||
- [ ] I checked that tests pass locally with my changes | ||
- [ ] I added tests that prove my fix is effective or that my feature works | ||
- [ ] I added necessary documentation (if appropriate) | ||
|
||
## Further comments | ||
|
||
If this is a relatively large or complex change, kick off the discussion by explaining why you chose the solution you did and what alternatives you considered, etc... |
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,7 +1,7 @@ | ||
// Copyright 2019-2020 Rene Rivera | ||
// Copyright 2003, 2006 Vladimir Prus | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE.txt or http://www.boost.org/LICENSE_1_0.txt) | ||
// (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt) | ||
|
||
= B2 contributor guidelines | ||
|
||
|
@@ -11,23 +11,18 @@ contains guidelines which helps to assure that development goes on smoothly, and | |
changes are made quickly. | ||
|
||
The guidelines are not mandatory, and you can decide for yourself which one to | ||
follow. But note, that 10 mins that you spare writing a comment, for example, | ||
follow. But note, the 10 mins that you spare writing a comment, for example, | ||
might lead to significantly longer delay for everyone. | ||
|
||
Before contributing, make sure you are subscribed to our mailing list | ||
at [email protected]. | ||
|
||
== Additional resources include | ||
|
||
=== The issue tracker | ||
|
||
https://github.com/boostorg/build/issues | ||
|
||
=== Mailing list | ||
https://github.com/bfgroup/b2/issues | ||
|
||
[email protected] | ||
=== Discussion forums | ||
|
||
http://lists.boost.org/boost-build/ | ||
https://github.com/bfgroup/b2/discussions | ||
|
||
== BUGS and PATCHES | ||
|
||
|
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.