Commit Graph

91 Commits

Author SHA1 Message Date
Jenny
1a05dd1d68
wealthfolio: 1.0.18 -> 1.0.21 (#355939) 2024-11-23 16:00:41 +01:00
Peder Bergebakken Sundt
f1bf4d74ef webdav: 5.4.2 -> 5.4.3
Diff: https://github.com/hacdias/webdav/compare/v5.4.2...v5.4.3
2024-11-20 18:40:58 +01:00
Azat Bahawi
7eb54aaff2
werf: 2.10.9 -> 2.12.1 (#355151) 2024-11-18 02:11:37 +03:00
kilianar
eb80f0baa3 wealthfolio: 1.0.18 -> 1.0.21
https://github.com/afadil/wealthfolio/releases/tag/v1.0.21
2024-11-17 18:39:13 +01:00
seth
9ae02ff8a8
treewide: adopt new cargo-tauri versions 2024-11-14 02:27:32 -05:00
azahi
51dc281b53
werf: 2.10.9 -> 2.12.1
https://github.com/werf/werf/releases/tag/v2.12.1
https://github.com/werf/werf/compare/v2.10.9...v2.12.1
2024-11-11 10:48:44 +03:00
Kerstin Humm
f32cd1b634
weblate: 5.7.2 -> 5.8.1
https://github.com/WeblateOrg/weblate/releases/tag/weblate-5.8
https://github.com/WeblateOrg/weblate/releases/tag/weblate-5.8.1
https://github.com/WeblateOrg/weblate/releases/tag/weblate-5.8.2
https://github.com/WeblateOrg/weblate/releases/tag/weblate-5.8.3
2024-11-10 16:29:16 +01:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00
rewine
d5a0dbedb6
wechat-uos: 4.0.0.21 -> 4.0.0.23 (#354378) 2024-11-08 21:53:41 +08:00
Bu Kun
21107d7bc1
wechat-uos: 4.0.0.21 -> 4.0.0.23 2024-11-08 11:15:44 +08:00
Bu Kun
fd10acfd94
wechat-uos: Remove libuosdevicea and license as they no longer needed in 4.0.0.21 2024-11-08 10:46:44 +08:00
Bu Kun
ce43a2bab8
wechat-uos: Add hidpi scale support 2024-11-06 14:46:40 +08:00
Sefa Eyeoglu
5a6d31066e
weblate: fix build (#353487) 2024-11-05 08:03:52 +01:00
Bu Kun
8218cc6bd1
wechat-uos: 1.0.0.241 -> 4.0.0.21 2024-11-04 14:26:19 +08:00
Weijia Wang
044e6e833b weblate: fix build 2024-11-03 21:27:19 +01:00
K900
0c45a8b5c4 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-28 21:46:13 +03:00
kilianar
c4be0fbe51 wealthfolio: init at 1.0.18
https://github.com/afadil/wealthfolio/releases/tag/v1.0.18
2024-10-27 21:12:38 +01:00
Fabián Heredia Montiel
fdc64cfee0 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-22 09:14:28 -06:00
Martin Weinelt
07900c10c9
weblate: relax qrcode constraint 2024-10-22 02:49:32 +02:00
Bobby Rong
c0a9799ad1
tinysparql: Renamed from tracker
The project renamed in 3.8.

This commit is done by hand.
2024-10-14 20:54:11 +08:00
Kerstin Humm
4fc86edad4 weblate: fix version constraints 2024-10-13 17:30:40 +02:00
R. Ryantm
8ffd2e8849 webcord: 4.9.2 -> 4.10.2 2024-10-09 08:35:19 +00:00
Benedikt Broich
648570884a
webfontkitgenerator: move to by-name 2024-10-08 12:02:11 +02:00
R. Ryantm
d114c27426 werf: 2.10.7 -> 2.10.9 2024-10-06 09:43:29 +00:00
R. Ryantm
05bd4e31cc werf: 2.10.6 -> 2.10.7 2024-09-28 18:52:11 +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
R. Ryantm
3ac00ab2f1 weaver: 0.9.2 -> 0.10.0 2024-09-21 03:07:22 +00:00
R. Ryantm
b7e0e296fd werf: 2.10.5 -> 2.10.6 2024-09-17 23:35:50 +00:00
nicoo
2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00
Aleksana
518750b2cb
weaver: init at 0.9.2 (#340922) 2024-09-14 14:05:04 +08:00
Aaron Jheng
e3f5b04c90
weaver: init at 0.9.2 2024-09-13 10:53:13 +08:00
Cryolitia PukNgae
3996cfcc77
wechat-uos: use libuosdevicea stub to get rid of openssl_1_1 2024-09-12 21:24:24 +08:00
éclairevoyant
49f7e34d6e
maintainers: remove eclairevoyant 2024-09-10 15:02:41 -04:00
Kerstin Humm
df6dfa1379
weblate: 5.7.1 -> 5.7.2
Changelog: https://github.com/WeblateOrg/weblate/releases/tag/weblate-5.7.2
2024-09-05 13:18:14 +02:00
Kerstin Humm
4fbe7b0c92 weblate: move extras from overrides into dependencies, add MIT license
some files are actually licensed by MIT
2024-09-04 12:54:31 +02:00
Kerstin Humm
13614951fc weblate: 5.7 -> 5.7.1
Changelog: https://github.com/WeblateOrg/weblate/releases/tag/weblate-5.7.1
2024-09-03 09:37:32 +02:00
R. Ryantm
5860c5d9d9 werf: 2.10.4 -> 2.10.5 2024-08-30 23:13:50 +00:00
R. Ryantm
a587460526 werf: 2.10.3 -> 2.10.4 2024-08-25 08:59:33 +00:00
Peter Hoeg
98a9b6e64c
webfs: 1.21 -> 1.21-unstable-2021-02-24 (#336497) 2024-08-22 16:42:28 +02:00
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
Kerstin Humm
f5bb4b807c weblate: 5.6.2 -> 5.7
Changelog: https://github.com/WeblateOrg/weblate/releases/tag/weblate-5.7

Also had to rework django-compressor settings and aligned them more
closely with the official docs:
https://cheat.readthedocs.io/en/latest/django/compressor.html
2024-08-19 16:10:40 +02:00
Aleksana
dacbc70556
Merge pull request #335658 from xddxdd/wechat-uos
wechat-uos: fix crashing issue caused by zerocallusedregs hardening
2024-08-19 21:20:47 +08:00
Lan Tian
539f2e7291
wechat-uos: fix crashing issue caused by zerocallusedregs hardening 2024-08-18 11:34:52 -07:00
R. Ryantm
65ea17f1a8 werf: 2.10.1 -> 2.10.3 2024-08-18 11:49:44 +00:00
Kerstin Humm
a5730c658f weblate: init at 5.6.2 2024-08-13 08:44:54 +02:00
R. Ryantm
473870e64a werf: 2.9.3 -> 2.10.1 2024-08-11 07:41:56 +00:00
R. Ryantm
0e33ef9a30 werf: 2.8.0 -> 2.9.3 2024-08-02 10:37:42 +00:00
zimbatm
8b6aed7ed3 webfs: move to by-name 2024-07-31 09:10:29 +02:00
R. Ryantm
800c28f627 werf: 2.6.7 -> 2.8.0 2024-07-21 00:35:36 +00:00
Azat Bahawi
67ab30a1aa
Merge pull request #325494 from r-ryantm/auto-update/werf
werf: 2.6.4 -> 2.6.7
2024-07-08 18:14:08 +00:00