-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
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
treewide: Fix or comment where fetchFromGitHub fetches a commit which is not on a branch on the specified repo #110857
Changes from all commits
5d4a0ae
0b90d29
b00ab74
897b67b
99892a9
76834cc
24e36fd
a8758fd
0e80a5f
7c450f4
6edb917
25e7d39
9a4494a
f8cd0b4
47c869a
6df9963
10c78e9
f955932
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ fetchFromGitHub { | |
|
||
owner = "tomokuni"; | ||
repo = "Myrica"; | ||
# commit does not exist on any branch on the target repository | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't this commit found is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Almost all commits are no different and no longer contain the TCC files. |
||
rev = "b737107723bfddd917210f979ccc32ab3eb6dc20"; | ||
sha256 = "187rklcibbkai6m08173ca99qn8v7xpdfdv0izpymmavj85axm12"; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,8 @@ stdenv.mkDerivation rec { | |
src = fetchFromGitHub { | ||
owner = "nix-community"; | ||
repo = "acpi_call"; | ||
rev = "3d7c9fe5ed3fc5ed5bafd39d54b1fdc7a09ce710"; | ||
sha256 = "09kp8zl392h99wjwzqrdw2xcfnsc944hzmfwi8n1y7m2slpdybv3"; | ||
rev = "fe4cd0124099b88b61f83006023bc0d95e742e75"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Release 1.2.1 is not that much newer than this tag and includes fe4cd01. Maybe use it 🤔 ? |
||
sha256 = "1rksbg78i7y2wzam9p6kbhx8rmkaiq0kqg8nj7k0j6d25m79289s"; | ||
}; | ||
|
||
hardeningDisable = [ "pic" ]; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ buildLinux (args // { | |
src = fetchFromGitHub { | ||
owner = "koverstreet"; | ||
repo = "bcachefs"; | ||
# commit does not exist on any branch on the target repository | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did not want to change anything here because I was to lazy to regenerate the deps.nix. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, I mean, I found this exactly commit in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just look at the link I posted. It is exactly this commit and this is the show of the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe your script is bugged 🤔 ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. NVM GitHub seems to be even more dumb than I thought (if I change |
||
rev = "6a505b63ed3003faf5000f19fd08bbd477d93fbc"; | ||
sha256 = "1rf34gzv9npafp1c3i6lymk3b0gnqp4rb0wl33pw6yrpgnsry3cc"; | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to have a proper release now: https://github.com/openAVproductions/openAV-ArtyFX/releases/tag/release-1.3.1
That is not much more advanced than commit 8c542627d936a01b1d97825e7f26a8e95633f7aa (just 4 commits behind). Could we switch to it instead 🤔 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really want to update anything with this PR. Could you open a new PR with that update?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah ok, I thought that some of the fixes here were bumps (like
django-crispy-forms
), but you just moved to the release that pointed to the same commit?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's The only bump. For all other packages I tried to find the closest commit.