Commit Graph

21 Commits

Author SHA1 Message Date
Peder Bergebakken Sundt
3a83109945
treewide: change ${pname} to string literal, pt2 (#336195)
* aescrypt: change `${pname}` to string literal

* bandwidth: change `${pname}` to string literal

* bc: change `${pname}` to string literal

* bdfresize: change `${pname}` to string literal

* birdfont: change `${pname}` to string literal

* brltty: change `${pname}` to string literal

* calamares: change `${pname}` to string literal

* ccal: change `${pname}` to string literal

* clac: change `${pname}` to string literal

* colord-gtk4: change `${pname}` to string literal

* colord: change `${pname}` to string literal

* colorless: change `${pname}` to string literal

* cunit: change `${pname}` to string literal

* datamash: change `${pname}` to string literal

* dateutils: change `${pname}` to string literal

* desktop-file-utils: change `${pname}` to string literal

* digitemp: change `${pname}` to string literal

* ding-libs: change `${pname}` to string literal

* docbook2mdoc: change `${pname}` to string literal

* dtach: change `${pname}` to string literal

* empty: change `${pname}` to string literal

* entr: change `${pname}` to string literal

* envsubst: change `${pname}` to string literal

* ethtool: change `${pname}` to string literal

* fdtools: change `${pname}` to string literal

* filebench: change `${pname}` to string literal

* findutils: change `${pname}` to string literal

* fortune: change `${pname}` to string literal

* fpart: change `${pname}` to string literal

* fxlinuxprintutil: change `${pname}` to string literal

* gbdfed: change `${pname}` to string literal

* getopt: change `${pname}` to string literal

* github-copilot-cli: change `${pname}` to string literal

* gparted: change `${pname}` to string literal

* hddtemp: change `${pname}` to string literal

* hdfview: change `${pname}` to string literal

* hpcg: change `${pname}` to string literal

* hpl: change `${pname}` to string literal

* ink: change `${pname}` to string literal

* ised: change `${pname}` to string literal

* isoimagewriter: change `${pname}` to string literal

* kronometer: change `${pname}` to string literal

* libsForQt5.qt5ct: change `${pname}` to string literal

* lilo: change `${pname}` to string literal

* lockfileProgs: change `${pname}` to string literal

* map-cmd: change `${pname}` to string literal

* mcrypt: change `${pname}` to string literal

* most: change `${pname}` to string literal

* mrtg: change `${pname}` to string literal

* ms-sys: change `${pname}` to string literal

* multitime: change `${pname}` to string literal

* nbench: change `${pname}` to string literal

* osinfo-db-tools: change `${pname}` to string literal

* parallel-full: change `${pname}` to string literal

* phoronix-test-suite: change `${pname}` to string literal

* pod2mdoc: change `${pname}` to string literal

* powerline-rs: change `${pname}` to string literal

* recoverjpeg: change `${pname}` to string literal

* recutils: change `${pname}` to string literal

* routino: change `${pname}` to string literal

* rpm-ostree: change `${pname}` to string literal

* screen: change `${pname}` to string literal

* sharedown: change `${pname}` to string literal

* statserial: change `${pname}` to string literal

* taoup: change `${pname}` to string literal

* texi2mdoc: change `${pname}` to string literal

* tmpwatch: change `${pname}` to string literal

* toilet: change `${pname}` to string literal

* triehash: change `${pname}` to string literal

* ttfautohint: change `${pname}` to string literal

* txt2man: change `${pname}` to string literal

* urjtag: change `${pname}` to string literal

* uudeview: change `${pname}` to string literal

* uutils-coreutils: change `${pname}` to string literal

* vttest: change `${pname}` to string literal

* wacomtablet: change `${pname}` to string literal

* xcd: change `${pname}` to string literal

* xdaliclock: change `${pname}` to string literal

* xjobs: change `${pname}` to string literal

* feishin: change `${pname}` to string literal

* gifsicle: change `${pname}` to string literal

* nzbhydra2: change `${pname}` to string literal

* vatprism: change `${pname}` to string literal

* webfs: change `${pname}` to string literal

* yggstack: change `${pname}` to string literal
2024-08-20 17:23:37 -07: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
R. Ryantm
36b96b344d dateutils: 0.4.10 -> 0.4.11 2024-01-26 06:04:33 +00:00
figsoda
f1ec434848 pkgs/tools/misc: remove dead code
with the help of deadnix & nil
2023-07-13 17:37:07 +03:00
Vladimír Čunát
7561ba5987
dateutils: drop a test failing since tzdata-2022g 2022-12-10 10:58:13 +01:00
R. Ryantm
e36bf24627 dateutils: 0.4.9 -> 0.4.10 2022-06-25 13:19:59 +00:00
Sebastián Mancilla
6eb8b52444 dateutils: enable on darwin 2021-11-28 22:16:46 -03:00
Mica Semrick
6f9c7b1f0c dateutils: 0.4.8 -> 0.4.9 2021-08-24 20:51:11 -07:00
Mica Semrick
5b4b180983 dateutils: 0.4.7 -> 0.4.8 2021-05-07 12:34:11 -07:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938

meta = with stdenv.lib;

is a widely used pattern. We want to slowly remove
the `stdenv.lib` indirection and encourage people
to use `lib` directly. Thus let’s start with the meta
field.

This used a rewriting script to mostly automatically
replace all occurances of this pattern, and add the
`lib` argument to the package header if it doesn’t
exist yet.

The script in its current form is available at
https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2021-01-11 10:38:22 +01:00
Maximilian Bosch
08bc712843
dateutils: fix build w/glibc-2.32 2020-09-12 23:04:43 +02:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
R. RyanTM
1bc3146229 dateutils: 0.4.6 -> 0.4.7 2020-02-07 04:58:44 +00:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
R. RyanTM
30e3fa03eb dateutils: 0.4.5 -> 0.4.6 (#58048)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/dateutils/versions
2019-03-24 01:03:19 +01:00
Renaud
0f283b4f5a dateutils: 0.4.4 -> 0.4.5 (#47961)
datezone needs TZdata
+ enabling parallel building
+ run the tests suite
2018-10-06 15:26:54 +02:00
R. RyanTM
ca1362e429 dateutils: 0.4.3 -> 0.4.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/dateutils/versions.
2018-08-17 04:06:29 -07:00
Ryan Mulligan
1e2afe8b19 dateutils: 0.4.2 -> 0.4.3
Semi-automatic update. These checks were done:

- built on NixOS
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/strptime -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/strptime --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/strptime -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/strptime --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateadd -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateadd --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateadd -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateadd --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateconv -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateconv --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateconv -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateconv --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datediff -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datediff --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datediff -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datediff --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dategrep -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dategrep --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dategrep -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dategrep --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateround -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateround --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateround -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateround --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateseq -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateseq --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateseq -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/dateseq --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datesort -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datesort --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datesort help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datesort -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datesort --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datetest -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datetest --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datetest -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datetest --version` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datezone -h` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datezone --help` got 0 exit code
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datezone -V` and found version 0.4.3
- ran `/nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3/bin/datezone --version` and found version 0.4.3
- found 0.4.3 with grep in /nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3
- found 0.4.3 in filename of file in /nix/store/2nrrhpq3w9cxjrxzpi6w3czfzn0lmbsi-dateutils-0.4.3
2018-03-08 01:55:09 -08:00
mimadrid
32e329b1c7
dateutils: 0.4.1 -> 0.4.2 2017-08-13 01:01:07 +02:00
Tuomas Tynkkynen
c1597af1f2 dateutils: Fix whitespace 2017-07-25 17:29:21 +03:00
Mica Semrick
70a7fe9d03 dateutils: init at 0.4.1 2017-02-08 19:31:31 -08:00