-
-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Basic Darcs + Pijul support (ignoring VCS dirs); Direnv (separated) #503
Open
toastal
wants to merge
3
commits into
gittup:master
Choose a base branch
from
toastal:darcs-support
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Works for me in a Nix overlay {
overlays = {
tools = final: prev: {
tup = prev.tup.overrideAttrs (
finalAttrs: prevAttrs: {
version = "0.8.0+2024-06-06";
src = final.fetchzip {
url = "https://github.com/gittup/tup/archive/4247a523587df54bd4a65ec42c4247a8488c050e.tar.gz";
hash = "sha256-vHzfUf7O7DoiuyxCu/zpXmQcqcyBOJoF5UM4CTtB1B8=";
};
patches = (prev.patches or [ ]) ++ [
(final.fetchpatch {
url = "https://github.com/toastal/tup/commit/2ec088e9ee39c277c6c744bcfb5bc68c1c8088b7.patch";
hash = "sha256-hk1RS+S4Dhb0rXj2gjPUUkpcie+8LD7WpKa+JOQ3chw=";
})
(final.fetchpatch {
url = "https://github.com/toastal/tup/commit/971ef896830c8e092062bd5a362ce84403642f23.patch";
hash = "sha256-tpGqd37uCRq0aKuIhg1R6wI5UFRAYQ1u4VzYs2sNSgo=";
})
];
}
);
};
};
} |
@gittup is there a way to say these fairly trivial patches are 0BSD or BSD-2-Clause or something? I’m not against CLAs in theory for the purpose of developers getting some additional income, but I do not wish to sign this CLA as I do not want to share the required private personal info. |
toastal
changed the title
Basic Darcs support (ignoring VCS dir)
Basic Darcs + Pijul support (ignoring VCS dirs)
Jul 18, 2024
toastal
force-pushed
the
darcs-support
branch
2 times, most recently
from
July 18, 2024 15:02
f3d209e
to
971ef89
Compare
I added Direnv like #475 but in a separate commit so it can be dropped if not wanted. |
toastal
changed the title
Basic Darcs + Pijul support (ignoring VCS dirs)
Basic Darcs + Pijul support (ignoring VCS dirs); Direnv (separated)
Jul 28, 2024
gittup
reviewed
Aug 30, 2024
Darcs <https://darcs.net> is a decentralized version control system. Advanced support would be adding .boring file support like .gitignore.
Pijul <https://pijul.org> is a decentralized version control system. Ignorefile use .ignore which use the same as the Git-branded, .gitignore file… so more advanced support could be added.
Direnv <https://direnv.net> is a tool for tracking your local developer environment. With the rise of Nix popularity & its hooks for local Nix development, this tool has become quite popular, but it caches changes in a local directory that makes Tup noisy. This commit is a duplicate of another proposed patch, however, unlike that patchset, this is standalone.
toastal
force-pushed
the
darcs-support
branch
from
September 2, 2024 03:29
12edc98
to
7d4954d
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Darcs https://darcs.net & Pijul https://pijul.org/ are decentralized version control systems.
Advanced Darcs support would be adding .boring file support like .gitignore, but it uses a different syntax. Pijul ignorefiles use
.ignore
which use the same as the Git-branded, .gitignore file… so more advanced support could be added.