Commit Graph

195 Commits

Author SHA1 Message Date
Sergei Trofimovich
47dc341f33 mercurial: 6.8.1 -> 6.8.2 2024-10-29 07:00:36 +00:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Jade Lovelace
5dfdb09561 tree-wide: remove eelco as maintainer from things he no longer maintains
While preparing this change, I read the git blame on all of the files I
touched. I saw a working lifetime of building this system which we use
every day and love dearly and keep maintained ourselves. I saw commits
from a 14 year range between 2003 to 2017!! I could not be more thankful
for Eelco's work on building large parts of the foundation of nixpkgs
that all of us rely on now.

However, the end date of that range of the files I looked at the blame
on was 2017. I did not see surviving code from any newer date than that.
Looking at the Git logs, Eelco has been working on other things, and
that's totally fine.

However, it means that our maintenance metadata is out of date on a lot
of packages, and *that*'s the reason I am submitting this change. There
are a lot of packages that don't have anyone with their name on them to
be pinged if they need attention, even if they have had recent activity
(although it is never clear if recent activity was just someone fixing
it because ZHF or because the package actually matters to them).
There are a lot of packages with storied history that maybe don't need
to be in the set anymore at all since they have not been touched in
years; or maybe they are simply finished.

Empty maintainer lists should be a sign that we need to figure out who
maintains it or potentially remove it if it has rotted, and allowing the
maintainer list to be empty if it is already not maintained is part of a
healthy repository ecology.

Either way, I would like to have the maintenance metadata not mislead
anyone into sending Eelco emails about packages he doesn't, in practice,
work on anymore. I have not removed his name from everything; there are
some things that he is the upstream for or has worked on more recently,
for instance, like Nix, which I have left alone.
2024-08-21 01:17:45 -07:00
euxane
2168c0df8d mercurial: 6.8 -> 6.8.1
Changelog: https://wiki.mercurial-scm.org/Release6.8
2024-08-01 19:41:52 +02:00
euxane
a01e0a2617 mercurial: skip some tests broken with python 3.12 2024-07-16 11:37:16 +02:00
euxane
47f435dbbf mercurial: add setuptools' distutils to test env
The distutils module is required for the test suite to run.

Upstream issue: https://bz.mercurial-scm.org/show_bug.cgi?id=6887
2024-07-14 15:06:18 +02:00
euxane
0ce32a5a5c mercurial: 6.7.4 -> 6.8
This release also fixes Rust support with Python 3.12,
allowing us to re-enable rustSupport for that version of Python.

Changelog: https://wiki.mercurial-scm.org/Release6.8
2024-07-08 20:43:17 +02:00
euxane
422d0aee60 mercurial: 6.6.3 -> 6.7.4
Changelog: https://wiki.mercurial-scm.org/Release6.7
2024-06-16 22:46:03 +02:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Sigmanificient
0058552891 pkgs/applications: remove uneeded fetchpatch arguments 2024-05-21 03:12:20 +02:00
Sergei Trofimovich
61e5079c98 mercurial: 6.6.2 -> 6.6.3
Changes: https://wiki.mercurial-scm.org/Release6.6
2024-02-21 21:55:42 +00:00
Sandro Jäckel
653837881e
treewide: replace lib/${python.libPrefix}/site-packages with its shorthand ${python.sitePackages}
which should be always preferred
2024-01-30 19:56:57 +01:00
pacien
6362ce27a8 mercurial: 6.6.1 -> 6.6.2
Release notes: https://wiki.mercurial-scm.org/Release6.6
2024-01-12 18:30:21 +01:00
Martin Weinelt
6bb53dd507
mercurial: fix build with python3.12 2023-12-20 20:45:58 +01:00
pacien
cbda7b451e mercurial: 6.5.3 -> 6.6.1
Changelog: https://wiki.mercurial-scm.org/Release6.6
2023-12-07 14:58:50 +01:00
github-actions[bot]
6a1a469e7c
Merge staging-next into staging 2023-11-27 18:01:29 +00:00
h7x4
41974d5ed9
treewide: add mainProgram 2023-11-27 02:17:53 +01:00
pacien
216a408812 mercurial: 6.5.2 -> 6.5.3
Changelog: https://wiki.mercurial-scm.org/Release6.5
2023-11-07 11:39:34 +01:00
pacien
5d9e03bdcc mercurial: add changelog to meta attrs 2023-09-06 20:16:31 +02:00
pacien
a463c12944 mercurial: 6.5.1 -> 6.5.2
Changelog: https://wiki.mercurial-scm.org/Release6.5
2023-09-06 20:16:21 +02:00
pacien
3e7b01767f mercurial: 6.5 -> 6.5.1
Changelog: https://wiki.mercurial-scm.org/Release6.5
2023-08-07 17:54:41 +02:00
pacien
64eda016c3 mercurial: 6.4.5 -> 6.5
Changelog: https://wiki.mercurial-scm.org/Release6.5
2023-07-11 19:35:49 +02:00
pacien
e022576758 mercurial: 6.4.3 -> 6.4.5
Changelog: https://wiki.mercurial-scm.org/Release6.4
2023-06-22 13:56:14 +02:00
Alyssa Ross
5e06b3cb19 treewide: don't use rustPlatform.rust
This will be deprecated in the next commit.
2023-05-12 15:31:21 +00:00
pacien
4788eaa366 mercurial: 6.4.2 -> 6.4.3
Release notes: https://wiki.mercurial-scm.org/Release6.4
2023-05-04 14:30:31 +02:00
pacien
b3927c2a0f mercurial: 6.4.1 -> 6.4.2
Contains an important bug fix for data corruption.

Release notes: https://wiki.mercurial-scm.org/Release6.4
2023-04-18 12:27:44 +02:00
pacien
d981e4c876 mercurial: 6.4 -> 6.4.1
Changelog: https://www.mercurial-scm.org/wiki/Release6.4
2023-04-13 14:29:24 +02:00
pacien
ecbaab1c13 mercurial: 6.3.3 -> 6.4
This also adds some minor patches for the tests (runner and output
matching), and removes a fixed test from the exclusion list.

Changelog: https://www.mercurial-scm.org/wiki/Release6.4
2023-04-07 17:23:37 +02:00
pacien
22a4999e90 mercurial: 6.3.2 -> 6.3.3
Changelog: https://www.mercurial-scm.org/wiki/WhatsNew#Mercurial_6.3_.282022-11-14.29_to_6.3.3_.282023-03-02.29
2023-03-04 19:00:52 +01:00
techknowlogick
f08b8e9e38 mercurial: 6.3.1 -> 6.3.2 2023-01-04 11:37:53 -05:00
pacien
2530e9b106 mercurial: 6.3.0 -> 6.3.1
This also disables a test failing with OpenSSL v3, and re-enables
another test that has been fixed.

Changelog: https://www.mercurial-scm.org/wiki/Release6.3
2022-11-23 14:53:20 +01:00
pacien
f8a32e2df4 mercurial: 6.2.3 -> 6.3.0
This also re-enables a test which has been fixed, and disables another
newly broken one.

Changelog: https://www.mercurial-scm.org/wiki/Release6.3
2022-11-14 21:39:41 +01:00
Markus S. Wamser
c9d167f174 pkgs.applications: remove unused args 2022-10-12 16:00:16 +02:00
pacien
f487fd711d mercurial: 6.2.2 -> 6.2.3 2022-10-04 11:35:08 +02:00
Luke Granger-Brown
c9418d5a11 mercurial: blocklist some tests that fail under Python 3.10 2022-09-04 19:57:09 +01:00
techknowlogick
4a046ce1c5 mercurial: 6.2.1 -> 6.2.2 2022-09-01 20:34:59 -04:00
techknowlogick
daf6e4b5fd mercurial: 6.2 -> 6.2.1 2022-07-28 13:16:40 -04:00
techknowlogick
26d105482b mercurial: 6.1.4 -> 6.2 2022-07-11 22:38:23 -04:00
pacien
94f540dde4 mercurial: 6.1.3 -> 6.1.4
Changelog: https://www.mercurial-scm.org/wiki/Release6.1
2022-06-16 22:11:36 +02:00
techknowlogick
ca19b56a93 mercurial: add techknowlogick as maintainer 2022-06-02 11:15:11 -04:00
techknowlogick
98bc447a8a mercurial: 6.1.2 -> 6.1.3 2022-06-02 11:14:34 -04:00
pacien
cfe0566da1 mercurial: 6.1.1 -> 6.1.2
Setting `HGMODULEPOLICY` for the tests is now required for the native
components to be properly detected when testing the already built binary
with `--with-hg`.

This release contains an important bug fix:
"Fix incorrect metadata causing dirstate-v2 data loss in edge case"

Release notes: https://www.mercurial-scm.org/wiki/Release6.1
2022-05-05 23:39:23 +02:00
techknowlogick
3aeaa2755d mercurial: 6.1 -> 6.1.1 2022-04-05 12:06:24 -04:00
Luke Granger-Brown
e2d6f416d5 mercurial: add patch to fix the libc buffer type for aarch64-linux 2022-03-14 14:20:46 +00:00
techknowlogick
58cd95c938 mercurial: 6.0.3 -> 6.1 2022-03-12 00:02:37 -05:00
Luke Granger-Brown
f491e8c332 mercurial: disable all non-essential phases in withExtensions 2022-03-11 15:42:05 +00:00
Sandro
f31e080cc4
Merge pull request #161414 from Stunkymonkey/treewide-appendToName 2022-02-28 14:25:43 +01:00
Felix Buehler
a50f8ee433 mercurialFull: remove appendToName to have a consistent package name for repology 2022-02-28 12:46:14 +01:00
Felix Buehler
8142ba3e88 mercurial.withExtensions: deprecate phases 2022-02-23 16:48:58 +01:00
pacien
7e816dea4c mercurial: 6.0.2 -> 6.0.3 2022-02-18 15:56:42 +01:00