-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
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
grafx2: 2.4 -> 2.6 #57739
grafx2: 2.4 -> 2.6 #57739
Conversation
fac2a79
to
62b11b4
Compare
The postFetch argument now works as expected regardless of the fetching method used for the major forges. If specialization is needed for directly overriding the fetcher arguments, that is also available with gitPostFetch, zipPostFetch, and zipExtraPostFetch. This should make fetchFromGitHub's postFetch in particular less surprising.
recoil: init at 4.3.1 cito: init at 0.4 and Git HEAD These extra packages allow for a more comprehensive build from source for GrafX2.
Can you please split this into two PR's? Also for |
Hmm this builds for me on non-nixos linux x86_64 but
|
@bb010g Are you still interested in finishing this? |
grafx2 2.7 is out ! ;) |
Sorry about the delay. Currently reworking this with better style. First commit (cito) is up at bb010g/nixpkgs@14eb843 (on the There's a strange stripping/ |
Hello, I'm a bot and I thank you in the name of the community for your contributions. Nixpkgs is a busy repository, and unfortunately sometimes PRs get left behind for too long. Nevertheless, we'd like to help committers reach the PRs that are still important. This PR has had no activity for 180 days, and so I marked it as stale, but you can rest assured it will never be closed by a non-human. If this is still important to you and you'd like to remove the stale label, we ask that you leave a comment. Your comment can be as simple as "still important to me". But there's a bit more you can do: If you received an approval by an unprivileged maintainer and you are just waiting for a merge, you can @ mention someone with merge permissions and ask them to help. You might be able to find someone relevant by using Git blame on the relevant files, or via GitHub's web interface. You can see if someone's a member of the nixpkgs-committers team, by hovering with the mouse over their username on the web interface, or by searching them directly on the list. If your PR wasn't reviewed at all, it might help to find someone who's perhaps a user of the package or module you are changing, or alternatively, ask once more for a review by the maintainer of the package/module this is about. If you don't know any, you can use Git blame on the relevant files, or GitHub's web interface to find someone who touched the relevant files in the past. If your PR has had reviews and nevertheless got stale, make sure you've responded to all of the reviewer's requests / questions. Usually when PR authors show responsibility and dedication, reviewers (privileged or not) show dedication as well. If you've pushed a change, it's possible the reviewer wasn't notified about your push via email, so you can always officially request them for a review, or just @ mention them and say you've addressed their comments. Lastly, you can always ask for help at our Discourse Forum, or more specifically, at this thread or at #nixos' IRC channel. |
@bb010g what's the status ? |
I marked this as stale due to inactivity. → More info |
Could you rebase your work on a recent commit and focus on upgrading grafx2 first? aed0528 should not be mixed with updating grafx2 |
Closing as dead. |
Motivation for this change
Upgrading Grafx2 to an actively maintained release, as well as ensuring at least one distribution actually attempts truer source builds of dependencies like recoil.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after): adds 421.7kbUpgrades Grafx2 from 2.4 to 2.6, introduces its dependency RECOIL at 4.3.1, and introduces RECOIL's dependency
cito
at the latest release 0.4 and the latest Git revision8cd935e
.As I was implementing
grafx2
'spostFetch
hook to insert a revision version file normally included from tarballs, I noticed thatfetchFromGitHub
is inconsistent in howpostFetch
works due to using eitherfetchzip
(usespostFetch
, so user extends onextraPostFetch
) orfetchgit
(extends onpostFetch
). The first commit standardizespostFetch
over forge fetchers and updates all usages in Nixpkgs as needed.