about summary refs log tree commit diff
path: root/maintainers/scripts
AgeCommit message (Collapse)AuthorFilesLines
2022-12-05update-luarocks-shell: rename GitPythonFabian Affolter1-1/+1
2022-11-29maintainers/scripts: Use Bash shebang line for files with bashismsVictor Engmark3-3/+3
2022-11-17scripts/pluginupdate: fix fetchgit indentationfigsoda1-4/+4
2022-11-09Merge pull request #196007 from wegank/fdl11-removeSandro1-2/+2
2022-11-04vimPlugins: also update nvim-treesitter grammars in the update scriptfigsoda1-5/+5
2022-11-01Merge pull request #188626 from rapenne-s/include_patches_tarballsAnderson Torres2-2/+8
find-tarballs.nix: Include patches
2022-10-27licenses: remove fdl13Weijia Wang1-1/+1
2022-10-27licenses: remove fdl12Weijia Wang1-1/+1
2022-10-25luaPackages.luafilesystem: 1.7.0 -> 1.8.0s-ol1-1/+1
New version brings support for Lua 5.4. http://lunarmodules.github.io/luafilesystem/#history Close #196932
2022-10-22Merge pull request #160453 from jtojnar/upd-nix-unstable-gitJosé Romildo Malaquias1-1/+11
maintainers/scripts/update.nix: Fix deduplication for unstableGitUpdater
2022-10-17Merge pull request #194136 from mweinelt/feature-freze-teams-http-error-logMartin Weinelt1-1/+1
2022-10-15vimPlugins.nvim-cmp: follow HEAD and updatefigsoda1-1/+1
2022-10-12haskellPackages.cabal2nix-unstable: 2022-07-22 -> 2022-10-10sternenseemann1-1/+1
2022-10-11Merge pull request #195431 from figsoda/vustedMatthieu Coudron1-1/+2
2022-10-10luaPackages.vusted: init at 2.1.1-1figsoda1-0/+1
2022-10-10luaPackages: fix csvfigsoda1-1/+1
2022-10-06Merge master into staging-nextgithub-actions[bot]1-0/+1
2022-10-03maintainer/scripts/feature-freeze-teams: Fix HTTP status line logMartin Weinelt1-1/+1
2022-10-01luaPackages.jsregexp: init at 0.0.5-1Stanislav Asunkin1-0/+1
2022-09-28Merge pull request #192851 from Artturin/treewides1Artturi1-1/+3
2022-09-26maintainers/scripts/update.nix: make package name, pname and old version ↵José Romildo1-1/+11
available to the update script
2022-09-26treewide: makeWrapper to nativeBuildInputsArtturin1-1/+3
this should be all of them other than the failed splices found with nixpkgs-lint
2022-09-24luaPackages: fennel -> luaPackages.fennelGabriel Fontes1-0/+1
2022-09-21haskell-language-server: 1.7.0.0 -> 1.8.0.0maralorn1-0/+7
2022-09-20maintainers/scripts/update.nix: exit with nonzero exit code when script failsWinter1-2/+10
2022-09-11luaPackages: update and adding a few neovim pluginsMatthieu Coudron1-0/+1
- had to disable the failing lush-nvim tests (it can't find vim.api.nvim_command for a myssterious reason).
2022-09-11update-luarocks-package: better way to specify lua versionMatthieu Coudron2-18/+17
instead of running luarocks with the requested interpreter, we can ask any interpreter to search for a specific version via --lua-version. It avoids building/running different luarocks-nix just for that. use tagged release of nvim-cmp
2022-08-29find-tarballs.nix: isPatch should be defined only when postFetch is not emptySolene Rapenne1-1/+1
2022-08-28copy-tarballs.pl: skip files that are patchesSolene Rapenne1-0/+6
2022-08-28find-tarballs.nix: add a new attribute and include patches filesSolene Rapenne1-2/+2
2022-08-14Merge pull request #179896 from erikarvstedt/fix-bash-exit-handlerSebastián Mancilla1-1/+1
treewide: fix bash exit handlers
2022-08-09luaPackages.lua-subprocess: init at scm-1Spencer Pogorzelski1-0/+1
2022-08-06luaPackages.luaunit: init at 3.4-1Jan Schmitt1-0/+1
2022-08-05luaPackages.protobuf: add maintainerJan Schmitt1-1/+1
2022-08-05luaPackages.protobuf: init at 0.4.0Jan Schmitt1-0/+1
2022-08-03Merge master into haskell-updatesgithub-actions[bot]1-0/+1
2022-08-02luaPackages.serpent: add maintainerJan Schmitt1-1/+1
2022-08-02luaPackages.serpent: init -> 0.30-2Jan Schmitt1-0/+1
2022-08-02maintainers/scripts/haskell/hydra-report: fix capitalisationMalte Brandy1-2/+2
2022-07-22maintainers/scripts/haskell/hydra-report: Add hint about eval errorsMalte Brandy1-2/+2
2022-07-07fetch-kde-qt.sh: get sha256 from serverMilan Hauth1-12/+148
2022-07-05Merge pull request #179483 from pennae/mdize-maintainer-scriptpennae1-0/+83
maintainers: add a helper script for the options doc conversion
2022-07-05maintainers/mdize-module: Add known limitationsRobert Hensing1-0/+4
2022-07-02treewide: fix bash exit handlersErik Arvstedt1-1/+1
Transform exit handlers of the form trap cleanup EXIT [INT] [TERM] [QUIT] [HUP] [ERR] (where cleanup is idempotent) to trap cleanup EXIT This fixes a common bash antipattern. Each of the above signals causes the script to exit. For each signal, bash first handles the signal by running `cleanup` and then runs `cleanup` again when handling EXIT. (Exception: `vscode/*` prevents the second run of `cleanup` by removing the trap in cleanup`). Simplify the cleanup logic by just trapping exit, which is always run when the script exits due to any of the above signals. Note: In case of borgbackup, the exit handler is not idempotent, but just trapping EXIT guarantees that it's only run once.
2022-06-29maintainers/fix-maintainers.pl: initajs1241-0/+52
2022-06-28maintainers: add a helper script for the options doc conversionpennae1-0/+79
this script can be used to attempt an automatic conversion of option docs for most modules. it'll also show a diff of options.json before and after the changes, which should be a good form for checking for unwanted changes. we specifically show a json diff rather than an xml diff because newline changes in json are "\n" added are removed, and those are easier for diff tools to pick out and show in a meaningful way for this process. it does *not* check for incorrectly applied changes though, those aren't easy enough to do automatically for this script.
2022-06-18luaPackages.sqlite: init at v1.2.2-0Matthieu Coudron1-0/+1
2022-06-13luaPackages.luv: fix buildMatthieu Coudron1-1/+0
2022-06-13update-luarocks-package: fix mirrorsMatthieu Coudron2-4/+6
2022-06-13luarocks: 3.8.0 -> 3.9.0Matthieu Coudron1-2/+6
pass the config to the luarocks binary also bumps luarocks-nix: bump package due to the luarocks rebase