From ec952cb4ba22e9d85543d7c1a3c7c9a73d08de32 Mon Sep 17 00:00:00 2001 From: Neil Mayhew Date: Sun, 5 Jun 2022 10:13:51 -0600 Subject: [PATCH 001/178] jl: Use derivation from haskellPackages jl was recently added to Hackage --- pkgs/development/tools/jl/default.nix | 24 ------------------------ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 1 insertion(+), 25 deletions(-) delete mode 100644 pkgs/development/tools/jl/default.nix diff --git a/pkgs/development/tools/jl/default.nix b/pkgs/development/tools/jl/default.nix deleted file mode 100644 index 18bb6964adab..000000000000 --- a/pkgs/development/tools/jl/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ mkDerivation, fetchFromGitHub, fetchpatch -, aeson, aeson-pretty, attoparsec, base, bytestring, conduit, conduit-extra -, containers, exceptions, mtl, optparse-simple, parsec, scientific, lib -, text, unordered-containers, vector -}: -mkDerivation rec { - pname = "jl"; - version = "0.1.0"; - sha256 = "15vvn3swjpc5qmdng1fcd8m9nif4qnjmpmxc9hdw5cswzl055lkj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers exceptions mtl parsec - scientific text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring conduit conduit-extra containers - mtl optparse-simple text vector - ]; - license = lib.licenses.bsd3; - description = "Functional sed for JSON"; - maintainers = with lib.maintainers; [ fgaz ]; - homepage = "https://github.com/chrisdone/jl"; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 98f94a756695..123eb4ce01fa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7291,7 +7291,7 @@ with pkgs; jitterentropy = callPackage ../development/libraries/jitterentropy { }; - jl = haskellPackages.callPackage ../development/tools/jl { }; + jl = haskellPackages.jl; jless = callPackage ../development/tools/jless { inherit (darwin.apple_sdk.frameworks) AppKit; From 2c241721b18af3d91b9d7a4a08a869758ccf8ae8 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 31 Jul 2022 21:06:07 +0000 Subject: [PATCH 002/178] libshout: 2.4.5 -> 2.4.6 --- pkgs/development/libraries/libshout/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libshout/default.nix b/pkgs/development/libraries/libshout/default.nix index 400c9b25f78c..75fc2afbf187 100644 --- a/pkgs/development/libraries/libshout/default.nix +++ b/pkgs/development/libraries/libshout/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { pname = "libshout"; - version = "2.4.5"; + version = "2.4.6"; src = fetchurl { url = "https://downloads.xiph.org/releases/libshout/${pname}-${version}.tar.gz"; - sha256 = "sha256-2eVoZopnOZTr4/HrXyvuBuMjal25K40MSH4cD4hqaJA="; + sha256 = "sha256-OcvU8O/f3cl1XYghfkf48tcQj6dn+dWKK6JqFtj3yRA="; }; outputs = [ "out" "dev" "doc" ]; From b8a35e8f8b97a89016120bff81a47a8f530a213c Mon Sep 17 00:00:00 2001 From: Dan Callahan Date: Wed, 21 Dec 2022 22:28:41 +0000 Subject: [PATCH 003/178] python3Packages.show-in-file-manager: init at 1.1.4 --- .../show-in-file-manager/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/show-in-file-manager/default.nix diff --git a/pkgs/development/python-modules/show-in-file-manager/default.nix b/pkgs/development/python-modules/show-in-file-manager/default.nix new file mode 100644 index 000000000000..d5f95aa466b5 --- /dev/null +++ b/pkgs/development/python-modules/show-in-file-manager/default.nix @@ -0,0 +1,39 @@ +{ lib +, stdenv +, buildPythonPackage +, fetchPypi +, pythonOlder +, importlib-metadata +, packaging +, pyxdg +}: + +buildPythonPackage rec { + pname = "show-in-file-manager"; + version = "1.1.4"; + + src = fetchPypi { + inherit pname version; + hash = "sha256-FdFuSodbniF7A40C8CnDgAxKatZF4/c8nhB+omurOts="; + }; + + propagatedBuildInputs = [ + packaging + ] + ++ lib.optional (stdenv.isLinux) pyxdg + ++ lib.optional (pythonOlder "3.8") importlib-metadata; + + meta = with lib; { + homepage = "https://github.com/damonlynch/showinfilemanager"; + description = "Open the system file manager and select files in it"; + longDescription = '' + Show in File Manager is a Python package to open the system file + manager and optionally select files in it. The point is not to + open the files, but to select them in the file manager, thereby + highlighting the files and allowing the user to quickly do + something with them. + ''; + license = licenses.mit; + maintainers = with maintainers; [ ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 405b9de1c9db..cb3895d6224a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -10286,6 +10286,8 @@ self: super: with self; { should-dsl = callPackage ../development/python-modules/should-dsl { }; + show-in-file-manager = callPackage ../development/python-modules/show-in-file-manager { }; + showit = callPackage ../development/python-modules/showit { }; shtab = callPackage ../development/python-modules/shtab { }; From f01831ad50beeeac8f8c0c814139da2ebce435bd Mon Sep 17 00:00:00 2001 From: Dan Callahan Date: Wed, 21 Dec 2022 22:29:18 +0000 Subject: [PATCH 004/178] python3Packages.pyheif: init at 0.7.1 --- .../python-modules/pyheif/default.nix | 25 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/development/python-modules/pyheif/default.nix diff --git a/pkgs/development/python-modules/pyheif/default.nix b/pkgs/development/python-modules/pyheif/default.nix new file mode 100644 index 000000000000..828847cf82fb --- /dev/null +++ b/pkgs/development/python-modules/pyheif/default.nix @@ -0,0 +1,25 @@ +{ lib +, buildPythonPackage +, fetchPypi +, cffi +, libheif +}: + +buildPythonPackage rec { + pname = "pyheif"; + version = "0.7.1"; + + src = fetchPypi { + inherit pname version; + hash = "sha256-hqXFF0N51xRrXtGmiJL69yaKE1+39QOaARv7em6QMgA="; + }; + + propagatedBuildInputs = [ cffi libheif ]; + + meta = with lib; { + homepage = "https://github.com/carsales/pyheif"; + description = "Python interface to libheif library"; + license = licenses.asl20; + maintainers = with maintainers; [ ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cb3895d6224a..2a3c64f6ac17 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -7995,6 +7995,8 @@ self: super: with self; { pyhs100 = callPackage ../development/python-modules/pyhs100 { }; + pyheif = callPackage ../development/python-modules/pyheif { }; + pyi2cflash = callPackage ../development/python-modules/pyi2cflash { }; pyialarm = callPackage ../development/python-modules/pyialarm { }; From b4006657621a3a1d9189334a06ebbdef74433b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 22 Jan 2023 12:47:45 +0100 Subject: [PATCH 005/178] python3.pkgs.tensorflow-bin: 2.9.3 -> 2.11.0 --- .../tensorflow/binary-hashes.nix | 50 +++++++++---------- .../python-modules/tensorflow/prefetcher.sh | 2 +- 2 files changed, 26 insertions(+), 26 deletions(-) diff --git a/pkgs/development/python-modules/tensorflow/binary-hashes.nix b/pkgs/development/python-modules/tensorflow/binary-hashes.nix index 3f8eb562f966..a59a31b57442 100644 --- a/pkgs/development/python-modules/tensorflow/binary-hashes.nix +++ b/pkgs/development/python-modules/tensorflow/binary-hashes.nix @@ -1,51 +1,51 @@ { -version = "2.9.3"; +version = "2.11.0"; linux_py_37_cpu = { - url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "0p1a4dlqj7kl4a3aad33r083f5pfspc0hm0x9a3b1qvvgaldww08"; + url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "0m360pj7ix57d30s9inq9g5cbv7jrgnk2ryygj8irfw569rrzk7x"; }; linux_py_38_cpu = { - url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "1zq39ls1asha4zkrfqvg5375mmryf20hc1fi243k8z077391ihhv"; + url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "1kx4rj15fnbmznpyjjbkw5mf0b03gw97h7ijlqf1kcdjzmbm24la"; }; linux_py_39_cpu = { - url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "16gz4bcw2gvwh3264wc8a2lyfr542avhgdrnmd0pxwszqg45rkdj"; + url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "1isvyiwrhis8i2xjx5mmsrxv2i7fl0hg1jaa1pgw70c6sz5vqm0r"; }; linux_py_310_cpu = { - url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "1a5s19x8ybncmpx8hr116bm6cvjar3b0sj8k8w2wrpxhh02sndwh"; + url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow_cpu-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "1ni7yrk33xdh6zpy840y3hbidmfgj9dxp690yxrjwarr3694465k"; }; linux_py_37_gpu = { - url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "03zh1fzi7s5incxghgnk4hm9m9kg989pn420g532grzj1f85x23f"; + url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "14r2sa25gmpda6kysv7dbbrzmaxb47jq2fpy9dfcfbiwsrzszwhi"; }; linux_py_38_gpu = { - url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "1czajraildk4acwn3rd921wfarl1jwbnmfiwk57ijsx5s9q4d328"; + url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "1z8g3j1a8bzpfl3cwf74wal9npfyzr89l14wrrjmd311w9c06z25"; }; linux_py_39_gpu = { - url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "0rk1ii9dqi856bgm596igbragvcwk3799cz05x6gyjkixdkbk5jj"; + url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "1nfhw5fwkvwyvcap41756avrg4c8xm0xrdgj8spqfjvamc3chcqp"; }; linux_py_310_gpu = { - url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; - sha256 = "1q6pf6140qza16p1yxw2z3n7ndfq3by2k6wc45lhpx4bl1vs7my7"; + url = "https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl"; + sha256 = "1vckr15ys8cks8pj9yld4zyhm8w7bjnc8yq6q1g3145fl99ygac1"; }; mac_py_37_cpu = { - url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.9.3-cp37-cp37m-macosx_10_14_x86_64.whl"; - sha256 = "05y3y18ggnrfzrcrzkxkb3djbhsm8001s1l1nmvvv9zq8v02b6hp"; + url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.11.0-cp37-cp37m-macosx_10_14_x86_64.whl"; + sha256 = "12lk1wx5dqklc210xya3sbm3gl4163454k13d2nnk94z2iwi376j"; }; mac_py_38_cpu = { - url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.9.3-cp38-cp38-macosx_10_14_x86_64.whl"; - sha256 = "0qgzqdfv4q5bl6hd932jd6zfp47abva59nyrgxw19kiz0gzq3lw9"; + url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.11.0-cp38-cp38-macosx_10_14_x86_64.whl"; + sha256 = "1j4y6vhlpz27xllwr9n0gswmwld221ws8sl5wdn56hi347r2jv85"; }; mac_py_39_cpu = { - url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.9.3-cp39-cp39-macosx_10_14_x86_64.whl"; - sha256 = "1zjvjyvz0lshvqf5sc80bxkdwnk8b43abwmzsm9m6dyl8waj5d5r"; + url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.11.0-cp39-cp39-macosx_10_14_x86_64.whl"; + sha256 = "11ylm1a2mxf9lz958p39q2pag4mqss6zsfxagk3ybwj1lsy2bkyr"; }; mac_py_310_cpu = { - url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.9.3-cp310-cp310-macosx_10_14_x86_64.whl"; - sha256 = "0pncslab7m9d89syaad7n3fgxygkr07d5prir225a42kym8slni8"; + url = "https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-2.11.0-cp310-cp310-macosx_10_14_x86_64.whl"; + sha256 = "1l6jnmi14sbxbrpwqw3bq6mv1mn5rhbkx9j3dxfnhh10dkn9y13c"; }; } diff --git a/pkgs/development/python-modules/tensorflow/prefetcher.sh b/pkgs/development/python-modules/tensorflow/prefetcher.sh index 0d6e8f014396..a4a7c5dfa57c 100755 --- a/pkgs/development/python-modules/tensorflow/prefetcher.sh +++ b/pkgs/development/python-modules/tensorflow/prefetcher.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -version="2.9.3" +version="2.11.0" bucket="https://storage.googleapis.com/tensorflow" From 684b3ea2478f71ee40b23c4be0be35af10f07aa5 Mon Sep 17 00:00:00 2001 From: Dan Callahan Date: Wed, 21 Dec 2022 22:29:58 +0000 Subject: [PATCH 006/178] rapid-photo-downloader: 0.9.18 -> 0.9.34 --- .../rapid-photo-downloader/default.nix | 40 +++++++++++++------ 1 file changed, 27 insertions(+), 13 deletions(-) diff --git a/pkgs/applications/graphics/rapid-photo-downloader/default.nix b/pkgs/applications/graphics/rapid-photo-downloader/default.nix index f9120ca0ee48..706992e2961d 100644 --- a/pkgs/applications/graphics/rapid-photo-downloader/default.nix +++ b/pkgs/applications/graphics/rapid-photo-downloader/default.nix @@ -1,24 +1,24 @@ -{ lib, mkDerivationWith, fetchurl, python3Packages +{ lib, mkDerivationWith, fetchFromGitHub, python3Packages , file, intltool, gobject-introspection, libgudev -, udisks, gexiv2, gst_all_1, libnotify +, udisks, gexiv2, gst_all_1, libnotify, ifuse, libimobiledevice , exiftool, gdk-pixbuf, libmediainfo, vmtouch }: mkDerivationWith python3Packages.buildPythonApplication rec { pname = "rapid-photo-downloader"; - version = "0.9.18"; + version = "0.9.34"; - src = fetchurl { - url = "https://launchpad.net/rapid/pyqt/${version}/+download/${pname}-${version}.tar.gz"; - sha256 = "15p7sssg6vmqbm5xnc4j5dr89d7gl7y5qyq44a240yl5aqkjnybw"; + src = fetchFromGitHub { + owner = "damonlynch"; + repo = "rapid-photo-downloader"; + rev = "v${version}"; + hash = "sha256-4VC1fwQh9L3c5tgLUaC36p9QHL4dR2vkWc2XlNl0Xzw="; }; - # Disable version check and fix install tests + # Disable version check postPatch = '' substituteInPlace raphodo/constants.py \ --replace "disable_version_check = False" "disable_version_check = True" - substituteInPlace raphodo/rescan.py \ - --replace "from preferences" "from raphodo.preferences" ''; nativeBuildInputs = [ @@ -28,9 +28,15 @@ mkDerivationWith python3Packages.buildPythonApplication rec { # Package has no generally usable unit tests. # The included doctests expect specific, hardcoded hardware to be present. - doCheck = false; + # Instead, we just make sure the program runs enough to report its version. + checkPhase = '' + export XDG_DATA_HOME=$(mktemp -d) + export QT_QPA_PLATFORM=offscreen + $out/bin/rapid-photo-downloader --detailed-version + ''; - # NOTE: Without gobject-introspection in buildInputs, launching fails with + # NOTE: Without gobject-introspection in buildInputs and strictDeps = false, + # launching fails with: # "Namespace [Notify / GExiv2 / GUdev] not available" buildInputs = [ gdk-pixbuf @@ -46,7 +52,11 @@ mkDerivationWith python3Packages.buildPythonApplication rec { udisks ]; + strictDeps = false; + propagatedBuildInputs = with python3Packages; [ + ifuse + libimobiledevice pyqt5 pygobject3 gphoto2 @@ -57,15 +67,19 @@ mkDerivationWith python3Packages.buildPythonApplication rec { arrow python-dateutil easygui + babel colour + pillow + pyheif pymediainfo sortedcontainers - rawkit requests colorlog pyprind + setuptools + show-in-file-manager tenacity - ]; + ] ++ lib.optional (pythonOlder "3.8") importlib-metadata; preFixup = '' makeWrapperArgs+=( From 37bbc00aee3f4a07e4b3b5e50bef0d58d603c039 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 5 Feb 2023 20:22:12 +0100 Subject: [PATCH 007/178] nixosTests.google-oslogin: fix tests, provide group mock endpoint If our (fake) metadata server provides a 404 instead of a JSON document, the NSS module segfaults, and as we do NSS lookups through ns(n)cd, not only crashes the application doing the NSS lookup, but our ns(n)cd. This has been causing segfaults of nscd all along, but since our switch from glibc-nscd to nsncd, caused the test to fail entirely. In any case, by handling /computeMetadata/v1/oslogin/groups we get the NSS lookup to not cause any segfaults, and to succeed the test again. --- nixos/tests/google-oslogin/server.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/nixos/tests/google-oslogin/server.py b/nixos/tests/google-oslogin/server.py index 5ea9bbd2c96b..622cd86b2619 100755 --- a/nixos/tests/google-oslogin/server.py +++ b/nixos/tests/google-oslogin/server.py @@ -103,6 +103,16 @@ class ReqHandler(BaseHTTPRequestHandler): self._send_json_ok(gen_mockuser(username=username, uid=uid, gid=uid, home_directory=f"/home/{username}", snakeoil_pubkey=SNAKEOIL_PUBLIC_KEY)) return + # we need to provide something at the groups endpoint. + # the nss module does segfault if we don't. + elif pu.path == "/computeMetadata/v1/oslogin/groups": + self._send_json_ok({ + "posixGroups": [ + {"name" : "demo", "gid" : 4294967295} + ], + }) + return + # authorize endpoint elif pu.path == "/computeMetadata/v1/oslogin/authorize": # is user allowed to login? From c585e1ed0d8685a5eb597265c761406944df2fbd Mon Sep 17 00:00:00 2001 From: msm Date: Thu, 19 Jan 2023 03:13:28 +0100 Subject: [PATCH 008/178] python38Packages.yaramod: init at 3.12.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Robert Schütz Co-authored-by: Fabian Affolter --- .../python-modules/yaramod/default.nix | 78 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 80 insertions(+) create mode 100644 pkgs/development/python-modules/yaramod/default.nix diff --git a/pkgs/development/python-modules/yaramod/default.nix b/pkgs/development/python-modules/yaramod/default.nix new file mode 100644 index 000000000000..11a1caf15b74 --- /dev/null +++ b/pkgs/development/python-modules/yaramod/default.nix @@ -0,0 +1,78 @@ +{ lib +, buildPythonPackage +, cmake +, fetchFromGitHub +, pytestCheckHook +, libxcrypt +, pythonOlder +, gtest +, pybind11 +, nlohmann_json +}: + +let + pog = fetchFromGitHub { + owner = "metthal"; + repo = "pog"; + rev = "b09bbf9cea573ee62aab7eccda896e37961d16cd"; + hash = "sha256-El4WA92t2O/L4wUqH6Xj8w+ANtb6liRwafDhqn8jxjQ="; + }; +in + buildPythonPackage rec { + pname = "yaramod"; + version = "3.12.2"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchFromGitHub { + owner = "avast"; + repo = pname; + rev = "refs/tags/v${version}"; + hash = "sha256-1q+lzNtm8qko9ZAxJjkmPOQjHD5GxB6YyEz0tr+QWGk="; + }; + + postPatch = '' + rm -r deps/googletest deps/pog/ deps/pybind11/ deps/json/json.hpp + cp -r --no-preserve=all ${pog} deps/pog/ + cp -r --no-preserve=all ${nlohmann_json.src}/single_include/nlohmann/json.hpp deps/json/ + cp -r --no-preserve=all ${pybind11.src} deps/pybind11/ + cp -r --no-preserve=all ${gtest.src} deps/googletest/ + ''; + + dontUseCmakeConfigure = true; + + buildInputs = [ + libxcrypt + ]; + + nativeBuildInputs = [ + cmake + pog + gtest + ]; + + setupPyBuildFlags = [ + "--with-unit-tests" + ]; + + checkInputs = [ + pytestCheckHook + ]; + + pytestFlagsArray = [ + "tests/" + ]; + + pythonImportsCheck = [ + "yaramod" + ]; + + meta = with lib; { + description = "Parsing of YARA rules into AST and building new rulesets in C++"; + homepage = "https://github.com/avast/yaramod"; + changelog = "https://github.com/avast/yaramod/blob/v${version}/CHANGELOG.md"; + license = licenses.mit; + maintainers = with maintainers; [ msm ]; + }; + } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dc3b5b1ddf13..3b3724e8a758 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12396,6 +12396,8 @@ self: super: with self; { yara-python = callPackage ../development/python-modules/yara-python { }; + yaramod = callPackage ../development/python-modules/yaramod { }; + yarg = callPackage ../development/python-modules/yarg { }; yarl = callPackage ../development/python-modules/yarl { }; From 2bace3c824adb82315eb6617df42d244793e959c Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sun, 12 Feb 2023 18:17:23 +0100 Subject: [PATCH 009/178] palemoon-bin: init at 32.0.0 --- .../networking/browsers/palemoon/bin.nix | 180 ++++++++++++++++++ .../browsers/palemoon/zz-disableUpdater.js | 7 + pkgs/top-level/all-packages.nix | 1 + 3 files changed, 188 insertions(+) create mode 100644 pkgs/applications/networking/browsers/palemoon/bin.nix create mode 100644 pkgs/applications/networking/browsers/palemoon/zz-disableUpdater.js diff --git a/pkgs/applications/networking/browsers/palemoon/bin.nix b/pkgs/applications/networking/browsers/palemoon/bin.nix new file mode 100644 index 000000000000..ade66f76e257 --- /dev/null +++ b/pkgs/applications/networking/browsers/palemoon/bin.nix @@ -0,0 +1,180 @@ +{ stdenv +, lib +, fetchzip +, alsa-lib +, autoPatchelfHook +, copyDesktopItems +, dbus-glib +, ffmpeg +, gtk2-x11 +, withGTK3 ? true +, gtk3 +, libXt +, libpulseaudio +, makeDesktopItem +, wrapGAppsHook +}: + +stdenv.mkDerivation rec { + pname = "palemoon-bin"; + version = "32.0.0"; + + src = fetchzip { + url = "http://linux.palemoon.org/datastore/release/palemoon-${version}.linux-x86_64-gtk${if withGTK3 then "3" else "2"}.tar.xz"; + hash = if withGTK3 then + "sha256-KipzrQEbwd3np3t2oTq2eHHLUPtnC/nnGYMGmFc7arw=" + else + "sha256-dbHGThzLx23Ws0nfGTEYrQp0g+hYwkk1bOczQwt4NYg="; + }; + + preferLocalBuild = true; + + strictDeps = true; + + nativeBuildInputs = [ + autoPatchelfHook + copyDesktopItems + wrapGAppsHook + ]; + + buildInputs = [ + alsa-lib + dbus-glib + gtk2-x11 + libXt + stdenv.cc.cc.lib + ] ++ lib.optionals withGTK3 [ + gtk3 + ]; + + desktopItems = [(makeDesktopItem rec { + name = pname; + desktopName = "Pale Moon Web Browser"; + comment = "Browse the World Wide Web"; + keywords = [ + "Internet" + "WWW" + "Browser" + "Web" + "Explorer" + ]; + exec = "palemoon %u"; + terminal = false; + type = "Application"; + icon = "palemoon"; + categories = [ + "Network" + "WebBrowser" + ]; + mimeTypes = [ + "text/html" + "text/xml" + "application/xhtml+xml" + "application/xml" + "application/rss+xml" + "application/rdf+xml" + "image/gif" + "image/jpeg" + "image/png" + "x-scheme-handler/http" + "x-scheme-handler/https" + "x-scheme-handler/ftp" + "x-scheme-handler/chrome" + "video/webm" + "application/x-xpinstall" + ]; + startupNotify = true; + startupWMClass = "Pale moon"; + extraConfig = { + X-MultipleArgs = "false"; + }; + actions = { + "NewTab" = { + name = "Open new tab"; + exec = "palemoon -new-tab https://start.palemoon.org"; + }; + "NewWindow" = { + name = "Open new window"; + exec = "palemoon -new-window"; + }; + "NewPrivateWindow" = { + name = "Open new private window"; + exec = "palemoon -private-window"; + }; + "ProfileManager" = { + name = "Open the Profile Manager"; + exec = "palemoon --ProfileManager"; + }; + }; + })]; + + dontConfigure = true; + dontBuild = true; + + installPhase = '' + runHook preInstall + + mkdir -p $out/{bin,lib/palemoon} + cp -R * $out/lib/palemoon/ + + ln -s $out/{lib/palemoon,bin}/palemoon + + for iconpath in chrome/icons/default/default{16,32,48} icons/mozicon128; do + n=''${iconpath//[^0-9]/} + size=$n"x"$n + mkdir -p $out/share/icons/hicolor/$size/apps + ln -s $out/lib/palemoon/browser/"$iconpath".png $out/share/icons/hicolor/$size/apps/palemoon.png + done + + # Disable built-in updater + # https://forum.palemoon.org/viewtopic.php?f=5&t=25073&p=197771#p197747 + # > Please do not take this as permission to change, remove, or alter any other preferences as that is forbidden + # > without express permission according to the Pale Moon Redistribution License. + # > We are allowing this one and **ONLY** one exception in order to properly facilitate [package manager] repacks. + install -Dm644 ${./zz-disableUpdater.js} $out/lib/palemoon/browser/defaults/preferences/zz-disableUpdates.js + + runHook postInstall + ''; + + dontWrapGApps = true; + + preFixup = '' + # Make optional dependencies available + gappsWrapperArgs+=( + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ + ffmpeg + libpulseaudio + ]}" + ) + wrapGApp $out/lib/palemoon/palemoon + ''; + + meta = with lib; { + homepage = "https://www.palemoon.org/"; + description = "An Open Source, Goanna-based web browser focusing on efficiency and customization"; + longDescription = '' + Pale Moon is an Open Source, Goanna-based web browser focusing on + efficiency and customization. + Pale Moon offers you a browsing experience in a browser completely built + from its own, independently developed source that has been forked off from + Firefox/Mozilla code a number of years ago, with carefully selected + features and optimizations to improve the browser's stability and user + experience, while offering full customization and a growing collection of + extensions and themes to make the browser truly your own. + ''; + changelog = "https://repo.palemoon.org/MoonchildProductions/Pale-Moon/releases/tag/${version}_Release"; + license = [ + licenses.mpl20 + { + fullName = "Pale Moon Redistribution License"; + url = "https://www.palemoon.org/redist.shtml"; + # TODO free, redistributable? Has strict limitations on what modifications may be done & shipped by packagers + } + ]; + maintainers = with maintainers; [ AndersonTorres OPNA2608 ]; + sourceProvenance = with sourceTypes; [ binaryNativeCode ]; + mainProgram = "palemoon"; + platforms = [ "x86_64-linux" ]; + hydraPlatforms = []; + }; +} diff --git a/pkgs/applications/networking/browsers/palemoon/zz-disableUpdater.js b/pkgs/applications/networking/browsers/palemoon/zz-disableUpdater.js new file mode 100644 index 000000000000..50b8a79f627a --- /dev/null +++ b/pkgs/applications/networking/browsers/palemoon/zz-disableUpdater.js @@ -0,0 +1,7 @@ +/* https://forum.palemoon.org/viewtopic.php?f=5&t=25073&p=197771#p197747 */ + +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +pref("app.update.enabled", false); diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fe01267eba92..6f23cedcc651 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -32089,6 +32089,7 @@ with pkgs; osmscout-server = libsForQt5.callPackage ../applications/misc/osmscout-server { }; palemoon = callPackage ../applications/networking/browsers/palemoon { }; + palemoon-bin = callPackage ../applications/networking/browsers/palemoon/bin.nix { }; pamix = callPackage ../applications/audio/pamix { }; From ff5fd91d043837abc3836a4b3978639be76e2fe2 Mon Sep 17 00:00:00 2001 From: Matt Wittmann Date: Wed, 15 Feb 2023 07:34:11 -0800 Subject: [PATCH 010/178] python310Packages.awswrangler: relax pyarrow dependency awswrangler: pyarrow<10.1.0 nixpkgs: pyarrow==11.0.0 --- pkgs/development/python-modules/awswrangler/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/awswrangler/default.nix b/pkgs/development/python-modules/awswrangler/default.nix index f1b937f3ecdc..cfd7b7084822 100644 --- a/pkgs/development/python-modules/awswrangler/default.nix +++ b/pkgs/development/python-modules/awswrangler/default.nix @@ -60,6 +60,7 @@ buildPythonPackage rec { "numpy" "pandas" "pg8000" + "pyarrow" ]; nativeCheckInputs = [ moto pytestCheckHook ]; From aac6e9c078e4772dc70c86ed33b38960a78abfe5 Mon Sep 17 00:00:00 2001 From: SharzyL Date: Thu, 16 Feb 2023 15:18:22 +0800 Subject: [PATCH 011/178] ccal: init at 2.5.3 --- pkgs/tools/misc/ccal/default.nix | 35 ++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/tools/misc/ccal/default.nix diff --git a/pkgs/tools/misc/ccal/default.nix b/pkgs/tools/misc/ccal/default.nix new file mode 100644 index 000000000000..55ccb7f774c9 --- /dev/null +++ b/pkgs/tools/misc/ccal/default.nix @@ -0,0 +1,35 @@ +{ stdenv +, lib +, fetchurl +, makeWrapper +, ghostscript_headless # for ps2pdf binary +}: + +stdenv.mkDerivation rec { + pname = "ccal"; + version = "2.5.3"; + src = fetchurl { + url = "http://ccal.chinesebay.com/ccal/${pname}-${version}.tar.gz"; + sha256 = "sha256-PUy9yfkFzgKrSEBB+79/C3oxmuajUMbBbWNuGlpQ35Y="; + }; + + nativeBuildInputs = [ makeWrapper ]; + + makeFlags = [ "CXX:=$(CXX)" "BINDIR=$(out)/bin" "MANDIR=$(out)/share/man" ]; + installTargets = [ "install" "install-man" ]; + + # ccalpdf depends on a `ps2pdf` binary in PATH + postFixup = '' + wrapProgram $out/bin/ccalpdf \ + --prefix PATH : ${lib.makeBinPath [ ghostscript_headless ]}:$out/bin + ''; + + meta = { + homepage = "http://ccal.chinesebay.com/ccal.htm"; + description = "Command line Chinese calendar viewer, similar to cal"; + license = lib.licenses.gpl3; + maintainers = with lib.maintainers; [ sharzy ]; + platforms = lib.platforms.all; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b3cfb3582c45..3f8a634331ce 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -384,6 +384,8 @@ with pkgs; btdu = callPackage ../tools/misc/btdu { }; + ccal = callPackage ../tools/misc/ccal { }; + cereal = callPackage ../development/libraries/cereal { }; certgraph = callPackage ../tools/security/certgraph { }; From 33ed801e7385772d9e71f2df33cc60709711259e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Pitucha?= Date: Sat, 18 Feb 2023 00:14:45 +1100 Subject: [PATCH 012/178] rubyPackages.eventmachine: fix darwin build This fixes the build of mailcatcher (and maybe others). Fixes: ``` em.cpp:1232:40: error: invalid operands to binary expression ('__bind' and 'int') if (bind (sd, bind_to, bind_to_size) < 0) { ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ^ ~ ``` Where `bind` is treated as `std::bind` rather than `::bind` in newer C++ standards. --- pkgs/development/ruby-modules/gem-config/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index 9f2e8dbfcd11..06516ab2fba9 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -203,7 +203,12 @@ in }; eventmachine = attrs: { + dontBuild = false; buildInputs = [ openssl ]; + postPatch = '' + substituteInPlace ext/em.cpp \ + --replace 'if (bind (' 'if (::bind (' + ''; }; exif = attrs: { From f3d988fccd8af9f80cbadaec8308439a7b6d517c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 17 Feb 2023 13:23:44 +0000 Subject: [PATCH 013/178] python310Packages.kubernetes: 25.3.0 -> 26.1.0 --- pkgs/development/python-modules/kubernetes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/kubernetes/default.nix b/pkgs/development/python-modules/kubernetes/default.nix index 03c858dd92f2..a74f22ffa7be 100644 --- a/pkgs/development/python-modules/kubernetes/default.nix +++ b/pkgs/development/python-modules/kubernetes/default.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { pname = "kubernetes"; - version = "25.3.0"; + version = "26.1.0"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -33,7 +33,7 @@ buildPythonPackage rec { owner = "kubernetes-client"; repo = "python"; rev = "refs/tags/v${version}"; - sha256 = "sha256-LKj9zt9ou3zfPnpOP2MMycby0qqW3dtI4CmW/E6jv0Y="; + sha256 = "sha256-2QkQGZ4Dho2PykH90ijosWWBzhQoCHoWhRL3ruOiDBg="; }; propagatedBuildInputs = [ From 2dbe0d321b728b13d82007fdb5e565353c6de8ed Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 18 Feb 2023 13:31:42 +0000 Subject: [PATCH 014/178] python310Packages.adjusttext: 0.7.3.1 -> 0.8.0 --- pkgs/development/python-modules/adjusttext/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/adjusttext/default.nix b/pkgs/development/python-modules/adjusttext/default.nix index fd4fb79a5999..3aa50cc101f0 100644 --- a/pkgs/development/python-modules/adjusttext/default.nix +++ b/pkgs/development/python-modules/adjusttext/default.nix @@ -8,14 +8,14 @@ buildPythonPackage rec { pname = "adjusttext"; - version = "0.7.3.1"; + version = "0.8.0"; format = "setuptools"; src = fetchFromGitHub { owner = "Phlya"; repo = pname; - rev = version; - sha256 = "1a6hizx1cnplj0irn8idgda2lacsb61dw464cwx798pjr1gd401n"; + rev = "refs/tags/${version}"; + sha256 = "sha256-N+eCDwK5E9zGKG7uruuhnpTlJeiXG2a15PKW0gJFAqw="; }; nativeBuildInputs = [ From 85c48a38b458aaf53867609a75abe63ef1cbe047 Mon Sep 17 00:00:00 2001 From: Antoine Pietri Date: Sat, 18 Feb 2023 19:44:58 +0100 Subject: [PATCH 015/178] Revert "transmission: use openssl_legacy" This reverts commit 52fe5d3bb6405aa3956df6b6fecdd08dde75e188. The patch prevents a segfault in EVP_CIPHER_CTX_set_key_length() when adding a new torrent. This should have been fixed by switching the dependency to the legacy openssl package. However, when installing the Qt version, `transmission-qt` still ends up picking up a non-legacy openssl via the Qt dependency. --- .../applications/networking/p2p/transmission/default.nix | 9 +++++++++ pkgs/top-level/all-packages.nix | 5 +---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/p2p/transmission/default.nix b/pkgs/applications/networking/p2p/transmission/default.nix index 8d605877a62e..0bb11affed22 100644 --- a/pkgs/applications/networking/p2p/transmission/default.nix +++ b/pkgs/applications/networking/p2p/transmission/default.nix @@ -1,6 +1,7 @@ { stdenv , lib , fetchFromGitHub +, fetchurl , cmake , pkg-config , openssl @@ -46,6 +47,14 @@ in stdenv.mkDerivation { fetchSubmodules = true; }; + patches = [ + # fix build with openssl 3.0 + (fetchurl { + url = "https://salsa.debian.org/debian/transmission/-/raw/debian/3.00-2.1/debian/patches/openssl3-compat.patch"; + hash = "sha256-v+SDTW/lCtc8B3TuhQB1pmjW/QRAGLtYncaImNNwpes="; + }) + ]; + outputs = [ "out" "apparmor" ]; cmakeFlags = diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6cb79d651bde..46daa1ce3e0d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -33481,10 +33481,7 @@ with pkgs; transcribe = callPackage ../applications/audio/transcribe { }; - transmission = callPackage ../applications/networking/p2p/transmission { - # https://github.com/NixOS/nixpkgs/issues/207047 - openssl = openssl_legacy; - }; + transmission = callPackage ../applications/networking/p2p/transmission { }; libtransmission = transmission.override { installLib = true; enableDaemon = false; From ba333178e7fde383d56a8fee6b1e251147f70739 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 19 Feb 2023 02:14:22 +0000 Subject: [PATCH 016/178] python310Packages.oslo-context: 5.0.0 -> 5.1.0 --- pkgs/development/python-modules/oslo-context/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/oslo-context/default.nix b/pkgs/development/python-modules/oslo-context/default.nix index fe4e7363cfc1..0db271b6cd5d 100644 --- a/pkgs/development/python-modules/oslo-context/default.nix +++ b/pkgs/development/python-modules/oslo-context/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "oslo.context"; - version = "5.0.0"; + version = "5.1.0"; src = fetchPypi { inherit pname version; - sha256 = "sha256-iMDG0HZoHGDVYPfWZWXkKsEWxaqKKKBNt8CsACUTMiQ="; + sha256 = "sha256-iy2aT4xGrulNTot8oa4JeJv4QqRwaKr6sIjibDMUqyI="; }; postPatch = '' From 8c616c699cd31011a6ca44921f335d5568be74ba Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 19 Feb 2023 09:15:03 +0000 Subject: [PATCH 017/178] =?UTF-8?q?goffice:=200.10.54=20=E2=86=92=200.10.5?= =?UTF-8?q?5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/goffice/-/compare/GOFFICE_0_10_54...GOFFICE_0_10_55 --- pkgs/development/libraries/goffice/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/goffice/default.nix b/pkgs/development/libraries/goffice/default.nix index 1bd0d69ea6d7..21713000c644 100644 --- a/pkgs/development/libraries/goffice/default.nix +++ b/pkgs/development/libraries/goffice/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "goffice"; - version = "0.10.54"; + version = "0.10.55"; outputs = [ "out" "dev" "devdoc" ]; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "WDXNnVPmT3UmLAOZZu/fTYj0Vvyx8IeM5NEIgqUK1aA="; + sha256 = "FqIhGRhVpqbA0Gse+OSBzz9SBBplTsltNYFwRboama8="; }; nativeBuildInputs = [ pkg-config intltool ]; From f71ede1693c9a1021b3f8abe6fea4903921337b3 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Sun, 19 Feb 2023 09:14:42 +0000 Subject: [PATCH 018/178] =?UTF-8?q?gnumeric:=201.12.54=20=E2=86=92=201.12.?= =?UTF-8?q?55?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/gnumeric/-/compare/GNUMERIC_1_12_54...GNUMERIC_1_12_55 --- pkgs/applications/office/gnumeric/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/gnumeric/default.nix b/pkgs/applications/office/gnumeric/default.nix index 1fbb9b7cbd97..785b069c9a5b 100644 --- a/pkgs/applications/office/gnumeric/default.nix +++ b/pkgs/applications/office/gnumeric/default.nix @@ -7,11 +7,11 @@ let inherit (python3Packages) python pygobject3; in stdenv.mkDerivation rec { pname = "gnumeric"; - version = "1.12.54"; + version = "1.12.55"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "RpBAYv0cSkyTWW0mv2eTLNcvwPjSxaZ8F5GFJ/7oK3Q="; + sha256 = "xpoJzRkLYirMpHa7w9TAPWjXzPWbumG/A2zmCIX5+2U="; }; configureFlags = [ "--disable-component" ]; From 6ea702f2a01e25ddec443736146b736d6aee9b69 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 17:52:40 +0100 Subject: [PATCH 019/178] cimg: Add gmic and gmic-qt to passthru.tests They often need to be updated in lockstep. --- pkgs/development/libraries/cimg/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/libraries/cimg/default.nix b/pkgs/development/libraries/cimg/default.nix index 566c427d46a6..941abaf0ba0b 100644 --- a/pkgs/development/libraries/cimg/default.nix +++ b/pkgs/development/libraries/cimg/default.nix @@ -1,6 +1,8 @@ { lib , stdenv , fetchFromGitHub +, gmic +, gmic-qt }: stdenv.mkDerivation rec { @@ -28,6 +30,11 @@ stdenv.mkDerivation rec { runHook postInstall ''; + passthru.tests = { + # Need to update in lockstep. + inherit gmic gmic-qt; + }; + meta = with lib; { homepage = "http://cimg.eu/"; description = "A small, open source, C++ toolkit for image processing"; From a07960652c65883166b7d6ad4da625ffcbea8484 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 17:49:22 +0100 Subject: [PATCH 020/178] gmic: Add gmic-qt to passthru.tests It often needs to be updated in lockstep. --- pkgs/tools/graphics/gmic/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/tools/graphics/gmic/default.nix b/pkgs/tools/graphics/gmic/default.nix index 6e811e1aa3df..f9e5311b64d2 100644 --- a/pkgs/tools/graphics/gmic/default.nix +++ b/pkgs/tools/graphics/gmic/default.nix @@ -21,6 +21,7 @@ , gnused , coreutils , jq +, gmic-qt }: stdenv.mkDerivation rec { @@ -81,6 +82,11 @@ stdenv.mkDerivation rec { ''; passthru = { + tests = { + # Needs to update in lockstep. + inherit gmic-qt; + }; + updateScript = writeShellScript "${pname}-update-script" '' set -o errexit PATH=${lib.makeBinPath [ common-updater-scripts curl gnugrep gnused coreutils jq ]} From c4d80af5bd57db5c10a992ea8d7b6b4acdd557b3 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 17:58:15 +0100 Subject: [PATCH 021/178] gmic: fix update script It got broken by the 3.2.0 bump: https://github.com/NixOS/nixpkgs/commit/2dd0b25e164946e597c1f8a1309d73f1bff03f53 --- pkgs/tools/graphics/gmic/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/graphics/gmic/default.nix b/pkgs/tools/graphics/gmic/default.nix index f9e5311b64d2..c462bcb77980 100644 --- a/pkgs/tools/graphics/gmic/default.nix +++ b/pkgs/tools/graphics/gmic/default.nix @@ -101,7 +101,7 @@ stdenv.mkDerivation rec { for component in src gmic_stdlib; do # The script will not perform an update when the version attribute is up to date from previous platform run # We need to clear it before each run - update-source-version "--source-key=$component" "gmic" 0 "$(printf '0%.0s' {1..64})" + update-source-version "--source-key=$component" "gmic" 0 "${lib.fakeHash}" update-source-version "--source-key=$component" "gmic" $latestVersion done ''; From 8e9e60c483665fb523554dc2e9eeed34d1c2f8c3 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 17:00:10 +0000 Subject: [PATCH 022/178] =?UTF-8?q?gmic:=203.2.0=20=E2=86=92=203.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/tools/graphics/gmic/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/graphics/gmic/default.nix b/pkgs/tools/graphics/gmic/default.nix index c462bcb77980..52499196bba4 100644 --- a/pkgs/tools/graphics/gmic/default.nix +++ b/pkgs/tools/graphics/gmic/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { pname = "gmic"; - version = "3.2.0"; + version = "3.2.1"; outputs = [ "out" "lib" "dev" "man" ]; @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { owner = "dtschump"; repo = "gmic"; rev = "v.${version}"; - hash = "sha256-lrIlzxXWqv046G5uRkBQnjvysaIcv+iDKxjuUEJWqcs="; + hash = "sha256-oEH4GlSV+642TGSJJhV4yzydh1hAQZfzwaiPAZFNQtI="; }; # TODO: build this from source @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { gmic_stdlib = fetchurl { name = "gmic_stdlib.h"; url = "http://gmic.eu/gmic_stdlib${lib.replaceStrings ["."] [""] version}.h"; - hash = "sha256-kWHzA1Dk7F4IROq/gk+RJllry3BABMbssJxhkQ6Cp2M="; + hash = "sha256-f8d9jTVnHwSoyMuiM+Qv86e/BYX9SSx9cl3borihxnc="; }; nativeBuildInputs = [ From 02be63faedcd2e6283ece368bb8d248c657aeb26 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 17:34:52 +0100 Subject: [PATCH 023/178] gmic-qt: add update script --- pkgs/tools/graphics/gmic-qt/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/graphics/gmic-qt/default.nix b/pkgs/tools/graphics/gmic-qt/default.nix index f67021f38488..1611eb5de7b6 100644 --- a/pkgs/tools/graphics/gmic-qt/default.nix +++ b/pkgs/tools/graphics/gmic-qt/default.nix @@ -25,6 +25,7 @@ , gnused , coreutils , jq +, nix-update-script }: let @@ -97,6 +98,10 @@ mkDerivation rec { wrapQtApp "$out/${gimp.targetPluginDir}/gmic_gimp_qt/gmic_gimp_qt" ''; + passthru = { + updateScript = nix-update-script { }; + }; + meta = with lib; { description = variants.${variant}.description; homepage = "http://gmic.eu/"; From 24f2c744c71b024adedea79421ef8ec5027dfb21 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 16:47:00 +0000 Subject: [PATCH 024/178] =?UTF-8?q?gmic-qt:=203.2.0=20=E2=86=92=203.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.com/c-koi/gmic-qt/compare/v.3.2.0...v.3.2.1 --- pkgs/tools/graphics/gmic-qt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/gmic-qt/default.nix b/pkgs/tools/graphics/gmic-qt/default.nix index 1611eb5de7b6..098df04e545c 100644 --- a/pkgs/tools/graphics/gmic-qt/default.nix +++ b/pkgs/tools/graphics/gmic-qt/default.nix @@ -51,13 +51,13 @@ assert lib.assertMsg (builtins.all (d: d != null) variants.${variant}.extraDeps mkDerivation rec { pname = "gmic-qt${lib.optionalString (variant != "standalone") "-${variant}"}"; - version = "3.2.0"; + version = "3.2.1"; src = fetchFromGitHub { owner = "c-koi"; repo = "gmic-qt"; rev = "v.${version}"; - sha256 = "sha256-I5XC7zbDyBPFj4zul9rshoyeVV0hRQQ3aZQzEvYrgdc="; + sha256 = "sha256-z+GtYLBcHVufXwdeSd8WKmPmU1+/EKMv26kNaEgyt5w="; }; nativeBuildInputs = [ From 43386c395d585dc1c03c7d4a06ca61401428aa68 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 19 Feb 2023 21:23:30 +0100 Subject: [PATCH 025/178] python310Packages.types-psutil: 5.9.5.5 -> 5.9.5.7 --- pkgs/development/python-modules/types-psutil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/types-psutil/default.nix b/pkgs/development/python-modules/types-psutil/default.nix index 3d1d6eecb19b..a988099f6800 100644 --- a/pkgs/development/python-modules/types-psutil/default.nix +++ b/pkgs/development/python-modules/types-psutil/default.nix @@ -5,12 +5,12 @@ buildPythonPackage rec { pname = "types-psutil"; - version = "5.9.5.5"; + version = "5.9.5.7"; format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "sha256-Tyb9sssGSydMvGNZ+6Sr87OimT19SrwzatCUdWghLGI="; + sha256 = "sha256-s443a6DVO5oI0Ot3w8z2Ifng4PkPm9+y7MRz1ixoKKM="; }; # Module doesn't have tests From e00fa961ed33e59510854b1c89c90d2fd62efcd4 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 17:48:56 +0100 Subject: [PATCH 026/178] gmic-qt: Add gimp plug-in to passthru.tests --- pkgs/tools/graphics/gmic-qt/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/graphics/gmic-qt/default.nix b/pkgs/tools/graphics/gmic-qt/default.nix index 098df04e545c..dc73849d148e 100644 --- a/pkgs/tools/graphics/gmic-qt/default.nix +++ b/pkgs/tools/graphics/gmic-qt/default.nix @@ -26,6 +26,7 @@ , coreutils , jq , nix-update-script +, gimpPlugins }: let @@ -99,6 +100,10 @@ mkDerivation rec { ''; passthru = { + tests = { + gimp-plugin = gimpPlugins.gmic; + }; + updateScript = nix-update-script { }; }; From 63e4a922175abf5f7d5087225bc046b0177348f5 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Sun, 19 Feb 2023 18:17:57 +0100 Subject: [PATCH 027/178] gmic-qt: Mark as broken MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ever since the gmic 3.2.0 bump, it just does not build – it tries to use stub definitions for gmic_image from src/GmicQt.h, leading to errors like: /build/source/src/GmicQt.cpp:344:11: error: 'struct gmic_library::gmic_image' has no member named 'channels' 344 | img.channels(0, 3); | ~~~~^~~~~~~~ gmic-qt 3.2.1 contains a supposed fix (https://github.com/c-koi/gmic-qt/commit/f0d9d8acd10b89f9d28a49227f3c70ff1f2e18a5) which might have actually fixed the gmic_image issue but it introduces another one with cimg. gmic-3.2.1-dev/include/gmic.h:191:21: fatal error: gmic.cpp: No such file or directory 191 | #define cimg_plugin "gmic.cpp" | ^~~~~~~~~~ I do not really understand qmake, deprecated build system which gmic author insists on using for gmic-qt, and the trio of libraries is convoluted enough (mutually including their various headers and source files) that I gave up on creating an usable CMake build script that supports system libraries. It does not help that the git history is obfuscated, making proper investigation annoying. Marking it as broken will at least make gimp-with-plugins work. --- pkgs/tools/graphics/gmic-qt/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/graphics/gmic-qt/default.nix b/pkgs/tools/graphics/gmic-qt/default.nix index dc73849d148e..f9766650ec41 100644 --- a/pkgs/tools/graphics/gmic-qt/default.nix +++ b/pkgs/tools/graphics/gmic-qt/default.nix @@ -108,6 +108,8 @@ mkDerivation rec { }; meta = with lib; { + # Broken since 3.2.0 update, cannot handle system gmic and cimg. + broken = true; description = variants.${variant}.description; homepage = "http://gmic.eu/"; license = licenses.gpl3Plus; From 4624ec9f3e4280d2e052cfbbe2e18fb681424414 Mon Sep 17 00:00:00 2001 From: Connor Brewster Date: Sun, 19 Feb 2023 15:57:12 -0600 Subject: [PATCH 028/178] maintainers: add cbrewster --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index dd42de0651ee..fa09c3226752 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2467,6 +2467,12 @@ githubId = 3471749; name = "Claudio Bley"; }; + cbrewster = { + email = "cbrewster@hey.com"; + github = "cbrewster"; + githubId = 9086315; + name = "Connor Brewster"; + }; cburstedde = { email = "burstedde@ins.uni-bonn.de"; github = "cburstedde"; From d897ab40f2280be2f625780909110f6ec8b238c1 Mon Sep 17 00:00:00 2001 From: Connor Brewster Date: Sun, 19 Feb 2023 15:45:31 -0600 Subject: [PATCH 029/178] nsc: init at 2.7.6 --- pkgs/tools/system/nsc/default.nix | 40 +++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 42 insertions(+) create mode 100644 pkgs/tools/system/nsc/default.nix diff --git a/pkgs/tools/system/nsc/default.nix b/pkgs/tools/system/nsc/default.nix new file mode 100644 index 000000000000..69f16d65c576 --- /dev/null +++ b/pkgs/tools/system/nsc/default.nix @@ -0,0 +1,40 @@ +{ lib +, stdenv +, buildGoModule +, fetchFromGitHub +}: + +buildGoModule rec { + pname = "nsc"; + version = "2.7.6"; + + src = fetchFromGitHub { + owner = "nats-io"; + repo = pname; + rev = "v${version}"; + hash = "sha256-aieUCQ5JVJQs4RoTGaXwfTv3xC1ozSsQyfCLsD245go="; + }; + + ldflags = [ + "-s" + "-w" + "-X main.version=v${version}" + "-X main.builtBy=nixpkgs" + ]; + + vendorHash = "sha256-gDwppx0ORG+pXzTdGtUVbiFyTD/P7avt+/V89Gl0QYY="; + + preCheck = '' + # Tests attempt to write to the home directory. + export HOME=$(mktemp -d) + ''; + + meta = { + description = "A tool for creating NATS account and user access configurations"; + homepage = "https://github.com/nats-io/nsc"; + license = with lib.licenses; [ asl20 ]; + maintainers = with lib.maintainers; [ cbrewster ]; + mainProgram = "nsc"; + broken = stdenv.isDarwin; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a2d9e8c44625..71409c91e374 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9205,6 +9205,8 @@ with pkgs; natscli = callPackage ../tools/system/natscli { }; + nsc = callPackage ../tools/system/nsc { }; + nbench = callPackage ../tools/misc/nbench { }; nbtscanner = callPackage ../tools/security/nbtscanner { From f8d68cd3fda9094766487da3f0d599b844837626 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 21 Feb 2023 04:11:33 +0000 Subject: [PATCH 030/178] zimfw: 1.11.1 -> 1.11.2 --- pkgs/shells/zsh/zimfw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/zsh/zimfw/default.nix b/pkgs/shells/zsh/zimfw/default.nix index 02f1f6513c56..47f8b21c1dc9 100644 --- a/pkgs/shells/zsh/zimfw/default.nix +++ b/pkgs/shells/zsh/zimfw/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "zimfw"; - version = "1.11.1"; + version = "1.11.2"; src = fetchFromGitHub { owner = "zimfw"; repo = "zimfw"; rev = "v${version}"; ## zim only needs this one file to be installed. sparseCheckout = [ "zimfw.zsh" ]; - sha256 = "sha256-ZL/x5FNklRa5JnZ5UUofnIcW4dCInaEvTLBQfMJDWIM="; + sha256 = "sha256-FgTCdSSDp8pvscRUD4vVk/peoCI4e9FPoCuHP25wxXA="; }; strictDeps = true; dontConfigure = true; From e5f1812bd5157e68a064ae425b56f80d926d3209 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 21 Feb 2023 04:20:00 +0000 Subject: [PATCH 031/178] python310Packages.accessible-pygments: init at 0.0.3 --- .../accessible-pygments/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/accessible-pygments/default.nix diff --git a/pkgs/development/python-modules/accessible-pygments/default.nix b/pkgs/development/python-modules/accessible-pygments/default.nix new file mode 100644 index 000000000000..0b5c39117cc7 --- /dev/null +++ b/pkgs/development/python-modules/accessible-pygments/default.nix @@ -0,0 +1,39 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pythonOlder +, pygments +}: + +buildPythonPackage rec { + pname = "accessible-pygments"; + version = "0.0.3"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; + + src = fetchPypi { + inherit pname version; + hash = "sha256-CRe1B2RqazOT60kJGmJQb2sqOTX12V5NEkncUF+KTq4="; + }; + + propagatedBuildInputs = [ + pygments + ]; + + # Tests only execute pygments with these styles + doCheck = false; + + pythonImportsCheck = [ + "a11y_pygments" + "a11y_pygments.utils" + ]; + + meta = with lib; { + description = "A collection of accessible pygments styles"; + homepage = "https://github.com/Quansight-Labs/accessible-pygments"; + changelog = "https://github.com/Quansight-Labs/accessible-pygments/raw/v${version}/CHANGELOG.md"; + license = licenses.bsd3; + maintainers = with maintainers; [ marsam ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f09a8eb1a188..52125dcc054d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20,6 +20,8 @@ self: super: with self; { absl-py = callPackage ../development/python-modules/absl-py { }; + accessible-pygments = callPackage ../development/python-modules/accessible-pygments { }; + accuweather = callPackage ../development/python-modules/accuweather { }; accupy = callPackage ../development/python-modules/accupy { }; From 23f105f5a2c14d42420c10f69baf1fd648edb4eb Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 21 Feb 2023 04:20:00 +0000 Subject: [PATCH 032/178] python310Packages.pydata-sphinx-theme: 0.12.0 -> 0.13.0rc4 --- .../python-modules/pydata-sphinx-theme/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pydata-sphinx-theme/default.nix b/pkgs/development/python-modules/pydata-sphinx-theme/default.nix index b828120a309c..a2a2a348a73d 100644 --- a/pkgs/development/python-modules/pydata-sphinx-theme/default.nix +++ b/pkgs/development/python-modules/pydata-sphinx-theme/default.nix @@ -3,6 +3,7 @@ , pythonOlder , fetchPypi , sphinx +, accessible-pygments , beautifulsoup4 , docutils , packaging @@ -10,7 +11,7 @@ buildPythonPackage rec { pname = "pydata-sphinx-theme"; - version = "0.12.0"; + version = "0.13.0rc4"; format = "wheel"; @@ -21,17 +22,20 @@ buildPythonPackage rec { dist = "py3"; python = "py3"; pname = "pydata_sphinx_theme"; - sha256 = "sha256-wX26tno3dPBvNPY3jolvzQZozItdocG6AX5lzx3wr1g="; + sha256 = "sha256-tLkCMX/LvFxYPOskW2LXHkfHggsG/CIo41W3BF1Zvpc="; }; propagatedBuildInputs = [ sphinx + accessible-pygments beautifulsoup4 docutils packaging ]; - pythonImportsCheck = [ "pydata_sphinx_theme" ]; + pythonImportsCheck = [ + "pydata_sphinx_theme" + ]; meta = with lib; { description = "Bootstrap-based Sphinx theme from the PyData community"; From 34333511561542e7f3d4e2a8cef64869d0c4e66e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 21 Feb 2023 04:20:00 +0000 Subject: [PATCH 033/178] fastlane: 2.211.0 -> 2.212.0 https://github.com/fastlane/fastlane/releases/tag/2.212.0 --- pkgs/tools/admin/fastlane/Gemfile.lock | 40 +++++++------- pkgs/tools/admin/fastlane/gemset.nix | 72 +++++++++++++------------- 2 files changed, 56 insertions(+), 56 deletions(-) diff --git a/pkgs/tools/admin/fastlane/Gemfile.lock b/pkgs/tools/admin/fastlane/Gemfile.lock index c3536358552f..565f3b789f01 100644 --- a/pkgs/tools/admin/fastlane/Gemfile.lock +++ b/pkgs/tools/admin/fastlane/Gemfile.lock @@ -1,23 +1,23 @@ GEM remote: https://rubygems.org/ specs: - CFPropertyList (3.0.5) + CFPropertyList (3.0.6) rexml addressable (2.8.1) public_suffix (>= 2.0.2, < 6.0) artifactory (3.0.15) atomos (0.1.3) aws-eventstream (1.2.0) - aws-partitions (1.660.0) - aws-sdk-core (3.167.0) + aws-partitions (1.714.0) + aws-sdk-core (3.170.0) aws-eventstream (~> 1, >= 1.0.2) aws-partitions (~> 1, >= 1.651.0) aws-sigv4 (~> 1.5) jmespath (~> 1, >= 1.6.1) - aws-sdk-kms (1.59.0) + aws-sdk-kms (1.62.0) aws-sdk-core (~> 3, >= 3.165.0) aws-sigv4 (~> 1.1) - aws-sdk-s3 (1.117.1) + aws-sdk-s3 (1.119.1) aws-sdk-core (~> 3, >= 3.165.0) aws-sdk-kms (~> 1) aws-sigv4 (~> 1.4) @@ -36,8 +36,8 @@ GEM unf (>= 0.0.5, < 1.0.0) dotenv (2.8.1) emoji_regex (3.2.3) - excon (0.94.0) - faraday (1.10.2) + excon (0.99.0) + faraday (1.10.3) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) @@ -66,7 +66,7 @@ GEM faraday_middleware (1.2.0) faraday (~> 1.0) fastimage (2.2.6) - fastlane (2.211.0) + fastlane (2.212.0) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) @@ -106,9 +106,9 @@ GEM xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3) gh_inspector (1.1.3) - google-apis-androidpublisher_v3 (0.31.0) + google-apis-androidpublisher_v3 (0.34.0) google-apis-core (>= 0.9.1, < 2.a) - google-apis-core (0.9.1) + google-apis-core (0.11.0) addressable (~> 2.5, >= 2.5.1) googleauth (>= 0.16.2, < 2.a) httpclient (>= 2.8.1, < 3.a) @@ -117,8 +117,8 @@ GEM retriable (>= 2.0, < 4.a) rexml webrick - google-apis-iamcredentials_v1 (0.16.0) - google-apis-core (>= 0.9.1, < 2.a) + google-apis-iamcredentials_v1 (0.17.0) + google-apis-core (>= 0.11.0, < 2.a) google-apis-playcustomapp_v1 (0.12.0) google-apis-core (>= 0.9.1, < 2.a) google-apis-storage_v1 (0.19.0) @@ -148,11 +148,11 @@ GEM http-cookie (1.0.5) domain_name (~> 0.5) httpclient (2.8.3) - jmespath (1.6.1) - json (2.6.2) - jwt (2.5.0) + jmespath (1.6.2) + json (2.6.3) + jwt (2.7.0) memoist (0.16.2) - mini_magick (4.11.0) + mini_magick (4.12.0) mini_mime (1.1.2) multi_json (1.15.0) multipart-post (2.0.0) @@ -161,7 +161,7 @@ GEM optparse (0.1.1) os (1.1.4) plist (3.6.0) - public_suffix (5.0.0) + public_suffix (5.0.1) rake (13.0.6) representable (3.2.0) declarative (< 0.1.0) @@ -178,7 +178,7 @@ GEM faraday (>= 0.17.5, < 3.a) jwt (>= 1.5, < 3.0) multi_json (~> 1.10) - simctl (1.6.8) + simctl (1.6.10) CFPropertyList naturally terminal-notifier (2.0.0) @@ -194,7 +194,7 @@ GEM unf_ext unf_ext (0.0.8.2) unicode-display_width (1.8.0) - webrick (1.7.0) + webrick (1.8.1) word_wrap (1.0.0) xcodeproj (1.22.0) CFPropertyList (>= 2.3.3, < 4.0) @@ -215,4 +215,4 @@ DEPENDENCIES fastlane BUNDLED WITH - 2.3.24 + 2.4.6 diff --git a/pkgs/tools/admin/fastlane/gemset.nix b/pkgs/tools/admin/fastlane/gemset.nix index d65a7bd02d79..40fa2e8e9007 100644 --- a/pkgs/tools/admin/fastlane/gemset.nix +++ b/pkgs/tools/admin/fastlane/gemset.nix @@ -45,10 +45,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ycbhr5329f13sjm1f3vc0iid3mmnxyg8230sp98p8jxh4c8bkwv"; + sha256 = "1dpdx2l1h0nglxxd82khijyxdfa0p2v4s6b5fv2j33jd3k97da05"; type = "gem"; }; - version = "1.660.0"; + version = "1.714.0"; }; aws-sdk-core = { dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"]; @@ -56,10 +56,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "095nj7sf8914y60m1grnpy7cm6ybnw4ywnc0j84gz2vgv1m8awfk"; + sha256 = "0zc4zhv2wq7s5p8c9iaplama1lpg2kwldg81j83c8w4xydf1wd2r"; type = "gem"; }; - version = "3.167.0"; + version = "3.170.0"; }; aws-sdk-kms = { dependencies = ["aws-sdk-core" "aws-sigv4"]; @@ -67,10 +67,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0lq1f03gy02f8z5fpc61kngkja8kkgk2m8cc6g42aij0iszjw03c"; + sha256 = "070s86pxrbq98iddq6shdq7g0lrzgsdqnsnc5l4kygvqimliq4dr"; type = "gem"; }; - version = "1.59.0"; + version = "1.62.0"; }; aws-sdk-s3 = { dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"]; @@ -78,10 +78,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "17ah9j82313ynb8nkcbq21fa3dy1a3v6lk5kdrhphazbpb2xmxkn"; + sha256 = "1rpnlzsl52znhcki13jkwdshgwf51pn26267481f4fa842gr7xgp"; type = "gem"; }; - version = "1.117.1"; + version = "1.119.1"; }; aws-sigv4 = { dependencies = ["aws-eventstream"]; @@ -110,10 +110,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "193l8r1ycd3dcxa7lsb4pqcghbk56dzc5244m6y8xmv88z6m31d7"; + sha256 = "1a36zn77yyibqsfpka0i8vgf3yv98ic2b9wwlbc29566y8wpa2bq"; type = "gem"; }; - version = "3.0.5"; + version = "3.0.6"; }; claide = { groups = ["default"]; @@ -213,10 +213,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "094kbi32i56p08348b95amg9dz5c9prn5jywhkcghsd3d6kll981"; + sha256 = "0j826kfvzn7nc5pv950n270r0sx1702k988ad11cdlav3dcxxw09"; type = "gem"; }; - version = "0.94.0"; + version = "0.99.0"; }; faraday = { dependencies = ["faraday-em_http" "faraday-em_synchrony" "faraday-excon" "faraday-httpclient" "faraday-multipart" "faraday-net_http" "faraday-net_http_persistent" "faraday-patron" "faraday-rack" "faraday-retry" "ruby2_keywords"]; @@ -224,10 +224,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1d5ipsv069dhgv9zhxgj8pz4j52yhgvfm01aq881yz7qgjd7ilxp"; + sha256 = "1c760q0ks4vj4wmaa7nh1dgvgqiwaw0mjr7v8cymy7i3ffgjxx90"; type = "gem"; }; - version = "1.10.2"; + version = "1.10.3"; }; faraday-cookie_jar = { dependencies = ["faraday" "http-cookie"]; @@ -368,10 +368,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1h8w77nq8sbvqvv01sq3xynrizfg80yzas9wlbx3a18gqsvk4hjh"; + sha256 = "1c7j1w0jyxn8gfk69s2h1v1pxfpk9s1hc8a9inblkj0zlba7cikl"; type = "gem"; }; - version = "2.211.0"; + version = "2.212.0"; }; gh_inspector = { groups = ["default"]; @@ -389,10 +389,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "14rndcs6jlq679cq760ww3grnqsq71kbq0sjsllgf9mngsxhcg7n"; + sha256 = "09almff2kzdkciai63365q18wy0dfjhj48h8wa7lk77pjbfxgqfp"; type = "gem"; }; - version = "0.31.0"; + version = "0.34.0"; }; google-apis-core = { dependencies = ["addressable" "googleauth" "httpclient" "mini_mime" "representable" "retriable" "rexml" "webrick"]; @@ -400,10 +400,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0d5h7sm8asxg252dnkk91sq51ynk1m06i15an6s04ihsi5ja64n0"; + sha256 = "184zkm5agi7r5fl79hgahjpydsc4d23nd2ynh2sr9z8gs2w4h82f"; type = "gem"; }; - version = "0.9.1"; + version = "0.11.0"; }; google-apis-iamcredentials_v1 = { dependencies = ["google-apis-core"]; @@ -411,10 +411,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07d6c8pf4fam9bzkz5fjqypklclq774m0h7ahyxv0hn5zb3hkw4b"; + sha256 = "0ysil0bkh755kmf9xvw5szhk1yyh3gqzwfsrbwsrl77gsv7jarcs"; type = "gem"; }; - version = "0.16.0"; + version = "0.17.0"; }; google-apis-playcustomapp_v1 = { dependencies = ["google-apis-core"]; @@ -528,30 +528,30 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1mnvb80cdg7fzdcs3xscv21p28w4igk5sj5m7m81xp8v2ks87jj0"; + sha256 = "1cdw9vw2qly7q7r41s7phnac264rbsdqgj4l0h4nqgbjb157g393"; type = "gem"; }; - version = "1.6.1"; + version = "1.6.2"; }; json = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0yk5d10yvspkc5jyvx9gc1a9pn1z8v4k2hvjk1l88zixwf3wf3cl"; + sha256 = "0nalhin1gda4v8ybk6lq8f407cgfrj6qzn234yra4ipkmlbfmal6"; type = "gem"; }; - version = "2.6.2"; + version = "2.6.3"; }; jwt = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0kcmnx6rgjyd7sznai9ccns2nh7p7wnw3mi8a7vf2wkm51azwddq"; + sha256 = "09yj3z5snhaawh2z1w45yyihzmh57m6m7dp8ra8gxavhj5kbiq5p"; type = "gem"; }; - version = "2.5.0"; + version = "2.7.0"; }; memoist = { groups = ["default"]; @@ -568,10 +568,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1aj604x11d9pksbljh0l38f70b558rhdgji1s9i763hiagvvx2hs"; + sha256 = "0slh78f9z6n0l1i2km7m48yz7l4fjrk88sj1f4mh1wb39sl2yc37"; type = "gem"; }; - version = "4.11.0"; + version = "4.12.0"; }; mini_mime = { groups = ["default"]; @@ -658,10 +658,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0sqw1zls6227bgq38sxb2hs8nkdz4hn1zivs27mjbniswfy4zvi6"; + sha256 = "0hz0bx2qs2pwb0bwazzsah03ilpf3aai8b7lk7s35jsfzwbkjq35"; type = "gem"; }; - version = "5.0.0"; + version = "5.0.1"; }; rake = { groups = ["default"]; @@ -761,10 +761,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1v9rsdmg5c5kkf8ps47xnrfbvjnq11sbaifr186jwkh4npawz00x"; + sha256 = "0sr3z4kmp6ym7synicyilj9vic7i9nxgaszqx6n1xn1ss7s7g45r"; type = "gem"; }; - version = "1.6.8"; + version = "1.6.10"; }; terminal-notifier = { groups = ["default"]; @@ -874,10 +874,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1d4cvgmxhfczxiq5fr534lmizkhigd15bsx5719r5ds7k7ivisc7"; + sha256 = "13qm7s0gr2pmfcl7dxrmq38asaza4w0i2n9my4yzs499j731wh8r"; type = "gem"; }; - version = "1.7.0"; + version = "1.8.1"; }; word_wrap = { groups = ["default"]; From 23ed00b4bf739a9d87a91d0bd58376164c758874 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 21 Feb 2023 04:20:00 +0000 Subject: [PATCH 034/178] python310Packages.sphinx-book-theme: 0.4.0rc1 -> 1.0.0rc2 https://github.com/executablebooks/sphinx-book-theme/releases/tag/v1.0.0rc1 https://github.com/executablebooks/sphinx-book-theme/releases/tag/v1.0.0rc2 --- .../python-modules/sphinx-book-theme/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/sphinx-book-theme/default.nix b/pkgs/development/python-modules/sphinx-book-theme/default.nix index 6c5597755a36..12a5878024b8 100644 --- a/pkgs/development/python-modules/sphinx-book-theme/default.nix +++ b/pkgs/development/python-modules/sphinx-book-theme/default.nix @@ -5,11 +5,12 @@ , sphinx , pydata-sphinx-theme , pyyaml +, jupyter-book }: buildPythonPackage rec { pname = "sphinx-book-theme"; - version = "0.4.0rc1"; + version = "1.0.0rc2"; format = "wheel"; @@ -20,7 +21,7 @@ buildPythonPackage rec { dist = "py3"; python = "py3"; pname = "sphinx_book_theme"; - sha256 = "bfad8ef469885da5633f7cf7f8cd9a0ae11ea2351a91e507b44cf15973934512"; + sha256 = "43977402f55b79706e117c6de6f50e67dac6dad698eb9b75be07dc2e6a689bde"; }; propagatedBuildInputs = [ @@ -29,7 +30,13 @@ buildPythonPackage rec { pyyaml ]; - pythonImportsCheck = [ "sphinx_book_theme" ]; + pythonImportsCheck = [ + "sphinx_book_theme" + ]; + + passthru.tests = { + inherit jupyter-book; + }; meta = with lib; { description = "A clean book theme for scientific explanations and documentation with Sphinx"; From 86d5d67fb5358694d788e3525d47bc26a4aa5740 Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Sun, 23 Oct 2022 17:35:29 -0700 Subject: [PATCH 035/178] maintainers: add CobaltCause --- maintainers/maintainer-list.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 161a6065df87..5a8d0d232835 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2866,6 +2866,13 @@ githubId = 718298; name = "Michael Livshin"; }; + CobaltCause = { + name = "Charles Hall"; + email = "charles@computer.surgery"; + github = "CobaltCause"; + githubId = 7003738; + matrix = "@charles:computer.surgery"; + }; cobbal = { email = "andrew.cobb@gmail.com"; github = "cobbal"; From e5d7a2eada0f1d0fe1ff4b172fb5dbe781caf0ba Mon Sep 17 00:00:00 2001 From: rewine Date: Thu, 12 Jan 2023 15:26:34 +0800 Subject: [PATCH 036/178] dde-calendar: init at 5.8.30 --- .../deepin/core/dde-calendar/default.nix | 82 +++++++++++++++++++ pkgs/desktops/deepin/default.nix | 1 + 2 files changed, 83 insertions(+) create mode 100644 pkgs/desktops/deepin/core/dde-calendar/default.nix diff --git a/pkgs/desktops/deepin/core/dde-calendar/default.nix b/pkgs/desktops/deepin/core/dde-calendar/default.nix new file mode 100644 index 000000000000..eeed587c3747 --- /dev/null +++ b/pkgs/desktops/deepin/core/dde-calendar/default.nix @@ -0,0 +1,82 @@ +{ stdenv +, lib +, fetchFromGitHub +, fetchpatch +, dtkwidget +, qt5integration +, qt5platform-plugins +, dde-qt-dbus-factory +, cmake +, qttools +, pkg-config +, wrapQtAppsHook +, runtimeShell +, qtbase +, gtest +}: + +stdenv.mkDerivation rec { + pname = "dde-calendar"; + version = "5.8.30"; + + src = fetchFromGitHub { + owner = "linuxdeepin"; + repo = pname; + rev = version; + sha256 = "sha256-8/UXq9W3Gb1Lg/nOji6zcHJts6lgY2uDxvrBxQs3Zio="; + }; + + patches = [ + (fetchpatch { + name = "chore: use GNUInstallDirs in CmakeLists"; + url = "https://github.com/linuxdeepin/dde-calendar/commit/b9d9555d90a36318eeee62ece49250b4bf8acd10.patch"; + sha256 = "sha256-pvgxZPczs/lkwNjysNuVu+1AY69VZlxOn7hR9A02/3M="; + }) + ]; + + postPatch = '' + substituteInPlace calendar-service/src/dbmanager/huanglidatabase.cpp \ + --replace "/usr/share/dde-calendar/data/huangli.db" "$out/share/dde-calendar/data/huangli.db" + substituteInPlace calendar-service/src/main.cpp \ + --replace "/usr/share/dde-calendar/translations" "$out/share/dde-calendar/translations" + substituteInPlace calendar-service/assets/data/com.deepin.dataserver.Calendar.service \ + --replace "/usr/lib/deepin-daemon/dde-calendar-service" "$out/lib/deepin-daemon/dde-calendar-service" + substituteInPlace calendar-client/assets/dbus/com.deepin.Calendar.service \ + --replace "/usr/bin/dde-calendar" "$out/bin/dde-calendar" + substituteInPlace calendar-service/{src/{csystemdtimercontrol.cpp,jobremindmanager.cpp},assets/{data/com.dde.calendarserver.calendar.service,dde-calendar-service.desktop}} \ + --replace "/bin/bash" "${runtimeShell}" + ''; + + nativeBuildInputs = [ + cmake + qttools + pkg-config + wrapQtAppsHook + ]; + + buildInputs = [ + dtkwidget + qt5platform-plugins + dde-qt-dbus-factory + gtest + ]; + + cmakeFlags = [ "-DVERSION=${version}" ]; + + # qt5integration must be placed before qtsvg in QT_PLUGIN_PATH + qtWrapperArgs = [ + "--prefix QT_PLUGIN_PATH : ${qt5integration}/${qtbase.qtPluginPrefix}" + ]; + + postFixup = '' + wrapQtApp $out/lib/deepin-daemon/dde-calendar-service + ''; + + meta = with lib; { + description = "Calendar for Deepin Desktop Environment"; + homepage = "https://github.com/linuxdeepin/dde-calendar"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = teams.deepin.members; + }; +} diff --git a/pkgs/desktops/deepin/default.nix b/pkgs/desktops/deepin/default.nix index 653372d47ffa..f8fb4f56ed1d 100644 --- a/pkgs/desktops/deepin/default.nix +++ b/pkgs/desktops/deepin/default.nix @@ -30,6 +30,7 @@ let udisks2-qt5 = callPackage ./library/udisks2-qt5 { }; #### CORE + dde-calendar = callPackage ./core/dde-calendar { }; dde-polkit-agent = callPackage ./core/dde-polkit-agent { }; dpa-ext-gnomekeyring = callPackage ./core/dpa-ext-gnomekeyring { }; From 3483b8c1e5b9431629b471ae9c05d290c3cc79a9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 08:41:02 +0100 Subject: [PATCH 037/178] python310Packages.screenlogicpy: 0.7.1 -> 0.7.2 Diff: https://github.com/dieselrabbit/screenlogicpy/compare/refs/tags/v0.7.1...v0.7.2 Changelog: https://github.com/dieselrabbit/screenlogicpy/releases/tag/v0.7.2 --- pkgs/development/python-modules/screenlogicpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/screenlogicpy/default.nix b/pkgs/development/python-modules/screenlogicpy/default.nix index cd33595b22f2..3bc5e45bd3ba 100644 --- a/pkgs/development/python-modules/screenlogicpy/default.nix +++ b/pkgs/development/python-modules/screenlogicpy/default.nix @@ -9,7 +9,7 @@ buildPythonPackage rec { pname = "screenlogicpy"; - version = "0.7.1"; + version = "0.7.2"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -18,7 +18,7 @@ buildPythonPackage rec { owner = "dieselrabbit"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-goziVk8OmPKkDb5oVSo/TVLLzwwqx3/Vlw0s/P9+Wss="; + hash = "sha256-0yQ0upLkx5oroEH9BvIOfM5bgmVJw8o83IeAao5ncVs="; }; propagatedBuildInputs = [ From 013f6a3a3844a046144a5089a37246ce06a1fa6c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 21 Feb 2023 08:42:48 +0100 Subject: [PATCH 038/178] =?UTF-8?q?ocamlPackages.git:=203.10.1=20=E2=86=92?= =?UTF-8?q?=203.12.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/development/ocaml-modules/git/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/git/default.nix b/pkgs/development/ocaml-modules/git/default.nix index 957d53b39644..1ffc95d3c225 100644 --- a/pkgs/development/ocaml-modules/git/default.nix +++ b/pkgs/development/ocaml-modules/git/default.nix @@ -8,14 +8,14 @@ buildDunePackage rec { pname = "git"; - version = "3.10.1"; + version = "3.12.0"; minimalOCamlVersion = "4.08"; duneVersion = "3"; src = fetchurl { url = "https://github.com/mirage/ocaml-git/releases/download/${version}/git-${version}.tbz"; - sha256 = "sha256-plu69FIpyJcuZ8nJ3QnufLnDEjtcsoAd8czKHfzTkd8="; + hash = "sha256-qgd5fny23J6pcOdgwB3Yt1UxJii2XE25OjcSVFdLMKA="; }; # remove changelog for the carton package From 41d0fb5083bf9fea58485496423e61f4c8b2c229 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 08:58:47 +0100 Subject: [PATCH 039/178] python310Packages.fakeredis: 2.9.0 -> 2.9.2 Diff: https://github.com/dsoftwareinc/fakeredis-py/compare/refs/tags/v2.9.0...v2.9.2 Changelog: https://github.com/cunla/fakeredis-py/releases/tag/v2.9.2 --- pkgs/development/python-modules/fakeredis/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/fakeredis/default.nix b/pkgs/development/python-modules/fakeredis/default.nix index abe18fb3e3f1..d600e50d395b 100644 --- a/pkgs/development/python-modules/fakeredis/default.nix +++ b/pkgs/development/python-modules/fakeredis/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "fakeredis"; - version = "2.9.0"; + version = "2.9.2"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -25,7 +25,7 @@ buildPythonPackage rec { owner = "dsoftwareinc"; repo = "fakeredis-py"; rev = "refs/tags/v${version}"; - hash = "sha256-7sX+XDhyMtijwcwKK1Bt7n26v24qinb4HDVQD8zUg2M="; + hash = "sha256-YwUNjEM0Lmj14fTqQXy78LRzlfffy7KZOTulufkeRZA="; }; nativeBuildInputs = [ From 0f2d172802172dad72e30c32b2373d6757b5e2b5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 09:01:24 +0100 Subject: [PATCH 040/178] python310Packages.axis: 46 -> 47 Diff: https://github.com/Kane610/axis/compare/refs/tags/v46...v47 Changelog: https://github.com/Kane610/axis/releases/tag/v47 --- pkgs/development/python-modules/axis/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/axis/default.nix b/pkgs/development/python-modules/axis/default.nix index e09a1fa7d4bc..2ac4a7be1d3f 100644 --- a/pkgs/development/python-modules/axis/default.nix +++ b/pkgs/development/python-modules/axis/default.nix @@ -6,19 +6,22 @@ , httpx , orjson , packaging +, pythonOlder , xmltodict }: buildPythonPackage rec { pname = "axis"; - version = "46"; + version = "47"; format = "setuptools"; + disabled = pythonOlder "3.7"; + src = fetchFromGitHub { owner = "Kane610"; repo = pname; - rev = "v${version}"; - hash = "sha256-alhezwRPag+6JoC4zbusWdxFyZQ2dZl04Uj1PkiN4qo="; + rev = "refs/tags/v${version}"; + hash = "sha256-a8YvFX3IcbX4Sm75GzGv7vIyMmSHxwGejyq6nE7foOE="; }; propagatedBuildInputs = [ @@ -32,7 +35,10 @@ buildPythonPackage rec { # Tests requires a server on localhost doCheck = false; - pythonImportsCheck = [ "axis" ]; + + pythonImportsCheck = [ + "axis" + ]; meta = with lib; { description = "Python library for communicating with devices from Axis Communications"; From 85e7194e6788ae188e03edb0358e0468e92a6376 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 09:26:36 +0100 Subject: [PATCH 041/178] python310Packages.tabula-py: 2.6.0 -> 2.7.0 Diff: https://github.com/chezou/tabula-py/compare/refs/tags/v2.6.0...v2.7.0 Changelog: https://github.com/chezou/tabula-py/releases/tag/v2.7.0 --- pkgs/development/python-modules/tabula-py/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/tabula-py/default.nix b/pkgs/development/python-modules/tabula-py/default.nix index 25ae9a1b5117..585cf7205e1f 100644 --- a/pkgs/development/python-modules/tabula-py/default.nix +++ b/pkgs/development/python-modules/tabula-py/default.nix @@ -13,16 +13,16 @@ buildPythonPackage rec { pname = "tabula-py"; - version = "2.6.0"; - format = "setuptools"; + version = "2.7.0"; + format = "pyproject"; - disabled = pythonOlder "3.7"; + disabled = pythonOlder "3.8"; src = fetchFromGitHub { owner = "chezou"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-L/N4TqVHIlwqVeBKlUq5Oz1VW/105Ov6Yicvnn/lxlI="; + hash = "sha256-SV4QLvk7dXtU0/husS5A5mBYvbTejLyO9PpiO2oBtjs="; }; patches = [ From f4f6226b5e816adaf678d07fa2cc370cc24c42e9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 10:33:23 +0100 Subject: [PATCH 042/178] ioccheck: relax tabulate constraint --- pkgs/tools/security/ioccheck/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/ioccheck/default.nix b/pkgs/tools/security/ioccheck/default.nix index be50d6483228..6b1c4bc8e341 100644 --- a/pkgs/tools/security/ioccheck/default.nix +++ b/pkgs/tools/security/ioccheck/default.nix @@ -44,7 +44,7 @@ buildPythonApplication rec { owner = "ranguli"; repo = pname; rev = "db02d921e2519b77523a200ca2d78417802463db"; - sha256 = "0lgqypcd5lzb2yqd5lr02pba24m26ghly4immxgz13svi8f6vzm9"; + hash = "sha256-qf5tHIpbj/BfrzUST+EzohKh1hUg09KwF+vT0tj1+FE="; }; nativeBuildInputs = with py.pkgs; [ @@ -76,7 +76,8 @@ buildPythonApplication rec { --replace '"hurry.filesize" = "^0.9"' "" \ --replace 'vt-py = ">=0.6.1,<0.8.0"' 'vt-py = ">=0.6.1"' \ --replace 'backoff = "^1.10.0"' 'backoff = ">=1.10.0"' \ - --replace 'termcolor = "^1.1.0"' 'termcolor = "*"' + --replace 'termcolor = "^1.1.0"' 'termcolor = "*"' \ + --replace 'tabulate = "^0.8.9"' 'tabulate = "*"' ''; pythonImportsCheck = [ From 0689ff072f37a17fee31ec82dc945c178579902f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 10:51:33 +0100 Subject: [PATCH 043/178] python310Packages.flask-mongoengine: add changelog to meta --- pkgs/development/python-modules/flask-mongoengine/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index e411d1f55a78..b5ecde37d013 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -43,6 +43,7 @@ buildPythonPackage rec { meta = with lib; { description = "Flask-MongoEngine is a Flask extension that provides integration with MongoEngine and WTF model forms"; homepage = "https://github.com/mongoengine/flask-mongoengine"; + changelog = "https://github.com/MongoEngine/flask-mongoengine/releases/tag/v${version}"; license = licenses.bsd3; maintainers = [ maintainers.costrouc ]; }; From 17436a24612c38572449680c844c2e5a0cfe7a93 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 10:52:36 +0100 Subject: [PATCH 044/178] python310Packages.flask-mongoengine: update description --- pkgs/development/python-modules/flask-mongoengine/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index b5ecde37d013..dd9705c666cd 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -41,10 +41,10 @@ buildPythonPackage rec { doCheck = false; meta = with lib; { - description = "Flask-MongoEngine is a Flask extension that provides integration with MongoEngine and WTF model forms"; + description = "Flask extension that provides integration with MongoEngine and WTF model forms"; homepage = "https://github.com/mongoengine/flask-mongoengine"; changelog = "https://github.com/MongoEngine/flask-mongoengine/releases/tag/v${version}"; license = licenses.bsd3; - maintainers = [ maintainers.costrouc ]; + maintainers = with maintainers; [ costrouc ]; }; } From cbe4ff80030e6ebd96f2e3aaff15006c20f346b5 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 10:54:03 +0100 Subject: [PATCH 045/178] python310Packages.flask-mongoengine: remove buildInputs buildInputs covered the inputs which should have been part of checkInputs. Tests are not executed, thus removed. --- .../python-modules/flask-mongoengine/default.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index dd9705c666cd..6a9598166c1c 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -5,9 +5,6 @@ , flask-wtf , mongoengine , six -, nose -, rednose -, coverage , email-validator }: @@ -30,16 +27,13 @@ buildPythonPackage rec { six ]; - # they set test requirements to setup_requirements... - buildInputs = [ - nose - rednose - coverage - ]; - - # tests require working mongodb connection + # Tests require working mongodb connection doCheck = false; + pythonImportsCheck = [ + "flask_mongoengine" + ]; + meta = with lib; { description = "Flask extension that provides integration with MongoEngine and WTF model forms"; homepage = "https://github.com/mongoengine/flask-mongoengine"; From ad9e4df440aa9bc388131593af142becadd53a76 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 10:56:09 +0100 Subject: [PATCH 046/178] python310Packages.flask-mongoengine: disable on unsupported Python releases --- pkgs/development/python-modules/flask-mongoengine/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index 6a9598166c1c..efc6f64cea07 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -6,11 +6,15 @@ , mongoengine , six , email-validator +, pythonOlder }: buildPythonPackage rec { pname = "flask-mongoengine"; version = "1.0.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "MongoEngine"; From df8b681f4fd22832f307d42d5957694e1c63bad6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 11:00:46 +0100 Subject: [PATCH 047/178] python310Packages.flask-mongoengine: adjust inputs --- .../python-modules/flask-mongoengine/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index efc6f64cea07..631aaa7c621e 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -4,9 +4,9 @@ , flask , flask-wtf , mongoengine -, six , email-validator , pythonOlder +, typing-extensions }: buildPythonPackage rec { @@ -19,8 +19,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "MongoEngine"; repo = pname; - rev = "v${version}"; - sha256 = "10g9b13ls2msnhv8j44gslrfxa2ppqz2y1xjn2a4gg4m9mdjv8b2"; + rev = "refs/tags/v${version}"; + hash = "sha256-YqEtW02VvEeUsLIHLz6+V6juMtWPEIk2tLoKTUdY6YE="; }; propagatedBuildInputs = [ @@ -28,7 +28,8 @@ buildPythonPackage rec { flask flask-wtf mongoengine - six + ] ++ lib.optionals (pythonOlder "3.8") [ + typing-extensions ]; # Tests require working mongodb connection From 06afd90a88aabc4fc67676d36616c5f862fb897d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 11:07:07 +0100 Subject: [PATCH 048/178] python310Packages.wtforms: disable on unsupported Python releases --- pkgs/development/python-modules/wtforms/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/wtforms/default.nix b/pkgs/development/python-modules/wtforms/default.nix index 037bbb394e2e..719f45cca956 100644 --- a/pkgs/development/python-modules/wtforms/default.nix +++ b/pkgs/development/python-modules/wtforms/default.nix @@ -5,16 +5,20 @@ , babel , pytestCheckHook , email-validator +, pythonOlder }: buildPythonPackage rec { - version = "3.0.1"; pname = "wtforms"; + version = "3.0.1"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { pname = "WTForms"; inherit version; - sha256 = "1g654ghavds387hqxmhg9s8x222x89wbq1ggzxbsyn6x2axindbb"; + hash = "sha256-azUbuxLdWK9X/+8FvHhCXQjRkU4P1o7hQUO3reAjxbw="; }; propagatedBuildInputs = [ markupsafe babel ]; @@ -32,7 +36,7 @@ buildPythonPackage rec { homepage = "https://github.com/wtforms/wtforms"; changelog = "https://github.com/wtforms/wtforms/blob/${version}/CHANGES.rst"; license = licenses.bsd3; - maintainers = [ maintainers.bhipple ]; + maintainers = with maintainers; [ bhipple ]; }; } From 8a5a0711a5c8769277147766d78c052b1fd30823 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 11:10:53 +0100 Subject: [PATCH 049/178] python310Packages.wtforms: add optional-dependencies --- .../python-modules/wtforms/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/wtforms/default.nix b/pkgs/development/python-modules/wtforms/default.nix index 719f45cca956..deffda6ef5fe 100644 --- a/pkgs/development/python-modules/wtforms/default.nix +++ b/pkgs/development/python-modules/wtforms/default.nix @@ -21,15 +21,24 @@ buildPythonPackage rec { hash = "sha256-azUbuxLdWK9X/+8FvHhCXQjRkU4P1o7hQUO3reAjxbw="; }; - propagatedBuildInputs = [ markupsafe babel ]; + propagatedBuildInputs = [ + markupsafe + babel + ]; + passthru.optional-dependencies = { + email = [ + email-validator + ]; + }; nativeCheckInputs = [ pytestCheckHook - email-validator - ]; + ] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies); - pythonImportsCheck = [ "wtforms" ]; + pythonImportsCheck = [ + "wtforms" + ]; meta = with lib; { description = "A flexible forms validation and rendering library for Python"; From f0b8704f29830ec118520fe35c6c9e8e88bdfb48 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 11:16:35 +0100 Subject: [PATCH 050/178] python310Packages.flask-mongoengine: add optional-dependencies --- .../flask-mongoengine/default.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index 631aaa7c621e..21003b9f9296 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -1,12 +1,14 @@ { lib , buildPythonPackage +, email-validator , fetchFromGitHub , flask , flask-wtf +, markupsafe , mongoengine -, email-validator , pythonOlder , typing-extensions +, wtforms }: buildPythonPackage rec { @@ -32,6 +34,19 @@ buildPythonPackage rec { typing-extensions ]; + passthru.optional-dependencies = { + wtf = [ + flask-wtf + wtforms + ] ++ wtforms.optional-dependencies.email; + # toolbar = [ + # flask-debugtoolbar + # ]; + legacy = [ + markupsafe + ]; + }; + # Tests require working mongodb connection doCheck = false; From a5affaae7e4cfdb88e173450e0e45c3239df886e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 11:18:44 +0100 Subject: [PATCH 051/178] python310Packages.flask-mongoengine: move to pyproject --- .../python-modules/flask-mongoengine/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/flask-mongoengine/default.nix b/pkgs/development/python-modules/flask-mongoengine/default.nix index 21003b9f9296..9adecc5968d4 100644 --- a/pkgs/development/python-modules/flask-mongoengine/default.nix +++ b/pkgs/development/python-modules/flask-mongoengine/default.nix @@ -7,6 +7,8 @@ , markupsafe , mongoengine , pythonOlder +, setuptools +, setuptools-scm , typing-extensions , wtforms }: @@ -14,7 +16,7 @@ buildPythonPackage rec { pname = "flask-mongoengine"; version = "1.0.0"; - format = "setuptools"; + format = "pyproject"; disabled = pythonOlder "3.7"; @@ -25,6 +27,11 @@ buildPythonPackage rec { hash = "sha256-YqEtW02VvEeUsLIHLz6+V6juMtWPEIk2tLoKTUdY6YE="; }; + nativeBuildInputs = [ + setuptools + setuptools-scm + ]; + propagatedBuildInputs = [ email-validator flask From c93adad021a048df20e8d3340f8eb6eb250235f9 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Mon, 20 Feb 2023 11:04:54 -0300 Subject: [PATCH 052/178] elpa-packages: updated 2023-02-20 (from overlay) --- .../emacs/elisp-packages/elpa-generated.nix | 649 ++++++++++++------ 1 file changed, 440 insertions(+), 209 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix index f2acd4be8518..32560c34385e 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix @@ -33,18 +33,19 @@ ada-mode = callPackage ({ elpaBuild , emacs , fetchurl + , gnat-compiler , lib , uniquify-files , wisi }: elpaBuild { pname = "ada-mode"; ename = "ada-mode"; - version = "7.3.1"; + version = "8.0.5"; src = fetchurl { - url = "https://elpa.gnu.org/packages/ada-mode-7.3.1.tar"; - sha256 = "09ji22823w59nnqcjr5524ylxs93c5javsxcvmgbiqlvx9gfrdkk"; + url = "https://elpa.gnu.org/packages/ada-mode-8.0.5.tar"; + sha256 = "00baypl9bv2z42d6z2k531ai25yw2aj1dcv4pi1jhcp19c9kjg4l"; }; - packageRequires = [ emacs uniquify-files wisi ]; + packageRequires = [ emacs gnat-compiler uniquify-files wisi ]; meta = { homepage = "https://elpa.gnu.org/packages/ada-mode.html"; license = lib.licenses.free; @@ -185,6 +186,21 @@ license = lib.licenses.free; }; }) {}; + altcaps = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "altcaps"; + ename = "altcaps"; + version = "1.1.0"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/altcaps-1.1.0.tar"; + sha256 = "15jfhn9v74zi779a0m0v5dx8h135pbsxx0rh472sl13q2ark97bk"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/altcaps.html"; + license = lib.licenses.free; + }; + }) {}; ampc = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "ampc"; @@ -249,10 +265,10 @@ elpaBuild { pname = "auctex"; ename = "auctex"; - version = "13.1.6"; + version = "13.1.9"; src = fetchurl { - url = "https://elpa.gnu.org/packages/auctex-13.1.6.tar"; - sha256 = "0pdinnhkv7vqib01a6vxq1iixs7sw72r0sxzryv78c9hxn2k4552"; + url = "https://elpa.gnu.org/packages/auctex-13.1.9.tar"; + sha256 = "0dvf7ajfpi68823qv9vav3r1k04gc9bfq2ys3g1rhga2glxn7q9r"; }; packageRequires = [ emacs ]; meta = { @@ -440,16 +456,16 @@ license = lib.licenses.free; }; }) {}; - brief = callPackage ({ elpaBuild, fetchurl, lib }: + brief = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib, nadvice }: elpaBuild { pname = "brief"; ename = "brief"; - version = "5.87"; + version = "5.88.22.2"; src = fetchurl { - url = "https://elpa.gnu.org/packages/brief-5.87.tar"; - sha256 = "02z8fzzf1zsk2r0cnssz3i2nd4qwsnya4i2r4qi4ndc1xjlsvgwc"; + url = "https://elpa.gnu.org/packages/brief-5.88.22.2.tar"; + sha256 = "1i4sdm8kcrazzp22gb4hi1gd4lfq6hdh6pnldmi1zjjyhl1gbzn3"; }; - packageRequires = []; + packageRequires = [ cl-lib nadvice ]; meta = { homepage = "https://elpa.gnu.org/packages/brief.html"; license = lib.licenses.free; @@ -504,16 +520,16 @@ license = lib.licenses.free; }; }) {}; - cape = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + cape = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "cape"; ename = "cape"; - version = "0.10"; + version = "0.13"; src = fetchurl { - url = "https://elpa.gnu.org/packages/cape-0.10.tar"; - sha256 = "1ykr01wb0mgs1z181fk9m65lcrv60as5qzbnd0cnndva7p3078lc"; + url = "https://elpa.gnu.org/packages/cape-0.13.tar"; + sha256 = "1rd4ja5dlg9jnh75h24a475cfn8v6icxljya190yfp44vwl5q9v0"; }; - packageRequires = [ emacs ]; + packageRequires = [ compat emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/cape.html"; license = lib.licenses.free; @@ -598,10 +614,10 @@ elpaBuild { pname = "cl-lib"; ename = "cl-lib"; - version = "0.7"; + version = "0.7.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/cl-lib-0.7.tar"; - sha256 = "0s1vkkj1yc5zn6bvc84sr726cm4v3jh2ymm7hc3rr00swwbz35lv"; + url = "https://elpa.gnu.org/packages/cl-lib-0.7.1.tar"; + sha256 = "1pnsm335wi1lkg7vi0lnqxajm12rvyakzd5iccxhipbk3gz3r6my"; }; packageRequires = []; meta = { @@ -722,10 +738,10 @@ elpaBuild { pname = "company-math"; ename = "company-math"; - version = "1.4"; + version = "1.5.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/company-math-1.4.tar"; - sha256 = "17p5ib65lg8lj2gwip5qgsznww96pch16pr16b41lls5dx4k6d6z"; + url = "https://elpa.gnu.org/packages/company-math-1.5.1.tar"; + sha256 = "1inib2ywb4ycr9hxgrzyffqi0jnrpjsn52bkwlsqyzgfxr5n4qsw"; }; packageRequires = [ company math-symbol-lists ]; meta = { @@ -752,16 +768,16 @@ license = lib.licenses.free; }; }) {}; - compat = callPackage ({ elpaBuild, emacs, fetchurl, lib, nadvice }: + compat = callPackage ({ elpaBuild, emacs, fetchurl, lib, seq }: elpaBuild { pname = "compat"; ename = "compat"; - version = "28.1.2.2"; + version = "29.1.3.4"; src = fetchurl { - url = "https://elpa.gnu.org/packages/compat-28.1.2.2.tar"; - sha256 = "1jymfbadvnbjfyml6lri7hc7gz4f97nadn7a7ifpcncm9mhi13bp"; + url = "https://elpa.gnu.org/packages/compat-29.1.3.4.tar"; + sha256 = "16j7b18iwsdynb2w4x2hficz0g060r52lsg5ly9kb20zfrq2yvw0"; }; - packageRequires = [ emacs nadvice ]; + packageRequires = [ emacs seq ]; meta = { homepage = "https://elpa.gnu.org/packages/compat.html"; license = lib.licenses.free; @@ -771,10 +787,10 @@ elpaBuild { pname = "consult"; ename = "consult"; - version = "0.20"; + version = "0.32"; src = fetchurl { - url = "https://elpa.gnu.org/packages/consult-0.20.tar"; - sha256 = "134yyjap69lm3j99q7719b3pgc71y0nl30v9gy0cycf7dp7p1ssx"; + url = "https://elpa.gnu.org/packages/consult-0.32.tar"; + sha256 = "1cbdy4ybc4l6wjqa41zqz66yh6kv2sfnkxaspzaghpjy99ykyagb"; }; packageRequires = [ compat emacs ]; meta = { @@ -812,16 +828,16 @@ license = lib.licenses.free; }; }) {}; - corfu = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + corfu = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "corfu"; ename = "corfu"; - version = "0.28"; + version = "0.35"; src = fetchurl { - url = "https://elpa.gnu.org/packages/corfu-0.28.tar"; - sha256 = "0gayzzxac42nxj1612isc4f5xishrr0bnvycpcfmkm5pf41kq50f"; + url = "https://elpa.gnu.org/packages/corfu-0.35.tar"; + sha256 = "0h5l4q77i2agnr5rcy0121pvs4yx4q84n2yf7fysd859g4gsm2vs"; }; - packageRequires = [ emacs ]; + packageRequires = [ compat emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/corfu.html"; license = lib.licenses.free; @@ -921,10 +937,10 @@ elpaBuild { pname = "csharp-mode"; ename = "csharp-mode"; - version = "1.1.1"; + version = "2.0.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/csharp-mode-1.1.1.tar"; - sha256 = "096aj4np1ii60h1kxbff5lkfznd0l0x551x103m5i1ks82kxlv1l"; + url = "https://elpa.gnu.org/packages/csharp-mode-2.0.0.tar"; + sha256 = "16b9zp6psf32ds9kk7vwf57xppz2jvbk4wpr7mqbn75bx3qvl44m"; }; packageRequires = [ emacs ]; meta = { @@ -936,10 +952,10 @@ elpaBuild { pname = "csv-mode"; ename = "csv-mode"; - version = "1.21"; + version = "1.22"; src = fetchurl { - url = "https://elpa.gnu.org/packages/csv-mode-1.21.tar"; - sha256 = "11f01lyz6i133njigg53r890cic8y13kz7dswc8mj7m60a316dmv"; + url = "https://elpa.gnu.org/packages/csv-mode-1.22.tar"; + sha256 = "1f9pny1hkhdfmkmfpsk6ayjmb9p5hdpxpnmcprf51nfbvmi7ssig"; }; packageRequires = [ cl-lib emacs ]; meta = { @@ -1026,10 +1042,10 @@ elpaBuild { pname = "debbugs"; ename = "debbugs"; - version = "0.34"; + version = "0.35"; src = fetchurl { - url = "https://elpa.gnu.org/packages/debbugs-0.34.tar"; - sha256 = "06nxia4myhysiw12vsflgllrp9nyhmjnybrrcl1vyf4pw0fc6yrx"; + url = "https://elpa.gnu.org/packages/debbugs-0.35.tar"; + sha256 = "1w6y02ikjshfk12sdgbryfgj2z4yia2mpifa7g13ab7v9phpqpl1"; }; packageRequires = [ emacs soap-client ]; meta = { @@ -1056,10 +1072,10 @@ elpaBuild { pname = "denote"; ename = "denote"; - version = "1.1.0"; + version = "1.2.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/denote-1.1.0.tar"; - sha256 = "06fmxszw8y8r2sm1j45wx14zb22jg5k5l73k1znhx4gl4v3bl968"; + url = "https://elpa.gnu.org/packages/denote-1.2.0.tar"; + sha256 = "09xbyh22xll82ywqmlbsvqhxlqawfivaqydha0gs5qc4yn71kp0k"; }; packageRequires = [ emacs ]; meta = { @@ -1071,10 +1087,10 @@ elpaBuild { pname = "detached"; ename = "detached"; - version = "0.9.2"; + version = "0.10.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/detached-0.9.2.tar"; - sha256 = "00rbdcl56gqjqrlbmf5mfgakzl086bgs5xb15ic3jlm676j64gqh"; + url = "https://elpa.gnu.org/packages/detached-0.10.1.tar"; + sha256 = "1qfcxhzd3gc66kq58k77cvxy18cr371c40z3n4w4m4ngxmpk96hi"; }; packageRequires = [ emacs ]; meta = { @@ -1116,10 +1132,10 @@ elpaBuild { pname = "diff-hl"; ename = "diff-hl"; - version = "1.9.0"; + version = "1.9.2"; src = fetchurl { - url = "https://elpa.gnu.org/packages/diff-hl-1.9.0.tar"; - sha256 = "00mqknqyibbqyfcvdvk1m7nwipfpsw3afbvipqmghh5zm2n7wjr4"; + url = "https://elpa.gnu.org/packages/diff-hl-1.9.2.tar"; + sha256 = "1avpqwrxhbx8zxwghc8714rcdfhc15b5chq2ixb366ml8xdmvhck"; }; packageRequires = [ cl-lib emacs ]; meta = { @@ -1311,10 +1327,10 @@ elpaBuild { pname = "ebdb"; ename = "ebdb"; - version = "0.8.16"; + version = "0.8.17"; src = fetchurl { - url = "https://elpa.gnu.org/packages/ebdb-0.8.16.tar"; - sha256 = "0qldw0a346xbkq289mynvfz38n4yh2rfbvgs5f7ixfc014y3j3gw"; + url = "https://elpa.gnu.org/packages/ebdb-0.8.17.tar"; + sha256 = "0d2csc7b4mhaqcj8g3v46j11f5xcvbvgx06wxxfq2w0p2nzz1sik"; }; packageRequires = [ emacs seq ]; meta = { @@ -1371,10 +1387,10 @@ elpaBuild { pname = "eev"; ename = "eev"; - version = "20221108"; + version = "20230127"; src = fetchurl { - url = "https://elpa.gnu.org/packages/eev-20221108.tar"; - sha256 = "0va6jb57pyv21zvjaq99yi1275rl2bna7ci5zicqshiq2naxdqzr"; + url = "https://elpa.gnu.org/packages/eev-20230127.tar"; + sha256 = "12f8r1mymd73gjbha6w9fk1ar38yxgbnrr6asvr8aa9rhcwwgxqm"; }; packageRequires = [ emacs ]; meta = { @@ -1386,10 +1402,10 @@ elpaBuild { pname = "ef-themes"; ename = "ef-themes"; - version = "0.9.0"; + version = "0.10.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/ef-themes-0.9.0.tar"; - sha256 = "1yhnpnnz3v4v54ha4sibdzp2af6jq5p55jm0g6k0viqv2qpjmh3l"; + url = "https://elpa.gnu.org/packages/ef-themes-0.10.0.tar"; + sha256 = "06af9hqal5j2wss9ndyfqnjk18fdwxmy1gsyrvkvd7bq2nsl6z3n"; }; packageRequires = [ emacs ]; meta = { @@ -1400,6 +1416,7 @@ eglot = callPackage ({ eldoc , elpaBuild , emacs + , external-completion , fetchurl , flymake ? null , jsonrpc @@ -1410,12 +1427,21 @@ elpaBuild { pname = "eglot"; ename = "eglot"; - version = "1.9"; + version = "1.11"; src = fetchurl { - url = "https://elpa.gnu.org/packages/eglot-1.9.tar"; - sha256 = "1v6pyk3c680xmsv6lrq5xcj9x771z87i3b92in87zg841mw3b6as"; + url = "https://elpa.gnu.org/packages/eglot-1.11.tar"; + sha256 = "1ifnk4bznykj34s4yh0gq5nyzja7mlv60krxa47j842grpndq2hp"; }; - packageRequires = [ eldoc emacs flymake jsonrpc project seq xref ]; + packageRequires = [ + eldoc + emacs + external-completion + flymake + jsonrpc + project + seq + xref + ]; meta = { homepage = "https://elpa.gnu.org/packages/eglot.html"; license = lib.licenses.free; @@ -1501,16 +1527,16 @@ license = lib.licenses.free; }; }) {}; - embark = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + embark = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "embark"; ename = "embark"; - version = "0.17"; + version = "0.21.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/embark-0.17.tar"; - sha256 = "05r5z59sv0j4sawybd4353ziya87q6yzx4l8sjklybcn2mslpp1q"; + url = "https://elpa.gnu.org/packages/embark-0.21.1.tar"; + sha256 = "157km8r8lrvp81l90vqrhvisd794qf0rsqfazl5r47gg1ba7szv5"; }; - packageRequires = [ emacs ]; + packageRequires = [ compat emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/embark.html"; license = lib.licenses.free; @@ -1525,10 +1551,10 @@ elpaBuild { pname = "embark-consult"; ename = "embark-consult"; - version = "0.6"; + version = "0.7"; src = fetchurl { - url = "https://elpa.gnu.org/packages/embark-consult-0.6.tar"; - sha256 = "1c8rx9ikazbnap293ab6s26djikdy85i7z330wdwwrgmipkfawaj"; + url = "https://elpa.gnu.org/packages/embark-consult-0.7.tar"; + sha256 = "12b8p2f1bpy43jzjz3ask9h38z23hq4nxkid5dljnpmvf31d8x9c"; }; packageRequires = [ consult emacs embark ]; meta = { @@ -1549,10 +1575,10 @@ elpaBuild { pname = "ement"; ename = "ement"; - version = "0.4.1"; + version = "0.5.2"; src = fetchurl { - url = "https://elpa.gnu.org/packages/ement-0.4.1.tar"; - sha256 = "0hf1gdz5kgvy64652h33iph3lrnmiv98lhar421m0grbh326xn95"; + url = "https://elpa.gnu.org/packages/ement-0.5.2.tar"; + sha256 = "053gmhlyiy86q1qla4j5fy9kx11r986syn41q9022cs6iqpyf6hg"; }; packageRequires = [ emacs @@ -1577,10 +1603,10 @@ elpaBuild { pname = "emms"; ename = "emms"; - version = "12"; + version = "14"; src = fetchurl { - url = "https://elpa.gnu.org/packages/emms-12.tar"; - sha256 = "048ijrpw6s4k7zr78fzc3ksjjri6mnyp6c47h5lp5nw5gvm4np7a"; + url = "https://elpa.gnu.org/packages/emms-14.tar"; + sha256 = "0525vmi397q604z8i35zld3c4fkwbvxwir5lf4f1ji1bbvkzqavc"; }; packageRequires = [ cl-lib nadvice seq ]; meta = { @@ -1713,6 +1739,21 @@ license = lib.licenses.free; }; }) {}; + external-completion = callPackage ({ elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "external-completion"; + ename = "external-completion"; + version = "0.1"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/external-completion-0.1.tar"; + sha256 = "12pddwp5jby2icshj77w4kwxv75zi00jdxw18f721d7zx3l7q668"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/external-completion.html"; + license = lib.licenses.free; + }; + }) {}; exwm = callPackage ({ elpaBuild, fetchurl, lib, xelb }: elpaBuild { pname = "exwm"; @@ -1807,10 +1848,10 @@ elpaBuild { pname = "fontaine"; ename = "fontaine"; - version = "0.4.1"; + version = "1.0.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/fontaine-0.4.1.tar"; - sha256 = "0szj9ys7bkj6cwg2bmb7sniyzjzdy3f7qm9r90grrgs5iir3k2qa"; + url = "https://elpa.gnu.org/packages/fontaine-1.0.0.tar"; + sha256 = "1p34d84z87s2zsfxdc18bjpif21fdixfzv2k4b9g4i0pcr94nc4v"; }; packageRequires = [ emacs ]; meta = { @@ -1867,10 +1908,10 @@ elpaBuild { pname = "ftable"; ename = "ftable"; - version = "1.0"; + version = "1.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/ftable-1.0.tar"; - sha256 = "1qi0fxw94hb7p2s8n2dzbziialbjbjxgpwx2m4mvrmicrq375r5p"; + url = "https://elpa.gnu.org/packages/ftable-1.1.tar"; + sha256 = "0ww2kl5gb2dkkz0dxinjjnd3qafr31qjcqp1x10r3vcfbp9cfy4b"; }; packageRequires = [ emacs ]; meta = { @@ -1938,6 +1979,21 @@ license = lib.licenses.free; }; }) {}; + gnat-compiler = callPackage ({ elpaBuild, emacs, fetchurl, lib, wisi }: + elpaBuild { + pname = "gnat-compiler"; + ename = "gnat-compiler"; + version = "1.0.2"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/gnat-compiler-1.0.2.tar"; + sha256 = "1cwjv1ziw5hjnk493vwwg25bnvy98wcryy0c4gknl1xp5qr2qxdg"; + }; + packageRequires = [ emacs wisi ]; + meta = { + homepage = "https://elpa.gnu.org/packages/gnat-compiler.html"; + license = lib.licenses.free; + }; + }) {}; gnome-c-style = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "gnome-c-style"; @@ -1957,10 +2013,10 @@ elpaBuild { pname = "gnorb"; ename = "gnorb"; - version = "1.6.10"; + version = "1.6.11"; src = fetchurl { - url = "https://elpa.gnu.org/packages/gnorb-1.6.10.tar"; - sha256 = "0kwgpyydnzphlw8rwyw9rim3j1awd0njxssm47db76nwwyxl1ry3"; + url = "https://elpa.gnu.org/packages/gnorb-1.6.11.tar"; + sha256 = "0724i8p1hywgbfk0czxvrcwlwigj8r7x6ww0ap3k2sg90531ymws"; }; packageRequires = [ cl-lib ]; meta = { @@ -1989,10 +2045,10 @@ elpaBuild { pname = "gnu-elpa-keyring-update"; ename = "gnu-elpa-keyring-update"; - version = "2019.3"; + version = "2022.12"; src = fetchurl { - url = "https://elpa.gnu.org/packages/gnu-elpa-keyring-update-2019.3.tar"; - sha256 = "1zw65kag25abimg088m4h8vj2nd4y5nc4qal6fsda0dldckfv1w0"; + url = "https://elpa.gnu.org/packages/gnu-elpa-keyring-update-2022.12.tar"; + sha256 = "1kij50xw5km14x44zjsfc1cdkz4xq79nv7hgfjsz3pgypq672z5z"; }; packageRequires = []; meta = { @@ -2050,6 +2106,61 @@ license = lib.licenses.free; }; }) {}; + gpr-mode = callPackage ({ elpaBuild + , emacs + , fetchurl + , gnat-compiler + , lib + , wisi }: + elpaBuild { + pname = "gpr-mode"; + ename = "gpr-mode"; + version = "1.0.3"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/gpr-mode-1.0.3.tar"; + sha256 = "0m93szqyh9dd73z2pygvacg42n3siiy8pji3yzg1ynji859bc3b8"; + }; + packageRequires = [ emacs gnat-compiler wisi ]; + meta = { + homepage = "https://elpa.gnu.org/packages/gpr-mode.html"; + license = lib.licenses.free; + }; + }) {}; + gpr-query = callPackage ({ elpaBuild + , emacs + , fetchurl + , gnat-compiler + , lib + , wisi }: + elpaBuild { + pname = "gpr-query"; + ename = "gpr-query"; + version = "1.0.3"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/gpr-query-1.0.3.tar"; + sha256 = "13h8hl2g55mbaz95k9jfcvz718rv4vli9wccr3rr7cb7yfvn4c5j"; + }; + packageRequires = [ emacs gnat-compiler wisi ]; + meta = { + homepage = "https://elpa.gnu.org/packages/gpr-query.html"; + license = lib.licenses.free; + }; + }) {}; + graphql = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "graphql"; + ename = "graphql"; + version = "0.1.2"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/graphql-0.1.2.tar"; + sha256 = "1mzgz4piszm0v18gdn63xb46zqd1r17fkh24rw863i0p1achl21m"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/graphql.html"; + license = lib.licenses.free; + }; + }) {}; greader = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "greader"; @@ -2256,10 +2367,10 @@ elpaBuild { pname = "inspector"; ename = "inspector"; - version = "0.8"; + version = "0.20"; src = fetchurl { - url = "https://elpa.gnu.org/packages/inspector-0.8.tar"; - sha256 = "0yrkm5bh2kczl5f642wx1xlnzry1xrw0yxhpm0hqwjrmgmbdb9m6"; + url = "https://elpa.gnu.org/packages/inspector-0.20.tar"; + sha256 = "1640zpxjylzcafr4957j7nxspqwmfwliac300lf7j5xsmchlwmgm"; }; packageRequires = [ emacs ]; meta = { @@ -2286,10 +2397,10 @@ elpaBuild { pname = "isearch-mb"; ename = "isearch-mb"; - version = "0.6"; + version = "0.7"; src = fetchurl { - url = "https://elpa.gnu.org/packages/isearch-mb-0.6.tar"; - sha256 = "1rbslnnwsikpnb07jhzyk0f83z8i581834hsq3i7gnz3a99wpkx7"; + url = "https://elpa.gnu.org/packages/isearch-mb-0.7.tar"; + sha256 = "1dfjh4ya9515vx0q2dv1brddw350gxd40h1g1vsa783ivvm0hm75"; }; packageRequires = [ emacs ]; meta = { @@ -2396,10 +2507,10 @@ elpaBuild { pname = "jarchive"; ename = "jarchive"; - version = "0.8.0"; + version = "0.10.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/jarchive-0.8.0.tar"; - sha256 = "0xfl0gbfqjgbkd28r56j35kc8y6x8nd2zi8xqzxmqvcyv9sd731l"; + url = "https://elpa.gnu.org/packages/jarchive-0.10.0.tar"; + sha256 = "0hgxfz6kqammgbr6cx7l8bg9hmakamrkbzbsjycb4k0gbi4r567b"; }; packageRequires = [ emacs ]; meta = { @@ -2471,10 +2582,10 @@ elpaBuild { pname = "jsonrpc"; ename = "jsonrpc"; - version = "1.0.15"; + version = "1.0.16"; src = fetchurl { - url = "https://elpa.gnu.org/packages/jsonrpc-1.0.15.tar"; - sha256 = "0biwvkvd48xqvigzs00yz4mk847xzyzm7p0lkns58fxph9nkg4h5"; + url = "https://elpa.gnu.org/packages/jsonrpc-1.0.16.tar"; + sha256 = "1fkbw20ghinj70dk2q58scqlrpr3fcqgvcbfh5jbg6mdf1m6svf9"; }; packageRequires = [ emacs ]; meta = { @@ -2501,10 +2612,10 @@ elpaBuild { pname = "kind-icon"; ename = "kind-icon"; - version = "0.1.7"; + version = "0.1.9"; src = fetchurl { - url = "https://elpa.gnu.org/packages/kind-icon-0.1.7.tar"; - sha256 = "02imi2qj329yrqvs23d4z7fv8bbaz0fvya6zdswb38blpdri4cn1"; + url = "https://elpa.gnu.org/packages/kind-icon-0.1.9.tar"; + sha256 = "0phssrcpmcidzlwy1577f3f02qwjs6hpavb416302y0n8kkhwvli"; }; packageRequires = [ emacs svg-lib ]; meta = { @@ -2651,10 +2762,10 @@ elpaBuild { pname = "load-relative"; ename = "load-relative"; - version = "1.3.1"; + version = "1.3.2"; src = fetchurl { - url = "https://elpa.gnu.org/packages/load-relative-1.3.1.el"; - sha256 = "1m37scr82lqqy954fchjxrmdh4lngrl4d1yzxhp3yfjhsydizhrj"; + url = "https://elpa.gnu.org/packages/load-relative-1.3.2.tar"; + sha256 = "1fwa51jp0sq5l69y98l2zyj0iq9s6rj1rnqrmvncif61smma8fd7"; }; packageRequires = []; meta = { @@ -2707,6 +2818,21 @@ license = lib.licenses.free; }; }) {}; + luwak = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "luwak"; + ename = "luwak"; + version = "1.0.0"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/luwak-1.0.0.tar"; + sha256 = "10jcblm0q5948l3ar911dfj6y9p5bggwz9nmq9d3prlgz5zczv34"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/luwak.html"; + license = lib.licenses.free; + }; + }) {}; lv = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "lv"; @@ -2737,16 +2863,16 @@ license = lib.licenses.free; }; }) {}; - marginalia = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + marginalia = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "marginalia"; ename = "marginalia"; - version = "0.15"; + version = "1.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/marginalia-0.15.tar"; - sha256 = "0sadz4c44pld9aqn49a7l80lqgv2ncv7aw401d740n2ja2grg6vb"; + url = "https://elpa.gnu.org/packages/marginalia-1.1.tar"; + sha256 = "1pldbgsjs9xsrp3y9rp8yz8p67xbhb3gy80sv5q215f6mwhphjqm"; }; - packageRequires = [ emacs ]; + packageRequires = [ compat emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/marginalia.html"; license = lib.licenses.free; @@ -2996,10 +3122,10 @@ elpaBuild { pname = "nadvice"; ename = "nadvice"; - version = "0.3"; + version = "0.4"; src = fetchurl { - url = "https://elpa.gnu.org/packages/nadvice-0.3.el"; - sha256 = "0gi3csnxbs8h7iy0scsl35sic3gv90swa89hhdjwb7qvpirfdcgw"; + url = "https://elpa.gnu.org/packages/nadvice-0.4.tar"; + sha256 = "0ac7zxi04gzcd5hz81lib1db3c6a7xmwkb381ljxvaha1mlzp1k0"; }; packageRequires = []; meta = { @@ -3275,10 +3401,10 @@ elpaBuild { pname = "orderless"; ename = "orderless"; - version = "0.7"; + version = "1.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/orderless-0.7.tar"; - sha256 = "0hvfqxpazan1djpn0qxh609r53jgddpcdih6chkn2zvx29mhdkgg"; + url = "https://elpa.gnu.org/packages/orderless-1.0.tar"; + sha256 = "0kslgrs857h3mm837hcb8v52ankbv0hm2pz0q136imckzj32m43s"; }; packageRequires = [ emacs ]; meta = { @@ -3290,10 +3416,10 @@ elpaBuild { pname = "org"; ename = "org"; - version = "9.5.5"; + version = "9.6.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/org-9.5.5.tar"; - sha256 = "13sykrkhb192vnmj5nlws5jc5a4fr7ynmyxpzanqlzx1gbdxv32p"; + url = "https://elpa.gnu.org/packages/org-9.6.1.tar"; + sha256 = "1kcv6aippv17az0dgikmx0w4dq2140ki3d19nvn01v0lk4kxpgri"; }; packageRequires = [ emacs ]; meta = { @@ -3335,10 +3461,10 @@ elpaBuild { pname = "org-modern"; ename = "org-modern"; - version = "0.5"; + version = "0.8"; src = fetchurl { - url = "https://elpa.gnu.org/packages/org-modern-0.5.tar"; - sha256 = "0fd5inaq094xhlv4cnd7p47hishlxlhjb17srk4cm1jdgaar3pnp"; + url = "https://elpa.gnu.org/packages/org-modern-0.8.tar"; + sha256 = "0j9ilivy6iyqmml4sxy88c99vpg3v00pglb62lpxc4sywia06dzf"; }; packageRequires = [ emacs ]; meta = { @@ -3395,10 +3521,10 @@ elpaBuild { pname = "org-transclusion"; ename = "org-transclusion"; - version = "1.3.1"; + version = "1.3.2"; src = fetchurl { - url = "https://elpa.gnu.org/packages/org-transclusion-1.3.1.tar"; - sha256 = "1v7i2i28500p4gvikcpp931qpks9zmvfpf6lfzrqdqppx2ix295q"; + url = "https://elpa.gnu.org/packages/org-transclusion-1.3.2.tar"; + sha256 = "02r48jzr5zivk11c3c3a9vj1cixfgf1wlmv1kjr5bxldayhg7aqb"; }; packageRequires = [ emacs org ]; meta = { @@ -3451,16 +3577,16 @@ license = lib.licenses.free; }; }) {}; - osm = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + osm = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "osm"; ename = "osm"; - version = "0.8"; + version = "0.10"; src = fetchurl { - url = "https://elpa.gnu.org/packages/osm-0.8.tar"; - sha256 = "1vvd149n4pa6jy7xk5dmhi0nfwcjd4rvxn283f1jxp5jvv47m202"; + url = "https://elpa.gnu.org/packages/osm-0.10.tar"; + sha256 = "1lpbc98ais0wrrpj9cmra3ha8jnja4d3pqzw1kdml91drhqifpmw"; }; - packageRequires = [ emacs ]; + packageRequires = [ compat emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/osm.html"; license = lib.licenses.free; @@ -3560,10 +3686,10 @@ elpaBuild { pname = "peg"; ename = "peg"; - version = "1.0"; + version = "1.0.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/peg-1.0.tar"; - sha256 = "0skr5dz9k34r409hisnj37n1b7n62l3md0glnfx578xkbmxlpcxl"; + url = "https://elpa.gnu.org/packages/peg-1.0.1.tar"; + sha256 = "0yxfwwwc6fck1p9smcm1dwnva42868xvavhy7j749vlxrgb3v94x"; }; packageRequires = [ emacs ]; meta = { @@ -3605,10 +3731,10 @@ elpaBuild { pname = "phps-mode"; ename = "phps-mode"; - version = "0.4.30"; + version = "0.4.39"; src = fetchurl { - url = "https://elpa.gnu.org/packages/phps-mode-0.4.30.tar"; - sha256 = "0gwdcfvp3564zmiaw1p0vfyw46n6kn14nh8qx0jwzwygy22v1jdq"; + url = "https://elpa.gnu.org/packages/phps-mode-0.4.39.tar"; + sha256 = "0wixalji4c4hjqb41n1yvxfy3qfl2ipfsjawbgk9wdwb7jkhjr1i"; }; packageRequires = [ emacs ]; meta = { @@ -3635,10 +3761,10 @@ elpaBuild { pname = "plz"; ename = "plz"; - version = "0.2.1"; + version = "0.3"; src = fetchurl { - url = "https://elpa.gnu.org/packages/plz-0.2.1.tar"; - sha256 = "01xa4vjbcdm37dya5d006k9p37kcm1g4yh4j7vh7hjfdz43j6y9s"; + url = "https://elpa.gnu.org/packages/plz-0.3.tar"; + sha256 = "19fzln4b6pp3c2as7a8wija120qykkxs27jrn637vqsvhi648xcd"; }; packageRequires = [ emacs ]; meta = { @@ -3646,6 +3772,36 @@ license = lib.licenses.free; }; }) {}; + poke = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "poke"; + ename = "poke"; + version = "3.0"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/poke-3.0.tar"; + sha256 = "08ajbhwj4sdph9ay7wbd807slzxg6360kpqkyyvhdzl8kqh67wc7"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/poke.html"; + license = lib.licenses.free; + }; + }) {}; + poke-mode = callPackage ({ elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "poke-mode"; + ename = "poke-mode"; + version = "3.0"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/poke-mode-3.0.tar"; + sha256 = "0xw50x3fx3ai3rsykh371hwlgkmyx4h37ps2583l69f7id7h2103"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/poke-mode.html"; + license = lib.licenses.free; + }; + }) {}; poker = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "poker"; @@ -3665,10 +3821,10 @@ elpaBuild { pname = "posframe"; ename = "posframe"; - version = "1.2.0"; + version = "1.3.3"; src = fetchurl { - url = "https://elpa.gnu.org/packages/posframe-1.2.0.tar"; - sha256 = "06xk6z3b5mqgcskjiwkl9viccvzriflr8y51aclyfdamh5qb6kqb"; + url = "https://elpa.gnu.org/packages/posframe-1.3.3.tar"; + sha256 = "07hgbhvhwj6zfhlg6znavwrj3gp7cv4c758chrhkvk33a3slhw6b"; }; packageRequires = [ emacs ]; meta = { @@ -3680,10 +3836,10 @@ elpaBuild { pname = "project"; ename = "project"; - version = "0.8.3"; + version = "0.9.8"; src = fetchurl { - url = "https://elpa.gnu.org/packages/project-0.8.3.tar"; - sha256 = "15x6nbvyy592fwn36syxi9719sknvrm4bwnpyc16z9jn2xm62q3p"; + url = "https://elpa.gnu.org/packages/project-0.9.8.tar"; + sha256 = "0i1q9blvpj3bygjh98gv0kqn2rm01b8lqp9vra82sy3hzzj39pyx"; }; packageRequires = [ emacs xref ]; meta = { @@ -3695,10 +3851,10 @@ elpaBuild { pname = "psgml"; ename = "psgml"; - version = "1.3.4"; + version = "1.3.5"; src = fetchurl { - url = "https://elpa.gnu.org/packages/psgml-1.3.4.tar"; - sha256 = "1pgg9g040zsnvilvmwa73wyrvv9xh7gf6w1rkcx57qzg7yq4yaaj"; + url = "https://elpa.gnu.org/packages/psgml-1.3.5.tar"; + sha256 = "12ndv9xj4zg0k2vas4bmpf2iwy71hy203zxfd7sfwskdd96kzjjv"; }; packageRequires = []; meta = { @@ -3740,10 +3896,10 @@ elpaBuild { pname = "pyim"; ename = "pyim"; - version = "5.2.8"; + version = "5.3.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/pyim-5.2.8.tar"; - sha256 = "1klarzr5lfga09ysq3c7gkgmzl6r08gpl4519x5damxd82x4r3y2"; + url = "https://elpa.gnu.org/packages/pyim-5.3.0.tar"; + sha256 = "0q0h705k1yymp1pqyycmq1zqvzawzkl4q2ckvflbncgrqh306xmh"; }; packageRequires = [ async emacs xr ]; meta = { @@ -4020,10 +4176,10 @@ elpaBuild { pname = "rec-mode"; ename = "rec-mode"; - version = "1.9.0"; + version = "1.9.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/rec-mode-1.9.0.tar"; - sha256 = "1w1q6kh567fd8xismq9i6wr1y893lypd30l452yvydi1qjiq1n6x"; + url = "https://elpa.gnu.org/packages/rec-mode-1.9.1.tar"; + sha256 = "0f60bw07l6kk1kkjjxsk30p6rxj9mpngaxqy8piyabnijfgjzd3s"; }; packageRequires = [ emacs ]; meta = { @@ -4050,10 +4206,10 @@ elpaBuild { pname = "relint"; ename = "relint"; - version = "1.20"; + version = "1.21"; src = fetchurl { - url = "https://elpa.gnu.org/packages/relint-1.20.tar"; - sha256 = "0r20dim2r4a4bv0fmgbnq3graa7hhlai55h9qyknapqbr2j1v1h7"; + url = "https://elpa.gnu.org/packages/relint-1.21.tar"; + sha256 = "12453agy7y3ayqn32fi11ljlnk8ck3i1aljw5wzm0yyqp00m73x3"; }; packageRequires = [ emacs xr ]; meta = { @@ -4121,6 +4277,21 @@ license = lib.licenses.free; }; }) {}; + ruby-end = callPackage ({ elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "ruby-end"; + ename = "ruby-end"; + version = "0.4.3"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/ruby-end-0.4.3.tar"; + sha256 = "0b6hh31vpyv6j86v97migw4if2i9m95075p0bf5ai61cqb42crg4"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/ruby-end.html"; + license = lib.licenses.free; + }; + }) {}; rudel = callPackage ({ cl-generic , cl-lib ? null , cl-print @@ -4371,10 +4542,10 @@ elpaBuild { pname = "sml-mode"; ename = "sml-mode"; - version = "6.10"; + version = "6.11"; src = fetchurl { - url = "https://elpa.gnu.org/packages/sml-mode-6.10.el"; - sha256 = "01yf0s474r9xhj6nbs14ljn9ccxb5yy758i17c8nmgmqvm8fx7sb"; + url = "https://elpa.gnu.org/packages/sml-mode-6.11.tar"; + sha256 = "05vga709kphbx6jacqh57cq5gyicwrxxf81gask5lbq7vzfzlbfc"; }; packageRequires = [ cl-lib emacs ]; meta = { @@ -4525,10 +4696,10 @@ elpaBuild { pname = "ssh-deploy"; ename = "ssh-deploy"; - version = "3.1.13"; + version = "3.1.14"; src = fetchurl { - url = "https://elpa.gnu.org/packages/ssh-deploy-3.1.13.tar"; - sha256 = "006jr8yc5qvxdfk0pn40604a2b7a1ah6l6hi6rhxm3p5b08d9i5w"; + url = "https://elpa.gnu.org/packages/ssh-deploy-3.1.14.tar"; + sha256 = "079g5g3640hyqdikszkz8kmfqdnqdbkl8rwd6k3kkck39ng63zy6"; }; packageRequires = [ emacs ]; meta = { @@ -4536,6 +4707,21 @@ license = lib.licenses.free; }; }) {}; + standard-themes = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "standard-themes"; + ename = "standard-themes"; + version = "1.2.0"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/standard-themes-1.2.0.tar"; + sha256 = "1prf89jk41cmd3bj51343jyz53k5bjbc871s54cqlhz3vvbgc4ww"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/standard-themes.html"; + license = lib.licenses.free; + }; + }) {}; stream = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "stream"; @@ -4551,6 +4737,21 @@ license = lib.licenses.free; }; }) {}; + substitute = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "substitute"; + ename = "substitute"; + version = "0.1.6"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/substitute-0.1.6.tar"; + sha256 = "0hdg6gv878bpb6yrav345a8479w50q48nmibvk4p04im7b7r1238"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/substitute.html"; + license = lib.licenses.free; + }; + }) {}; svg = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "svg"; @@ -4626,6 +4827,21 @@ license = lib.licenses.free; }; }) {}; + sxhkdrc-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "sxhkdrc-mode"; + ename = "sxhkdrc-mode"; + version = "1.0.0"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/sxhkdrc-mode-1.0.0.tar"; + sha256 = "1vzb7ijx61rq31xj0d13yidlirp038841fwdvlqlv88hi6hb2faq"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/sxhkdrc-mode.html"; + license = lib.licenses.free; + }; + }) {}; system-packages = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "system-packages"; @@ -4706,16 +4922,16 @@ license = lib.licenses.free; }; }) {}; - tempel = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + tempel = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "tempel"; ename = "tempel"; - version = "0.5"; + version = "0.7"; src = fetchurl { - url = "https://elpa.gnu.org/packages/tempel-0.5.tar"; - sha256 = "0gx48p2kkwizxf30h8jq658ksp00ibf5azjxvcs1nj8hz2g3agjx"; + url = "https://elpa.gnu.org/packages/tempel-0.7.tar"; + sha256 = "05yhsrricaxlz67w1j0s1gbzpbsw4iqryfvks25v25pm95xrr7c4"; }; - packageRequires = [ emacs ]; + packageRequires = [ compat emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/tempel.html"; license = lib.licenses.free; @@ -4819,10 +5035,10 @@ elpaBuild { pname = "tramp"; ename = "tramp"; - version = "2.5.3.3"; + version = "2.6.0.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/tramp-2.5.3.3.tar"; - sha256 = "05w04qwk1lk50fzwl6fxyf6pb1jd2lx4as99zm1dpa858jab6w4a"; + url = "https://elpa.gnu.org/packages/tramp-2.6.0.1.tar"; + sha256 = "1mxkl8v40wdcyvsyjayw9yj7ghn5zrnzgaapwh1prxs42scw85x8"; }; packageRequires = [ emacs ]; meta = { @@ -4924,10 +5140,10 @@ elpaBuild { pname = "triples"; ename = "triples"; - version = "0.1"; + version = "0.2.3"; src = fetchurl { - url = "https://elpa.gnu.org/packages/triples-0.1.tar"; - sha256 = "1b1qrrg60wx4ikl9nd8gmawj0pc0yysxq901l29336gwpbwj81y7"; + url = "https://elpa.gnu.org/packages/triples-0.2.3.tar"; + sha256 = "1p6vijaab3a7h9lqlxxhyipwd9rkr15r3rm0iyxxanlcggi04a39"; }; packageRequires = [ emacs seq ]; meta = { @@ -5003,10 +5219,10 @@ elpaBuild { pname = "url-scgi"; ename = "url-scgi"; - version = "0.8"; + version = "0.9"; src = fetchurl { - url = "https://elpa.gnu.org/packages/url-scgi-0.8.tar"; - sha256 = "1837vyamwk5mp2nf3k477hyr5pq1xy6p7br7kl6h2k8jmxqy3mlj"; + url = "https://elpa.gnu.org/packages/url-scgi-0.9.tar"; + sha256 = "0mfbqr03302gk38aamlg1lgdznd6y3blcc3zizfb72ppb87j78mc"; }; packageRequires = [ emacs ]; meta = { @@ -5018,10 +5234,10 @@ elpaBuild { pname = "use-package"; ename = "use-package"; - version = "2.4.4"; + version = "2.4.5"; src = fetchurl { - url = "https://elpa.gnu.org/packages/use-package-2.4.4.tar"; - sha256 = "1hw73006l1xh0padqxyr0l3sjnr3fxyz619csz8ds6am86fdxvfp"; + url = "https://elpa.gnu.org/packages/use-package-2.4.5.tar"; + sha256 = "09aimbmkcpyffrq1qnavzx6c4ccfawz7ndz2ac8md7qxilxx58yc"; }; packageRequires = [ bind-key emacs ]; meta = { @@ -5160,10 +5376,10 @@ elpaBuild { pname = "verilog-mode"; ename = "verilog-mode"; - version = "2021.10.14.127365406"; + version = "2022.12.18.181110314"; src = fetchurl { - url = "https://elpa.gnu.org/packages/verilog-mode-2021.10.14.127365406.tar"; - sha256 = "1v0ld310rs86vzmlw7phv1b5p59faqs9wg4p8jpbnb9ap9lwidnl"; + url = "https://elpa.gnu.org/packages/verilog-mode-2022.12.18.181110314.tar"; + sha256 = "0vy2lfscirj7as106m94yi88n8pwp4d2ngaclsf0axyrbcagzkjn"; }; packageRequires = []; meta = { @@ -5171,16 +5387,16 @@ license = lib.licenses.free; }; }) {}; - vertico = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + vertico = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "vertico"; ename = "vertico"; - version = "0.28"; + version = "1.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/vertico-0.28.tar"; - sha256 = "0rkvfya674hy8g37hy40knwwppbygmx005cg04136kdlkmywb0l1"; + url = "https://elpa.gnu.org/packages/vertico-1.1.tar"; + sha256 = "0v5hpaysh7m7v2g77dyzy4hhnnv9v3wvpyfz6zi318sw96vmabhm"; }; - packageRequires = [ emacs ]; + packageRequires = [ compat emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/vertico.html"; license = lib.licenses.free; @@ -5195,10 +5411,10 @@ elpaBuild { pname = "vertico-posframe"; ename = "vertico-posframe"; - version = "0.5.4"; + version = "0.6.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/vertico-posframe-0.5.4.tar"; - sha256 = "19lx6p06wkwfivxgswdljdsh9bgcd1b9zkzx426w3pwicdk0cvgg"; + url = "https://elpa.gnu.org/packages/vertico-posframe-0.6.0.tar"; + sha256 = "1cwi26jz9dn8la6zxxai2pfkcpz8lwf4cd8hr44lak6x0ca9bwr3"; }; packageRequires = [ emacs posframe vertico ]; meta = { @@ -5348,10 +5564,10 @@ elpaBuild { pname = "websocket"; ename = "websocket"; - version = "1.13.1"; + version = "1.14"; src = fetchurl { - url = "https://elpa.gnu.org/packages/websocket-1.13.1.tar"; - sha256 = "1x664zswas0fpml7zaj59zy97avrm49zb80zd69rlkqzz1m45psc"; + url = "https://elpa.gnu.org/packages/websocket-1.14.tar"; + sha256 = "0g75kaw9bdk30apiyk09583amnw9458kkmgbbcl2myqfqspywnva"; }; packageRequires = [ cl-lib ]; meta = { @@ -5408,10 +5624,10 @@ elpaBuild { pname = "wisi"; ename = "wisi"; - version = "4.0.0"; + version = "4.2.2"; src = fetchurl { - url = "https://elpa.gnu.org/packages/wisi-4.0.0.tar"; - sha256 = "1w082nqzvzljm8m8gxja7va88g0lz264d4ir24ydak22rfr688bv"; + url = "https://elpa.gnu.org/packages/wisi-4.2.2.tar"; + sha256 = "041np2xssm4iv75wmwds25fwx0p2y3j6ph0j0pxmgcj9p028mbka"; }; packageRequires = [ emacs seq ]; meta = { @@ -5428,10 +5644,10 @@ elpaBuild { pname = "wisitoken-grammar-mode"; ename = "wisitoken-grammar-mode"; - version = "1.2.0"; + version = "1.3.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/wisitoken-grammar-mode-1.2.0.tar"; - sha256 = "0isxmpwys148djjymszdm5nisqjp9xff8kad45l4cpb3c717vsjw"; + url = "https://elpa.gnu.org/packages/wisitoken-grammar-mode-1.3.0.tar"; + sha256 = "05g2zn3p9r7rha20wv8jy1dwvllfyjjpzr6agkcm523rj639jh2b"; }; packageRequires = [ emacs mmm-mode wisi ]; meta = { @@ -5469,6 +5685,21 @@ license = lib.licenses.free; }; }) {}; + xeft = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "xeft"; + ename = "xeft"; + version = "3.3"; + src = fetchurl { + url = "https://elpa.gnu.org/packages/xeft-3.3.tar"; + sha256 = "1jzas6qy0s686s0ghdrgcz2bfyp32s70qvkqw00sm3mm3jypiplm"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/xeft.html"; + license = lib.licenses.free; + }; + }) {}; xelb = callPackage ({ cl-generic, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "xelb"; @@ -5518,10 +5749,10 @@ elpaBuild { pname = "xref"; ename = "xref"; - version = "1.5.1"; + version = "1.6.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/xref-1.5.1.tar"; - sha256 = "131jxsc1sl8q3r9drhylwyfig9qjjkj3hilv3npidp868pr7xdna"; + url = "https://elpa.gnu.org/packages/xref-1.6.1.tar"; + sha256 = "0z9kpbnrdh9y9qlj2fa64v660biakvw6x3z9klqa47qcx8gbyqp6"; }; packageRequires = [ emacs ]; meta = { From 42556e233dafc5bfd83b817b3a49eb665f2f463a Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Mon, 20 Feb 2023 11:04:55 -0300 Subject: [PATCH 053/178] melpa-packages: updated 2023-02-20 (from overlay) --- .../elisp-packages/recipes-archive-melpa.json | 10905 +++++++++------- 1 file changed, 6345 insertions(+), 4560 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json index b7f0666e2005..6f7b37b29acd 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json +++ b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json @@ -474,8 +474,8 @@ }, { "ename": "ac-clang", - "commit": "ffe0485048b85825f5e8ba95917d8c9dc64fe5de", - "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "08yaaiva6j98rqn9d4wfc0yrjh1nifbnj2rz342q863n76fybbxv", "fetcher": "github", "repo": "yaruopooner/ac-clang", "unstable": { @@ -1027,16 +1027,16 @@ "repo": "xcwen/ac-php", "unstable": { "version": [ - 20200916, - 751 + 20210820, + 1000 ], "deps": [ "ac-php-core", "auto-complete", "yasnippet" ], - "commit": "7c023b9ced156cee03171e16c3dac6d26923042f", - "sha256": "0vaxha2f37bs634bl0122c09mkp1yyy2444pkikdavhjx9gzc55j" + "commit": "e29075f810af73f6bf7803eebf15d96bffee7154", + "sha256": "08vfdp7q6x5fk2nn5dl884cyysxrl2gw8f16g7wqvf7v24jmx71d" }, "stable": { "version": [ @@ -1055,8 +1055,8 @@ }, { "ename": "ac-php-core", - "commit": "ac283f1b65c3ba6278e9d3236e5a19734e42b123", - "sha256": "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1589493bf371gwdljnk01q57qffn8y6xb55i7dl05jgdrl2vz54l", "fetcher": "github", "repo": "xcwen/ac-php", "unstable": { @@ -1251,10 +1251,10 @@ }, { "ename": "accent", - "commit": "86fe3baa514cf81f4b031ab55d94555fba2c1a55", - "sha256": "191mhb57gj7zcgcb4h99jv8ac08l90wzsmy4aq22pz8sw56bvzpa", + "commit": "f40f30810167b6851d17f7d400d2bd527871b29d", + "sha256": "17mhq2ba7ay986zz5cwg26d6v3j97m3vbl06l32jq8f5j9xss308", "fetcher": "github", - "repo": "elias94/accent", + "repo": "eliascotto/accent", "unstable": { "version": [ 20220202, @@ -1862,6 +1862,30 @@ "sha256": "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm" } }, + { + "ename": "adwaita-dark-theme", + "commit": "ae0fd31f1453e18ae4f5ff1da8b5719d30235d2a", + "sha256": "08vqjn7hgzxk0bfq5j3zgvg90b6gvfl8m2m4bv1042944i3pgspp", + "fetcher": "gitlab", + "repo": "jessieh/adwaita-dark-theme", + "unstable": { + "version": [ + 20230215, + 2027 + ], + "commit": "4792fed63a44a2337832644db909c1663100605e", + "sha256": "0nrvdx3lzkdaiy99mq9ramp4zd7fp4bhksbjb1mk3al6f9026kvg" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "40a375c8b86b58dddcd95e8dc654f127a6a3b910", + "sha256": "1gasg7dqz7vg544bnfnfzdfq50xq7jqwcigkmg2a6n8cm9wrjlh0" + } + }, { "ename": "aes", "commit": "33ca3106852f82624b36c7e3f03f5c0c620f304f", @@ -1893,25 +1917,25 @@ "repo": "minad/affe", "unstable": { "version": [ - 20221109, - 841 + 20230215, + 715 ], "deps": [ "consult" ], - "commit": "ff75fbe6f6b280815c33ed2d6694bf0ee74dd1fe", - "sha256": "01cza8ffx6djh1mign5bzkdvmcjrd69g3hwc3s0grpcidbqi0qic" + "commit": "69d9d05200dbf9058b3ae14e37f52944718374d7", + "sha256": "1p5hqlkhl1vi2m1wpjhzv38jbs5b1c4ji4nqsiyc37h3mp05nbbc" }, "stable": { "version": [ 0, - 5 + 6 ], "deps": [ "consult" ], - "commit": "ff75fbe6f6b280815c33ed2d6694bf0ee74dd1fe", - "sha256": "01cza8ffx6djh1mign5bzkdvmcjrd69g3hwc3s0grpcidbqi0qic" + "commit": "69d9d05200dbf9058b3ae14e37f52944718374d7", + "sha256": "1p5hqlkhl1vi2m1wpjhzv38jbs5b1c4ji4nqsiyc37h3mp05nbbc" } }, { @@ -1982,6 +2006,30 @@ "sha256": "0rnv787csidg36z6alci616js50kzxvg9vr7v98y2ihkja4vfp7f" } }, + { + "ename": "age", + "commit": "50eee72024c2c915022c12c713cab3ac7e2c68f0", + "sha256": "1h3qc46z9lw62h2n501drx18kx2zm437vrfn33vg9la4fd3phl59", + "fetcher": "github", + "repo": "anticomputer/age.el", + "unstable": { + "version": [ + 20230115, + 1155 + ], + "commit": "9e82487234c53e0fab2314aeab6479e62c68f0c7", + "sha256": "1x1f224xbwaan4rc1589gipl5a7llr3rxxf85i4y8zz2vfl478dp" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "commit": "0c94618fc10105da751007f90b44075f6e5d61ba", + "sha256": "1dvpa4p1rbpnxh4bcg2zz5y3df40k7r16m9lj4grv926cf1i4hl9" + } + }, { "ename": "aggressive-fill-paragraph", "commit": "982f5936f2d83222263df2886ca0b629076366bb", @@ -2008,11 +2056,11 @@ "repo": "Malabarba/aggressive-indent-mode", "unstable": { "version": [ - 20221009, - 1158 + 20230112, + 1300 ], - "commit": "f376cdc25de5c0f8c330f1e053557d95ca47a540", - "sha256": "1j2hgg7k1nhcwf5mrncmyc6babrlhks2wkcdhz8d1q8rpymiqq38" + "commit": "a437a45868f94b77362c6b913c5ee8e67b273c42", + "sha256": "0kaxwwnwj47j69zdiamxwlinvnbzw1ya62j91zg26ig2lj8082l7" }, "stable": { "version": [ @@ -2197,15 +2245,15 @@ "repo": "alan-platform/AlanForEmacs", "unstable": { "version": [ - 20220928, - 1229 + 20230216, + 857 ], "deps": [ "flycheck", "s" ], - "commit": "8856871633ef961a0dd7cf019be44212cfe1add1", - "sha256": "1pmgp69w0vi14rzrrkxn8gwhvb1yfczcw73h5jfsawhislg2vq8a" + "commit": "723cf8e8d7e00c1498935553c46f459aa1d26135", + "sha256": "0634gsbbf6fwsh44lk6nblksl402yvy2cf9pcjvlbhrz7mkp2m8j" }, "stable": { "version": [ @@ -2228,20 +2276,20 @@ "repo": "wlemuel/alarm-clock", "unstable": { "version": [ - 20221106, - 1409 + 20230216, + 1337 ], - "commit": "01f43a74591c4b0de34804e126b671990c7360b4", - "sha256": "167q6s32d78b6xywycfahpilpgp64bhcc6ydrjb07fbrbfjk96m7" + "commit": "3e43ca49804afb06477dbf7ff3d6e9824522be4b", + "sha256": "0vdwvrbj79ylaz5ffa2bpfy4kzi1s6hf6bxijvyw7h8y6bd196av" }, "stable": { "version": [ 1, 0, - 3 + 4 ], - "commit": "54a5557c05c63053fe31072905ba80d8231ce2f3", - "sha256": "02gr5scf50js00xa1chvd0j7agr8bys5madzk96fwg0s4gfdmyqa" + "commit": "3e43ca49804afb06477dbf7ff3d6e9824522be4b", + "sha256": "0vdwvrbj79ylaz5ffa2bpfy4kzi1s6hf6bxijvyw7h8y6bd196av" } }, { @@ -2330,8 +2378,8 @@ }, { "ename": "alectryon", - "commit": "4f7b6099b9167840602515f10ab02e70defbee1e", - "sha256": "0q1dsnrjak49dlmwkns79n996ip6zsdsv4k2ifgd9r8fd9yxki22", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0x0n8g6dx622drp591z8dp0dkbhdbdq0039zb4x1lni316gg81il", "fetcher": "github", "repo": "cpitclaudel/alectryon", "unstable": { @@ -2366,16 +2414,16 @@ "repo": "jwiegley/alert", "unstable": { "version": [ - 20221110, - 1614 + 20221213, + 1619 ], "deps": [ "cl-lib", "gntp", "log4e" ], - "commit": "730184b7923a65241fdff695485a3ad432caf201", - "sha256": "0xvb7rbfpwpkdqrbnnv0dy4q1gpy25lm849rf2gqqlrgdmywxafk" + "commit": "c762380ff71c429faf47552a83605b2578656380", + "sha256": "0c3x54svfal236jwmz2a2jl933av2p1wm83g2vapmqzifz2c0ziw" }, "stable": { "version": [ @@ -2508,14 +2556,14 @@ "repo": "iyefrat/all-the-icons-completion", "unstable": { "version": [ - 20221026, - 616 + 20221130, + 2354 ], "deps": [ "all-the-icons" ], - "commit": "4d8ae544ecf5414c7ddefcf15ca6c3de4f627ef5", - "sha256": "1cp5i01ln4j71gng38d03p2mdrvjgfcm29k4qjn5gzq6g4713wic" + "commit": "4da28584a1b36b222e0e78d46fd8d46bbd9116c7", + "sha256": "0b5m1djwhfbjakfda72ybqrw3rzmrq154yfpv4p8wgxknc5xjxfr" } }, { @@ -2636,15 +2684,15 @@ "repo": "seagle0128/all-the-icons-ivy-rich", "unstable": { "version": [ - 20220914, - 934 + 20230129, + 1522 ], "deps": [ "all-the-icons", "ivy-rich" ], - "commit": "f5d27ebd729837daec1311e353dcfc850202a945", - "sha256": "144jjv75f82r4rnmpc93k0inv48qh184b1knn30k80czanak8bjk" + "commit": "bc10c105f07c752d82ec7dfd929e5182d3b4a18f", + "sha256": "141cxi9rhp2sa5pk1hq655f897hi893jvv2364h67amq6701l1yi" }, "stable": { "version": [ @@ -2841,15 +2889,15 @@ "url": "https://repo.or.cz/amread-mode.git", "unstable": { "version": [ - 20221111, - 845 + 20230107, + 1433 ], "deps": [ "cl-lib", "pyim" ], - "commit": "3ff235a6204e224d47cb0c99368e6a0f21bf8dce", - "sha256": "03q5rndj0ywkg3gq91rhmzwb71y2qd4yc4x5x6vsi8kfxmbv73bs" + "commit": "4746c6adf81bedf8933faf912c4c65dafea9bb62", + "sha256": "15dr7l2zcs57hm0d2a8gs0pf5px4ibir3nf4ddxaj6aiz456sndm" } }, { @@ -3071,8 +3119,8 @@ }, { "ename": "angular-snippets", - "commit": "96a0ad5fdbc52f803846e580856fb9c58181c020", - "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0wpy5vf0l3mnsxv8521cdhx269853z83pms8hhri256p5b54lxk5", "fetcher": "github", "repo": "magnars/angular-snippets.el", "unstable": { @@ -3228,11 +3276,11 @@ "repo": "bastibe/annotate.el", "unstable": { "version": [ - 20221024, - 1829 + 20230203, + 1756 ], - "commit": "479aa90fd6a4db69361339c0058190423fe839e7", - "sha256": "1rsb6chgcn3qyzdrajvmidax1gx13v5ngkp24fl1avrsf4kgbmjw" + "commit": "e433ec6803d773ad2fd92f88b1ffce41ee999c65", + "sha256": "0dr0y1arv0wjhv0rvyln7v9r0bnqb2m1mz8qqi83fgj4ald67a9n" }, "stable": { "version": [ @@ -3277,12 +3325,10 @@ "version": [ 2, 6, - 2, - 2, - 20221106 + 3 ], - "commit": "b00db9d927d8951c44ef2e80fd4941180e9f40e7", - "sha256": "17f1w71r4pbmssg40xx3nx2chk28f0nc8adhr4vnq3ijkw69v1c7" + "commit": "b499d12412bac32ab1af9f470463ed9dc54f8907", + "sha256": "1s7zd01i8pmvi90ywx497kc07z50nah7h0fc2dn6jzb132k5sh1q" } }, { @@ -3345,8 +3391,8 @@ }, { "ename": "ansible", - "commit": "8e45bf58b980ff542a5e887707a6361eb5ac0492", - "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "17pfdyfv5z7bw0xhh8apqww8wsmvb5p5y0xs8048gh427mgw5yrf", "fetcher": "github", "repo": "k1LoW/emacs-ansible", "unstable": { @@ -3430,20 +3476,20 @@ "repo": "xgqt/emacs-ansilove", "unstable": { "version": [ - 20220629, - 2339 + 20230210, + 1338 ], - "commit": "3e3f6e8baa2135b072855567e4a1fc599a2fc800", - "sha256": "18p448arf6b6hbqvcxfvw6p45zijfzi2rg91dh26xbzaa398p9bj" + "commit": "abd64819dc67e1ababd38d39c7c7f6a2459987c0", + "sha256": "05q548dyb620kg12mgkmw6jpwbr2y2aqs5p7314y2c37khvw5irg" }, "stable": { "version": [ - 1, + 2, 0, 0 ], - "commit": "7841c01c56026f2b4405228803f8a9d4746a5680", - "sha256": "18p448arf6b6hbqvcxfvw6p45zijfzi2rg91dh26xbzaa398p9bj" + "commit": "785f0bad0c73069e6c41ca543c29675785b614a8", + "sha256": "05q548dyb620kg12mgkmw6jpwbr2y2aqs5p7314y2c37khvw5irg" } }, { @@ -3564,8 +3610,8 @@ }, { "ename": "aozora-view", - "commit": "c6c13f8a0dd90c1c1f39711a5de69c1e0b785601", - "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0y1gag2r10q1l8nznl78al9wwsw0r01wwzlxmpypa3n5ad9pab3n", "fetcher": "github", "repo": "kawabata/aozora-view", "unstable": { @@ -3648,11 +3694,11 @@ "repo": "radian-software/apheleia", "unstable": { "version": [ - 20221112, - 350 + 20230219, + 100 ], - "commit": "33d4542b58476d50f01464576664de1acea1f62f", - "sha256": "1gcsw3sfm4ixasfcmq2gjd878ap94sigkhis41l62y6kwzp9z63b" + "commit": "972b9906bf6d23f5a8e92129a4572a906bdfe45e", + "sha256": "1zjnhgkjhgg58c486k6a0p3kns9kap0lfk538059r65nrv4mkbzp" }, "stable": { "version": [ @@ -3723,17 +3769,17 @@ "repo": "alexmurray/apparmor-mode", "unstable": { "version": [ - 20220930, - 1134 + 20230209, + 2325 ], - "commit": "9b0ba33995172044068fa2609d97b1015f9fb513", - "sha256": "0ncp3aq5b2xmr3khy2c6hz8492k56j8v8lfkqqky7n028zy90nv5" + "commit": "3b641de4e34fb4a0594a461254f1454973b6b7aa", + "sha256": "166xs9m66s593p3wvkd6v81ib7rwwd1rhb59zkyz0jsprv70ki6h" } }, { "ename": "apples-mode", - "commit": "5ca765a6a2f312f585624ec8b82dc9eb6b9bbc0c", - "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0b3kiz3k9bdx2am1s5jb9dpwy8fxrh238yigwq7w44yswlb15mfk", "fetcher": "github", "repo": "tequilasunset/apples-mode", "unstable": { @@ -3808,11 +3854,11 @@ "repo": "waymondo/apropospriate-theme", "unstable": { "version": [ - 20221016, - 2248 + 20230117, + 2123 ], - "commit": "b7f0cfc44f53f61ff6494dfad84d685aac995ac6", - "sha256": "0qj06f4wngqnw08idx74l1wk1rr0lndwx2xzpr6411qf3rblriy9" + "commit": "1257880637e03efb885893afbcb88b7a8b20965a", + "sha256": "0z8gigwpz3ijqhqiclpaw8gmljbk01myay74c9afws2087s743fy" }, "stable": { "version": [ @@ -3970,17 +4016,17 @@ }, { "ename": "aria2", - "commit": "89a55e7c313066ae1bc0db0af5c289814c85fcb1", - "sha256": "1gsqdqs3q86k7q88rf7qamc0sp5ca00xn9kr1r717vf6qq6a0c3c", - "fetcher": "gitlab", + "commit": "d27e2275bb2fa1ff5e54898412b167cae2002c53", + "sha256": "0vwdrbwn8rda0zsi1n1i7pjwbpnvsxrw1hyq8xdx0346kvprl6fn", + "fetcher": "github", "repo": "ukaszg/aria2", "unstable": { "version": [ - 20190816, - 25 + 20230205, + 1008 ], - "commit": "90aeb73bedba63ac9efb9cad8e7444feb8b40261", - "sha256": "00135gq4xfblv50dwxq02dd1y18xv29lrl7iir3caq4pr3nhrshg" + "commit": "cc1661525bdf5c908c94a9d891a62d9b2e313670", + "sha256": "1sz6ixhw4x6cqs43nfld0156gwx4xjyh2pzbhg3ai1mc2nnmlkif" } }, { @@ -4090,14 +4136,14 @@ "repo": "fizban007/arxiv-mode", "unstable": { "version": [ - 20220128, - 920 + 20230121, + 842 ], "deps": [ "hydra" ], - "commit": "f550583d2da8bd9600bd26bb4028fe22a9744da2", - "sha256": "1hrrpll7yhqdf4jin28dnbv2a1yccn0f1a4hmay7f8yxmp42r1ln" + "commit": "06000ceb5a12b0f95bc7e89de03685f7ada4e8c3", + "sha256": "0dwgcwm0k4pbzbi2ab9607yxn41riqjpixy8fm2yalqh9l0sbasv" }, "stable": { "version": [ @@ -4120,14 +4166,11 @@ "repo": "lassik/emacs-ascii-table", "unstable": { "version": [ - 20201019, - 700 + 20221230, + 1244 ], - "deps": [ - "cl-lib" - ], - "commit": "4f68ad0b36c365c0652756691ab1703d0d46b4b4", - "sha256": "0f0ghwglxv2yil2cbzbhrvgk1p37jldfb974kpfwy6dg8m933rjf" + "commit": "c71f54b85edc6bd42abdc79dd82248958c8a24f9", + "sha256": "1hifgyadzsp4xl0w5fpsfshnf5605i475nbgaf43f3j0mx5q1lgx" } }, { @@ -4168,26 +4211,26 @@ "repo": "zkry/asm-blox", "unstable": { "version": [ - 20221112, - 2256 + 20221220, + 1716 ], "deps": [ "yaml" ], - "commit": "0234a9fe3e4bea7717e857f516209fcc00cf85c0", - "sha256": "184v0773cxggidk06wnsziib3kxkdhfr1j8hizmi75hnsrn1g2ya" + "commit": "5517efb1e186139197a2d348b7339a72dd379af8", + "sha256": "0f4nymkxk2x3jvkxfbgp5v8ap38j9sz1g6vnw6lrpvbgrdzazx6g" }, "stable": { "version": [ 0, 4, - 0 + 1 ], "deps": [ "yaml" ], - "commit": "374d9703afd2976736abe6a73c4d4561a3238211", - "sha256": "1lgy0yrvf5cx9cw95kg8w3xdy3fniagny9pv7an1lydhbfh8nn9w" + "commit": "5517efb1e186139197a2d348b7339a72dd379af8", + "sha256": "0f4nymkxk2x3jvkxfbgp5v8ap38j9sz1g6vnw6lrpvbgrdzazx6g" } }, { @@ -4278,11 +4321,11 @@ "repo": "jwiegley/emacs-async", "unstable": { "version": [ - 20221103, - 638 + 20230216, + 559 ], - "commit": "10cedd8ac7173e92a6822317f1782550199d2d6d", - "sha256": "0pjfnza5iha7amy6wdd0zg0h02mfaj6xzimqhjrhi05hh6kakccb" + "commit": "71cc50f27ffc598a89aeaa593488d87818647d02", + "sha256": "1yl4bn62jfplb6a06lh9m65ync32p8fddpwn0s14p3951a0xmdv7" }, "stable": { "version": [ @@ -4499,16 +4542,16 @@ "repo": "jyp/attrap", "unstable": { "version": [ - 20221107, - 1434 + 20221204, + 803 ], "deps": [ "dash", "f", "s" ], - "commit": "7cf39d3227d2e99bb2d627bb47fdd90c10a7675a", - "sha256": "0b8pi351k8i7grwpj1h94ym49gq2kgi2bc50cji1f7cimwci3qim" + "commit": "c00f4cc9409dc2fa8c0924f425b2840534b09221", + "sha256": "041f1gdh972y514zdcrlprnpq26kvip81q94768d3ydwlidymky5" }, "stable": { "version": [ @@ -4693,6 +4736,30 @@ "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28" } }, + { + "ename": "auth-source-gopass", + "commit": "317d42fb608f8fad137f582cf60667089c313ea4", + "sha256": "0awy5cpwclrsk1w31gv6yl8qml1gjdqga8mdcdda852i2zp5k938", + "fetcher": "github", + "repo": "triplem/auth-source-gopass", + "unstable": { + "version": [ + 20230109, + 1213 + ], + "commit": "6f7f0cc0d682f66d11f7fac4fa5c1e79904232da", + "sha256": "07n4bq64aja0f15mz18x45ncq0400fdxjlpc98hzycligihhz4fb" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "6f7f0cc0d682f66d11f7fac4fa5c1e79904232da", + "sha256": "07n4bq64aja0f15mz18x45ncq0400fdxjlpc98hzycligihhz4fb" + } + }, { "ename": "auth-source-keytar", "commit": "4ba6f96ca2e20dcd75cf239370243bd8e484f851", @@ -4701,15 +4768,15 @@ "repo": "emacs-grammarly/auth-source-keytar", "unstable": { "version": [ - 20220704, - 626 + 20221231, + 1654 ], "deps": [ "keytar", "s" ], - "commit": "fc6e221606e906a040c9df28e269bdc46dbfc9b3", - "sha256": "047zcr8m45y80hzggc0nw59a0wfv49nm8sndpw66mk4klz7w2mij" + "commit": "8fcd935ee131174a1ed7f132614257411ed441bc", + "sha256": "1xlg9zm59dymnwqqs4rcn5xiwvvz8345gcnbr7c2x3zxc75vkn1x" }, "stable": { "version": [ @@ -4814,46 +4881,43 @@ "repo": "emacscollective/auto-compile", "unstable": { "version": [ - 20220517, - 1501 + 20230117, + 1612 ], - "deps": [ - "compat", - "packed" - ], - "commit": "b204e2f85aaa4d41af4eb1819633c9613f5172bf", - "sha256": "0wqiypznwg7pcqb1qvf4ba2kx4f8x01ms8zxbxy134j9idm4g39f" + "commit": "4cbd304698a897baf438400c9a2b31d3dfb3a7f9", + "sha256": "16jjcd2qndfzp4zkscza1cayv1af41w8bvqmqb4127zim90jrs64" }, "stable": { "version": [ 1, 7, - 1 + 2 ], "deps": [ + "compat", "packed" ], - "commit": "3b4d94b020a2557e439233dbaa9d83fdea68f05a", - "sha256": "1zymk8kzw1mvkasf0dryy2sbwxdr8ppr0a4j5r69y108dmvplqwn" + "commit": "b31a175002e8a7f242c5ad4e971b6046f6217814", + "sha256": "1njnyilv6lxnbvi6yrgzg6qjhf6vgh4fpag4hav1j45718y6kd31" } }, { "ename": "auto-complete", - "commit": "083fb071191bccd6feb3fb84569373a597440fb1", - "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "043igws6i97p9sc7rlrhvn7pqgz5daf6a6h3z76qmfhsxmqc7dyf", "fetcher": "github", "repo": "auto-complete/auto-complete", "unstable": { "version": [ - 20220105, - 439 + 20221231, + 1633 ], "deps": [ "cl-lib", "popup" ], - "commit": "57cb8f2ee32dff17ea1b4431fe5920272aa38d72", - "sha256": "185q90ibw17dh2nwdljapdw2747hzv32n4hkjfcfsgw5asy58r8z" + "commit": "59c11c453bfa0794302848a004d1be3b1684f17b", + "sha256": "1psd8i1s507kp4km8izqv244xqzmgffxmnbv1zds5mql6hmpfr3r" }, "stable": { "version": [ @@ -4951,10 +5015,10 @@ "unstable": { "version": [ 20130526, - 1514 + 1527 ], - "commit": "5eb63c8a1e4ca3af124baf0f8f801b949888f9b8", - "sha256": "09f8hqs9n13lkb7b352ig07b9xm1w0mbbnqfy2s5cw4cppmakf2n" + "commit": "a5114e3477793ccb9420acc5cd6a1cb26be65964", + "sha256": "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj" }, "stable": { "version": [ @@ -5052,16 +5116,16 @@ "repo": "aki2o/auto-complete-pcmp", "unstable": { "version": [ - 20140227, - 651 + 20140303, + 255 ], "deps": [ "auto-complete", "log4e", "yaxception" ], - "commit": "dc5c0af834d327dd686d74a4171e5d9170007a6c", - "sha256": "0ygak7hypc27d0wvciksnmg8c5njw2skf1ml60vs63a1krkax63i" + "commit": "2595d3dab1ef3549271ca922f212928e9d830eec", + "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26" }, "stable": { "version": [ @@ -5080,8 +5144,8 @@ }, { "ename": "auto-complete-rst", - "commit": "4c948dc47f67aa47a1607cbdacdc95241d1a658f", - "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0fp3ma17dinb1jxrdslx803bqsx5pwvf26gqsb582dkn44flmla4", "fetcher": "github", "repo": "tkf/auto-complete-rst", "unstable": { @@ -5136,11 +5200,11 @@ "repo": "LionyxML/auto-dark-emacs", "unstable": { "version": [ - 20221114, - 343 + 20230204, + 129 ], - "commit": "10a42b015e35e8c6a99a3fb5ceeb1db0f5893cee", - "sha256": "0gdmjmdzb1p21mrrsl6kv3fvzwmvmbkx9yydn7rylv19zfgj4iwh" + "commit": "ca90fc638cfaf70d5e0b82657d3d26cd0b289059", + "sha256": "1shjl1pck2m7ncpwjfz77ibddx3pz68gma1icccad7piz2c67zrj" } }, { @@ -5189,14 +5253,14 @@ "repo": "elp-revive/auto-highlight-symbol", "unstable": { "version": [ - 20220919, - 548 + 20221231, + 1631 ], "deps": [ "ht" ], - "commit": "e10e4952fd23025f3f46edfde66e3ac2d7bdf069", - "sha256": "0yx8yx6vjqknrxrn24pggr4pzvb9k5is1iy2aisc7wrr5bndb8ly" + "commit": "ece5e2c722efa5c9ea32a809b484afc222ebebe5", + "sha256": "13v21zmcvnrc5a7ig08xs6nf2irdkah3nwgfjk4933ym8rff4sy9" }, "stable": { "version": [ @@ -5483,14 +5547,14 @@ "repo": "abo-abo/auto-yasnippet", "unstable": { "version": [ - 20220927, - 857 + 20230208, + 331 ], "deps": [ "yasnippet" ], - "commit": "7ef65b8e128bcf8afc52a702402c7943839abfb9", - "sha256": "01mdijgngh4bjngxcs81d7v8f6r28ly355gz4f87dbqaxvsdj92f" + "commit": "6a9e406d0d7f9dfd6dff7647f358cb05a0b1637e", + "sha256": "0ifzbwnm2axb8kmfp3jvg05wq02j121iwp2m64pi70c7mza0i886" }, "stable": { "version": [ @@ -5550,11 +5614,11 @@ "repo": "pkal/autocrypt", "unstable": { "version": [ - 20220827, - 1746 + 20221220, + 2359 ], - "commit": "9e393f869a276c7d7d52b89f0bab79a70455fefa", - "sha256": "15psbz4cwin3gxc0xj8hj4h3s6f1pjsdyx5d7sskzvf7kh0rg17l" + "commit": "1444f1861fd13367bdf75ec60a83a94dd1802a49", + "sha256": "1aqjl3l8ppv2z2k6fvza5idfr3bv1n680hf4z2ia3dq6xqy18fpn" } }, { @@ -5734,27 +5798,27 @@ "repo": "oantolin/embark", "unstable": { "version": [ - 20220221, - 1638 + 20230130, + 1454 ], "deps": [ "avy", "embark" ], - "commit": "472586b9d40976efe9827399deff3954f1570c71", - "sha256": "09imcbj3g6jvvr43kglwdk85kbp3jngsf8nji0zb832wqkc67zbq" + "commit": "784ce24a1ad37459041418182af49565cad4974b", + "sha256": "17ij5w1mv80j0rr3byahnldsbds8z1q2d61p9gsm0k8jdqxd4rrk" }, "stable": { "version": [ 0, - 17 + 21 ], "deps": [ "avy", "embark" ], - "commit": "97270d725761ee02db461b45b18ec16ae31f203e", - "sha256": "1s0ssf4q9kg4c5w87h2ypyvrhi31mz3s6k4h7pxi9a47lkccq8n1" + "commit": "784ce24a1ad37459041418182af49565cad4974b", + "sha256": "17ij5w1mv80j0rr3byahnldsbds8z1q2d61p9gsm0k8jdqxd4rrk" } }, { @@ -5929,8 +5993,8 @@ "repo": "cniles/axe", "unstable": { "version": [ - 20210816, - 1530 + 20230120, + 1915 ], "deps": [ "dash", @@ -5940,8 +6004,8 @@ "s", "xmlgen" ], - "commit": "3be04d03c1be88b3fb71f95164fb1971c2472c25", - "sha256": "0fy5lr7hvylf0h3vqnarcixvn6bca2dwyb96nkf86skm1hpjvh6i" + "commit": "5168d4f4c33861a071285df34f17fce92137d497", + "sha256": "1469w6rlnkf1wh5a4ar14snamrx61w6mvq6fwpkfmhpgc0fnwdg7" } }, { @@ -6073,15 +6137,15 @@ "repo": "tarsius/backline", "unstable": { "version": [ - 20220424, - 2212 + 20230212, + 2020 ], "deps": [ "compat", "outline-minor-faces" ], - "commit": "0d44408262080cdf998de5a52516f220e7e7c99a", - "sha256": "1l818vv2wh07jxc7wxmnidr8rcbj8526245fsflxp051hpilvan8" + "commit": "f6c235259052a69b70a1410d06f2f400eeb26a8d", + "sha256": "0631hqd877nfdmwys23rfybcwwzjwq8p2b4vm394p2w16g1km592" }, "stable": { "version": [ @@ -6306,11 +6370,11 @@ "repo": "tinted-theming/base16-emacs", "unstable": { "version": [ - 20221014, - 2302 + 20221218, + 105 ], - "commit": "29c469afa822ef24b38e4a4de33b1a638c5bcb5f", - "sha256": "1yja2j22z87nrb35k2d3hq32czwm93wm1vdklxjhv32w4qsvcghw" + "commit": "d113012e4b76bb3ced331480bce33d03241e56bc", + "sha256": "17vhmz5gy2m8m57mvpb9h2mgbci7iqyf2x8yvhxgb5sr4qfmcmbf" }, "stable": { "version": [ @@ -6329,20 +6393,20 @@ "repo": "szermatt/emacs-bash-completion", "unstable": { "version": [ - 20220531, - 1104 + 20230208, + 1903 ], - "commit": "8e9c20dbfe01d8bf6c61db231593623a201c75c6", - "sha256": "1jq6nx5kpln15yv0k9njql8xl7id7yswdl7hkkbwha99i1cn0nqd" + "commit": "25611eed1e086c4e8cdd335dbd38b1d796be5b8d", + "sha256": "0hqqb7dprwbyhjmymknxcixwqk13fm6aninbjhlaxgwv93i2ghfb" }, "stable": { "version": [ 3, 1, - 0 + 1 ], - "commit": "d47edb9d4142a22746009c1f680df93a4fefd107", - "sha256": "11j2k3irixp47r2iglxdmjphahqhgnxg98n2xwagwzyq99lsamj4" + "commit": "a021468eec8ff8cacb74a9ea595d3587186e29ea", + "sha256": "0cly0m6msn8xv9857nv4syw8fldqzvsa4kciq7av40y26a61hvrh" } }, { @@ -6372,8 +6436,8 @@ "repo": "sasanidas/emacs-c64-basic-ide", "unstable": { "version": [ - 20200429, - 1104 + 20230118, + 1040 ], "deps": [ "basic-mode", @@ -6382,8 +6446,8 @@ "f", "flycheck" ], - "commit": "d1d25c35cf899d58ead9377bf678a553c835c719", - "sha256": "0mb85g7bydd0nv3hjzvqb3d01cs4hg5846ibcznaqhsqk93pgm2h" + "commit": "e33036f838e61b647927165e81be5d5b855e0518", + "sha256": "1mfdkxwsj2mmpsxz0q68z7rs56qpd3dkvl2dkx1dp8n42zvifcxw" }, "stable": { "version": [ @@ -6410,26 +6474,26 @@ "repo": "dykstrom/basic-mode", "unstable": { "version": [ - 20221112, - 1533 + 20230213, + 1822 ], "deps": [ "seq" ], - "commit": "1d6cd9a3c400a3609ea2464103bb814b51d3d560", - "sha256": "177z5rmh4306zkadnpp0as3w51n972hnzsb15sxc4iccfb3zjap9" + "commit": "361dc1ea54bca3ab7a9ff36b64874dbe5c383382", + "sha256": "0lnj6vfg07yvlac7i4v6w7q86zbgqn10dblq992lhfidf6q909jd" }, "stable": { "version": [ + 1, 0, - 6, - 2 + 3 ], "deps": [ "seq" ], - "commit": "1d6cd9a3c400a3609ea2464103bb814b51d3d560", - "sha256": "177z5rmh4306zkadnpp0as3w51n972hnzsb15sxc4iccfb3zjap9" + "commit": "361dc1ea54bca3ab7a9ff36b64874dbe5c383382", + "sha256": "0lnj6vfg07yvlac7i4v6w7q86zbgqn10dblq992lhfidf6q909jd" } }, { @@ -6692,8 +6756,8 @@ }, { "ename": "bbdb2erc", - "commit": "04867a574773e8794335a2664d4f5e8b243f3ec9", - "sha256": "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "012vz1wq06yrrzzbyrk19jlscgb72q035nswkwjwdn42kphb22am", "fetcher": "github", "repo": "unhammer/bbdb2erc", "unstable": { @@ -6768,10 +6832,10 @@ }, { "ename": "beans", - "commit": "c458bd38ec9ec1de6717ea634b2d53f9083e3b23", - "sha256": "1sp43p1ajjh8zwrwkl09rhkkmxf01cw3i74ibqxn6m3hbdb3ry56", + "commit": "3d6b6320e55f2c38056e1d851eaeaa4d3e558bc7", + "sha256": "1zxb5rffdz8g0737rvc47fh6wikhppg591q066hm596kpk6lqzm4", "fetcher": "github", - "repo": "TheBlackBeans/emacs-beans", + "repo": "jthulhu/emacs-beans", "unstable": { "version": [ 20221114, @@ -6789,11 +6853,26 @@ "repo": "Titan-C/cardano.el", "unstable": { "version": [ - 20220810, - 1529 + 20221210, + 1154 ], - "commit": "2a0b54afd9e8fe586d64f7c4977c36d22d3fa6e2", - "sha256": "0da4rf5d1snh2ni1pjp67qyl456wy9jv1sc4mi8850m08hnb33xh" + "commit": "badbf267fa488df1cb87809ed234ebd67786f2f8", + "sha256": "0l4vzzzx50sq4hvv76ng3mywz0715rdqdfv2ivr92zzb1kjdp5a6" + } + }, + { + "ename": "beef-mode", + "commit": "455133bb8d6d1c18400064961b8f6c65941bc879", + "sha256": "067dlbbzvrdd3zrmm5lqqkavm5qhwn0h4aq8lazk695bdjqaj3zc", + "fetcher": "github", + "repo": "thechampagne/beef-mode", + "unstable": { + "version": [ + 20221227, + 203 + ], + "commit": "20906b41630d74eba56504fbb9fabb79562e0d6e", + "sha256": "1mqwamw9rhz8sm8jwv6m70bllrglqgl5qknj08z4zchbr72ik8ah" } }, { @@ -6805,14 +6884,14 @@ "unstable": { "version": [ 20201227, - 1533 + 2024 ], "deps": [ "org", "seq" ], - "commit": "1f085b6bdf9138db8deb7cd3afd269e34a87e8cc", - "sha256": "14b9vzzfwrl49nxv5kk975jzddgx8zzqspr00myxxq110sa628ya" + "commit": "161d9c94c594614a01cb08219693d9e000af4f69", + "sha256": "0cfjrn4hkpxhmg07kdff6ifvv1aqaq6dah5bvdc0xhzlqznx72j4" }, "stable": { "version": [ @@ -6884,10 +6963,10 @@ "stable": { "version": [ 1, - 0 + 1 ], - "commit": "7a0f263282bbc86b01b662636306f22813082647", - "sha256": "1kyn1izm5sbqbp9whnhk9dn3yc7zy8bz5san5w3ivi3rpx15fh94" + "commit": "02435560415bbadbcf5051fb7042880549170e7e", + "sha256": "19375vamhld4xm2qrdmhlp2nczfvalmz9x6ahl23zwkilr8n1nbw" } }, { @@ -6967,11 +7046,11 @@ "repo": "technomancy/better-defaults", "unstable": { "version": [ - 20220116, - 2220 + 20221125, + 1725 ], - "commit": "db2d945c44e26f32a658e9e743dd4b7a0d84b2fd", - "sha256": "0mlga8kk09ir66lqs5xx0bkr51vcc89hxq3ax2vaq1zsvlddl5h2" + "commit": "a45aecec0cf223984bc8649cd1dc81a5004932b4", + "sha256": "04b1k057j3ydfsla4jj15j600xyf4p3ha3n3vpf9fj313ryx8b1p" } }, { @@ -7108,25 +7187,25 @@ "repo": "cpitclaudel/biblio.el", "unstable": { "version": [ - 20210418, - 406 + 20230202, + 1721 ], "deps": [ "biblio-core" ], - "commit": "368f45bf9a64450705a63598224c5af96160af76", - "sha256": "034vx4x0cj79n9gdxnwvmdz9ljdfsn9isda20x6gghjncb1dzsj5" + "commit": "ee52f6cda82ea6fbc3b400e7b12132595cc0374c", + "sha256": "0iya5ybc54kia5vnb3bfr8yilykhbn2xvp157vya06cw4af2cw65" }, "stable": { "version": [ 0, - 2 + 3 ], "deps": [ "biblio-core" ], - "commit": "a5a68fcf677f286f205f32dc7486f6c9f66aa6af", - "sha256": "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz" + "commit": "ee52f6cda82ea6fbc3b400e7b12132595cc0374c", + "sha256": "0iya5ybc54kia5vnb3bfr8yilykhbn2xvp157vya06cw4af2cw65" } }, { @@ -7155,29 +7234,29 @@ "repo": "cpitclaudel/biblio.el", "unstable": { "version": [ - 20210418, - 406 + 20230202, + 1721 ], "deps": [ "dash", "let-alist", "seq" ], - "commit": "517ec18f00f91b61481214b178f7ae0b8fbc499b", - "sha256": "0m5vpyj6312rc3xq8lrr1g2hyl26adzwvjxb3jqrm7bvqvs4i5zp" + "commit": "ee52f6cda82ea6fbc3b400e7b12132595cc0374c", + "sha256": "0iya5ybc54kia5vnb3bfr8yilykhbn2xvp157vya06cw4af2cw65" }, "stable": { "version": [ 0, - 2 + 3 ], "deps": [ "dash", "let-alist", "seq" ], - "commit": "a5a68fcf677f286f205f32dc7486f6c9f66aa6af", - "sha256": "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz" + "commit": "ee52f6cda82ea6fbc3b400e7b12132595cc0374c", + "sha256": "0iya5ybc54kia5vnb3bfr8yilykhbn2xvp157vya06cw4af2cw65" } }, { @@ -7298,14 +7377,14 @@ "repo": "tarsius/bicycle", "unstable": { "version": [ - 20220422, - 1600 + 20230212, + 2019 ], "deps": [ "compat" ], - "commit": "298e33b4b02e499a61a68bb61ebef64cb7640b59", - "sha256": "0gv3hrwlns59jnxh2xzn2vf3a4jb2mm7gvq4jj77zr4di823r6qj" + "commit": "20f0637365a9bf0a899a7663b1f8caec609de19a", + "sha256": "074npqx189paal46g9dcr28i3lzm2gx8lyrk7v4v1hjhgmzhl1dn" }, "stable": { "version": [ @@ -7410,11 +7489,11 @@ "repo": "jwiegley/use-package", "unstable": { "version": [ - 20221117, - 1610 + 20230203, + 2004 ], - "commit": "9090080b15486c3e337be254226efe7e5fde4c99", - "sha256": "03mqkv63ink2ysy86slac8ac7a5g22bi0pwvxyncfasm43q9d0sx" + "commit": "77945e002f11440eae72d8730d3de218163d551e", + "sha256": "1irr8a8r28n8c0c2x5w1flgv1f3z5jy2i5r5dknddiqa93b3rm84" }, "stable": { "version": [ @@ -7458,14 +7537,14 @@ "repo": "rnkn/binder", "unstable": { "version": [ - 20220429, - 2055 + 20221224, + 1132 ], "deps": [ "seq" ], - "commit": "5e11bc279850b623ebfde9a2278ea7c3ec2d7ac2", - "sha256": "0g0j4ccry7iyniiyiyhjyydknilhk01vsfidjjgv5c198yn8x1gp" + "commit": "828f2fd079769e5a2c50f8998e84d63a9a95e797", + "sha256": "1pa63y6ldm8gbzpx365i3hd147qglkyi10vlj52rcd3p8qvrg9gq" }, "stable": { "version": [ @@ -7504,6 +7583,30 @@ "sha256": "1kn8kmljn0pj0hz7dj7r7nxw43xd6acndaqq92d02mla12hiqayz" } }, + { + "ename": "binky-mode", + "commit": "c83e9c76261a7de6a41ba93782a52f912120ea75", + "sha256": "0b6p43blrdb28czqxj4ykj8zbq6jix49g7rsig3c6dn7cj4rqzxv", + "fetcher": "github", + "repo": "liuyinz/binky-mode", + "unstable": { + "version": [ + 20230120, + 1708 + ], + "commit": "04f1132ea1945861da0081cb2ad08076d20cea57", + "sha256": "010yyhgn049nfmx3rbc3h4a0ypi6vgkn340rqfvsmml48ax75chn" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "e35a477e28e5ace70bbdb2a5d0c503639528fb5c", + "sha256": "1kvqrkm21g06q068jvf3a95299n0xd550lba1wlf0h6pc1jrg1fn" + } + }, { "ename": "birds-of-paradise-plus-theme", "commit": "3932853232c269f158806aebe416b456c752a9bb", @@ -7701,26 +7804,26 @@ "repo": "Artawower/blamer.el", "unstable": { "version": [ - 20220531, - 1900 + 20230113, + 2009 ], "deps": [ "posframe" ], - "commit": "330c0ac2e3bbc242c2e769655bb6b68555aada70", - "sha256": "1wmz3kp5k7n5xj2yx4rz7f7a5khvhll1jvda40b3c8x6mx9n416f" + "commit": "d1d5f2dc4d9cd5a47c47b55abb1f3b38911cc2d0", + "sha256": "1djp0bdgbzlhxcajvw7znj68i64finilch24kzrxh96panaami3c" }, "stable": { "version": [ 0, 5, - 0 + 1 ], "deps": [ "posframe" ], - "commit": "330c0ac2e3bbc242c2e769655bb6b68555aada70", - "sha256": "1wmz3kp5k7n5xj2yx4rz7f7a5khvhll1jvda40b3c8x6mx9n416f" + "commit": "d1d5f2dc4d9cd5a47c47b55abb1f3b38911cc2d0", + "sha256": "1djp0bdgbzlhxcajvw7znj68i64finilch24kzrxh96panaami3c" } }, { @@ -7985,26 +8088,26 @@ "repo": "sergeyklay/bnf-mode", "unstable": { "version": [ - 20200323, - 1348 + 20221205, + 1451 ], "deps": [ "cl-lib" ], - "commit": "d88eef69ae66ea1ffa21a65317afe84c9ddb0814", - "sha256": "13178vnd8jscjqhdjvr06xxq00ymbjkaxpg2vvxb44gsyg75jg9n" + "commit": "dcdb422e219b29d53a9385e19083441c57f0beb3", + "sha256": "18fmka9hvdrz402kvjzz25437x3y36007d3vd439i1r6rj3axmg4" }, "stable": { "version": [ 0, 4, - 4 + 5 ], "deps": [ "cl-lib" ], - "commit": "4a7aff6a3a691826ea4add9f519c854b9611d780", - "sha256": "1hnkvwl0as2s4aayqahclqclsriigqv51h8yafx0za1xfh4snfzv" + "commit": "a4fe013fc945d8396930bc6d0dcc1cf9d7102f41", + "sha256": "04n8aganyz44i1lhnlqraa4yk7i5dxjmskq8pp009ay33mjanj5l" } }, { @@ -8077,8 +8180,8 @@ }, { "ename": "bongo", - "commit": "692428769cd792dc0644641682c2793103dd00c6", - "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0bswl59wmbvpkar6nk9qgjchv0gblwx732gxbrfpmq06fj0ia8pn", "fetcher": "github", "repo": "dbrock/bongo", "unstable": { @@ -8149,11 +8252,11 @@ "repo": "ideasman42/emacs-bookmark-in-project", "unstable": { "version": [ - 20220708, - 211 + 20230116, + 1206 ], - "commit": "ccffde03b57d9b16fff59188d8e4090bf64d46d6", - "sha256": "1d4kbzgjdfkpjadbg070slir2v6sqlfw4jqlmpdg7pwc1c4j32rj" + "commit": "a1630443887c7fa190411c45269bde575f0807c5", + "sha256": "1va02c3mdaj04xx7r9h42ldiddl4i3ca68kywk66v59kxphdpzqq" } }, { @@ -8211,16 +8314,16 @@ "repo": "jyp/boon", "unstable": { "version": [ - 20221106, - 2025 + 20230214, + 2035 ], "deps": [ "dash", "expand-region", "multiple-cursors" ], - "commit": "106f842df7f68cbffbb2bb63f7f99f34fe7d3edf", - "sha256": "0pw2ig0hn9m62yv6j7snllzb9aanyjjfx3xzaif4bl0ili2zd78c" + "commit": "786cf085a9af60083279297c599d5ea0f744efba", + "sha256": "142gj7mxr8kg412y6xkicwicsy9y7jc3pjsmmnx3x4c7msh3hkqi" }, "stable": { "version": [ @@ -8244,15 +8347,15 @@ "repo": "emacscollective/borg", "unstable": { "version": [ - 20221106, - 2238 + 20230122, + 1752 ], "deps": [ "epkg", "magit" ], - "commit": "032ddf33799dd0a2c89d1a3e9e04dc3cdc13320c", - "sha256": "19y7sc7d9qb926b5jv2l2jwhsgl3wm6php30w2r9jh5gspmh0ck7" + "commit": "79850a9007fe156bac36bc2e5e05bc7be8276135", + "sha256": "14n82f2zlxwjs9p0mz24p93929qk8bdr8b2g4daxln2d9y3wmhsa" }, "stable": { "version": [ @@ -8298,6 +8401,30 @@ "sha256": "1kdf71af1s67vshgwkdgi7swxx942i605awhmhrhdjbkra29v4yn" } }, + { + "ename": "boxes", + "commit": "525c1c64ccaeda21f8e30d8d7edcde318ba80ffa", + "sha256": "0sp9mpn0x7cljiaipvfh14sdk7jpmzi9pvvsxci7hz6mb2lskw0a", + "fetcher": "github", + "repo": "ascii-boxes/boxes", + "unstable": { + "version": [ + 20221213, + 2047 + ], + "commit": "380e7814acb7de490a3b5729c3b943f875bc6a73", + "sha256": "1qz31wq16p5lzk0bwnz0nbgp9v7ai94wbmafi9wlyi9sc1b9dp9y" + }, + "stable": { + "version": [ + 2, + 2, + 0 + ], + "commit": "7113961cbd139bd0c2122a92cc41331dbabf45a8", + "sha256": "0vv2gaav1m4z2xdk0k3ragmv4kcnzv7p3v97lkjl1wbfmk5nhz07" + } + }, { "ename": "boxquote", "commit": "d2148f8f17b16154bfc337df69a5ad31e25a9b05", @@ -8372,6 +8499,21 @@ "sha256": "1r2prq9j6fmzzkl1f3r9drn6lna2wzd9qv127x7z5g6n8pgb6ipx" } }, + { + "ename": "bqn-mode", + "commit": "17711a1d747932e9be1ccd1d0a3adb64fa6cf1ef", + "sha256": "1hbwdd75dbbrgqnlj3mpx25nq2pb59xv5241dn55vzwd36a7434m", + "fetcher": "github", + "repo": "museoa/bqn-mode", + "unstable": { + "version": [ + 20230215, + 309 + ], + "commit": "6089e141dd693f809673c518fa07283ffeadb734", + "sha256": "0npbl9gph5g80r69g8vc9g23h867dwnny2g40yj85la9c28rg7fd" + } + }, { "ename": "bracketed-paste", "commit": "6446db573d97ceb21cd39ce05fb39627113bbd74", @@ -8437,25 +8579,25 @@ "url": "https://bitbucket.org/MikeWoolley/brf-mode", "unstable": { "version": [ - 20220807, - 1438 + 20230217, + 1851 ], "deps": [ "fringe-helper" ], - "commit": "8f86b980d450e44cd29d24e66c30ff079c6b9982", - "sha256": "13jl2ppc8yn8nkwg0xix7cfmgfy34grw4rlask39mdis0jkwazk6" + "commit": "3f31b81204dc919cb178df556feed497f3a2a4f5", + "sha256": "1h2sgr4vck1x4p2clx2dcyd0g2l9s2bj1lfhx0xb09i17r80fk69" }, "stable": { "version": [ 1, - 23 + 24 ], "deps": [ "fringe-helper" ], - "commit": "8f86b980d450e44cd29d24e66c30ff079c6b9982", - "sha256": "13jl2ppc8yn8nkwg0xix7cfmgfy34grw4rlask39mdis0jkwazk6" + "commit": "3f31b81204dc919cb178df556feed497f3a2a4f5", + "sha256": "1h2sgr4vck1x4p2clx2dcyd0g2l9s2bj1lfhx0xb09i17r80fk69" } }, { @@ -8505,16 +8647,16 @@ "repo": "rmuslimov/browse-at-remote", "unstable": { "version": [ - 20220908, - 1736 + 20230118, + 407 ], "deps": [ "cl-lib", "f", "s" ], - "commit": "010639fc6bd6c710b56e0f095352da60c92473a3", - "sha256": "0ihbapxi99drdn191g7brx4pa5f1w0mskhb3yz7w3qsf0g9y9kn8" + "commit": "c020975a891438e278ad1855213d4f3d62c9fccb", + "sha256": "0g78l8jkwxmnpiwjk3yjbd7528mywwh26i3zzgy9a3904fv37rcw" }, "stable": { "version": [ @@ -8876,25 +9018,26 @@ "repo": "swflint/buffer-sets", "unstable": { "version": [ - 20221102, - 1813 + 20230210, + 122 ], "deps": [ "cl-lib" ], - "commit": "e14026496655562ebd191ba25fad59ca8948c9bb", - "sha256": "0ljbb3zbm8kwasd4jxnq2mmw8ad7p6zxdpz8jz4wmjpskgya7nbn" + "commit": "cdc66804b8a1ec7ddf94d99c7f24b801148b64df", + "sha256": "0lz7bjmxzxkri6mvqk6lrl6dp58as6py3i41hkfkj9zjmjvsl589" }, "stable": { "version": [ 3, - 5 + 7, + 2 ], "deps": [ "cl-lib" ], - "commit": "e14026496655562ebd191ba25fad59ca8948c9bb", - "sha256": "0ljbb3zbm8kwasd4jxnq2mmw8ad7p6zxdpz8jz4wmjpskgya7nbn" + "commit": "cdc66804b8a1ec7ddf94d99c7f24b801148b64df", + "sha256": "0lz7bjmxzxkri6mvqk6lrl6dp58as6py3i41hkfkj9zjmjvsl589" } }, { @@ -9290,8 +9433,8 @@ }, { "ename": "buster-snippets", - "commit": "67dabf33096113e68fe282309246094711751e1f", - "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "17b9752lxmscrnvjdirm0ws33c0a9rkgj369bx44i6w0cbqds8lg", "fetcher": "github", "repo": "magnars/buster-snippets.el", "unstable": { @@ -9361,19 +9504,19 @@ "repo": "jorgenschaefer/emacs-buttercup", "unstable": { "version": [ - 20221026, - 2006 + 20230119, + 2337 ], - "commit": "eaa4b3ccd115a2bb25be98dc637950645d3adbae", - "sha256": "1dc8m5w26gi698d31xvh1q8mwf4a3wa1xrnyhqqxrmfr8b71clpk" + "commit": "07a52c99695845a0089e828d43da154c0ba0c178", + "sha256": "0xq92f5han0830h2fpqh49qxp2x7rqmq7743d2nfw49rhrns542i" }, "stable": { "version": [ 1, - 28 + 29 ], - "commit": "eaa4b3ccd115a2bb25be98dc637950645d3adbae", - "sha256": "1dc8m5w26gi698d31xvh1q8mwf4a3wa1xrnyhqqxrmfr8b71clpk" + "commit": "b3ea11826e2ca5d648d677c4ae27974ce8e7c7e3", + "sha256": "0a5wvm7nh4748wzvp2b9jll74ifqz22bicxkl5fwp4di4vrqpd47" } }, { @@ -9450,8 +9593,8 @@ }, { "ename": "c-c-combo", - "commit": "da105eab0e7a5a3a1fc562973d99cbbbe9019b5f", - "sha256": "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0z7qix1ir02rhpqsgz48wixncpyf375xf5767f971sxm8n46mdig", "fetcher": "github", "repo": "CestDiego/c-c-combo.el", "unstable": { @@ -9772,11 +9915,11 @@ "repo": "kiwanami/emacs-calfw", "unstable": { "version": [ - 20170320, - 1206 + 20170411, + 220 ], - "commit": "136dce009a26e7d8a8064af422c2cf8170e852c5", - "sha256": "1hiip8hfl7myimgba7ggs1ki1pk3ag7nyfa8j2zzm87n93g5xia4" + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" }, "stable": { "version": [ @@ -9833,11 +9976,11 @@ "repo": "kiwanami/emacs-calfw", "unstable": { "version": [ - 20150703, - 819 + 20170411, + 220 ], - "commit": "a67fa1023b3fddc1d1f38114c1d207376c8e6289", - "sha256": "0g8s3pgivqk1vqdgkndznkl48c4m5yiahkjxyqyv2781hdb4f6xa" + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" }, "stable": { "version": [ @@ -9856,11 +9999,11 @@ "repo": "kiwanami/emacs-calfw", "unstable": { "version": [ - 20160303, - 258 + 20170411, + 220 ], - "commit": "e03ae470788778e7714b73520014eadc03a88abd", - "sha256": "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj" + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" }, "stable": { "version": [ @@ -9879,8 +10022,8 @@ "repo": "chenyanming/calibredb.el", "unstable": { "version": [ - 20220612, - 1131 + 20230118, + 954 ], "deps": [ "dash", @@ -9890,8 +10033,8 @@ "s", "transient" ], - "commit": "2f2cfc38f2d1c705134b692127c3008ac1382482", - "sha256": "11y8hiihs1jdf44pdxmylriqngwsxwsny29l6y3jp4mmhrrgz1m7" + "commit": "0ea8ccc41bbf4c6d105d9d2eddffa25d040f0e8d", + "sha256": "1dha52nv0gscy4bp1z5z40l15nzqbpl0frgjx08i7mbzf55a3nlv" }, "stable": { "version": [ @@ -9919,16 +10062,16 @@ "repo": "beacoder/call-graph", "unstable": { "version": [ - 20221103, - 240 + 20230220, + 226 ], "deps": [ "hierarchy", "ivy", "tree-mode" ], - "commit": "4a8206e0b8b8ffa073d35d132e0654068a3d425f", - "sha256": "0gb4m3jz7sm3iy2ipa1ijvkxbp1hwd3ka6p5i7jrhbs29hf1zamv" + "commit": "18a96dbabbedcd9e55817af7b6a0f303aea09faa", + "sha256": "1xdb2fiyavhxn7m5gg5b7vr8fydlzdriz0ckhsr95v19vjylkwg4" }, "stable": { "version": [ @@ -10000,11 +10143,11 @@ "repo": "ocaml/caml-mode", "unstable": { "version": [ - 20220928, - 835 + 20230129, + 1145 ], - "commit": "a970f303065fe176a920db0466dacf3e2a20b56b", - "sha256": "1bd21fhcjgz7iadbz66yyzb7d88mlan7mkxm8zm0jnlkhdmixc9v" + "commit": "959a5a27bfdbaa43a9ff99be136d62e0798f5e01", + "sha256": "145y73lrrwwcl7xg12aq42a1zc1cwgvm7kg3gk18j5k40cy9x696" }, "stable": { "version": [ @@ -10023,16 +10166,16 @@ "repo": "kisaragi-hiu/cangjie.el", "unstable": { "version": [ - 20211201, - 2307 + 20230219, + 1150 ], "deps": [ "dash", "f", "s" ], - "commit": "87408d79b73a69194842a8848de6d7708e98c3a4", - "sha256": "1pafp5sqr1zb0fkci6i542s683vx4x14955rv51311s2y8xzgyqf" + "commit": "d6882e15f47fdde37e9f739dde604d77d25f11db", + "sha256": "0adi56w8lyxasry9z56pgxkz29my54q66rgyrzqbwba1qaky375g" }, "stable": { "version": [ @@ -10057,19 +10200,25 @@ "repo": "minad/cape", "unstable": { "version": [ - 20221109, - 839 + 20230215, + 717 ], - "commit": "4b32036a6c667b445dcc001fd70a01eee8baa924", - "sha256": "0kcnyzksj8yglk67g1130wxzscgipm7cz2hs8mvdqpcbz4i38jny" + "deps": [ + "compat" + ], + "commit": "3e796a862d42743d33cd56fca041b6f2194db095", + "sha256": "0nvmqfp9rv2mrisyvwfr285yww22c6wb5by3s25c83ay2ivpi8ya" }, "stable": { "version": [ 0, - 10 + 13 ], - "commit": "4b32036a6c667b445dcc001fd70a01eee8baa924", - "sha256": "0kcnyzksj8yglk67g1130wxzscgipm7cz2hs8mvdqpcbz4i38jny" + "deps": [ + "compat" + ], + "commit": "3e796a862d42743d33cd56fca041b6f2194db095", + "sha256": "0nvmqfp9rv2mrisyvwfr285yww22c6wb5by3s25c83ay2ivpi8ya" } }, { @@ -10090,16 +10239,16 @@ "version": [ 0, 10, - 2 + 3 ], - "commit": "2e88221d3dde22266bfccf40eaee6ff9b40d113d", - "sha256": "0dq23gghvsp71j75xiypbcafsf1if68fr96ihpzxx9fg0w47h6mw" + "commit": "a16468f296a9584f4068072efecdee8a9eb9c2ed", + "sha256": "0nj0s1n7a98kn1597lskv32piba6cy5ifgw102y52mphl0h55c22" } }, { "ename": "capture", - "commit": "bdfe43be6c5f77845e82745534a1b1a9eb190466", - "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1zp9zcrj8jabvc3699azixfziqnvcj3skv1zp1787d41wzc1g5bv", "fetcher": "github", "repo": "pashinin/capture.el", "unstable": { @@ -10134,14 +10283,14 @@ "repo": "Titan-C/cardano.el", "unstable": { "version": [ - 20221002, - 1553 + 20230105, + 11 ], "deps": [ "bech32", "cbor", "emacsql", - "emacsql-sqlite3", + "emacsql-sqlite", "f", "helm", "readable-numbers", @@ -10149,8 +10298,8 @@ "yaml-mode", "yasnippet" ], - "commit": "5654cd04cf0ab482a7f92a206abf43762ef653f3", - "sha256": "1pw73csxkfr71piq5mjy54njd1s3vk5j9a1bfwvna33kqwcqjcic" + "commit": "6ce650972d949228b17dc03c6ff809f67f22f35a", + "sha256": "0j82a1267cgkj2kd2m3fb05hk7s4nlwxbfxa9r8hs9kzx48lkli2" } }, { @@ -10161,8 +10310,8 @@ "repo": "Titan-C/cardano.el", "unstable": { "version": [ - 20220718, - 1434 + 20230105, + 11 ], "deps": [ "cardano-tx", @@ -10171,8 +10320,8 @@ "yaml", "yaml-mode" ], - "commit": "4250104458df65c69a8c4287be29840975addbf2", - "sha256": "1mb5a8jkww579y0nhyn2089g1hbws1q69iq4dyrsqmhgflc2bg01" + "commit": "6ce650972d949228b17dc03c6ff809f67f22f35a", + "sha256": "0j82a1267cgkj2kd2m3fb05hk7s4nlwxbfxa9r8hs9kzx48lkli2" } }, { @@ -10183,14 +10332,14 @@ "repo": "kwrooijen/cargo.el", "unstable": { "version": [ - 20221025, - 810 + 20230125, + 1253 ], "deps": [ "markdown-mode" ], - "commit": "d2720c8dc7ac3b18ce112a886d3b8696797d01cb", - "sha256": "1qsva3ba3r883c8kr8ffsnzrd8fqf02yx4dxml3qzwhi74s1n5wq" + "commit": "225fdb846c702a193e58a98c1585bb3586a9aa86", + "sha256": "03wm1wq6jax1a30ix5hn3n8d95nn0hkc6l9mipy77ayfcawkd31h" }, "stable": { "version": [ @@ -10213,11 +10362,11 @@ "repo": "ayrat555/cargo-mode", "unstable": { "version": [ - 20210605, - 1003 + 20230213, + 401 ], - "commit": "96407fccbde5f2ccb02682f421910a6f4a17e30a", - "sha256": "0bagdch1n7lqr7vrc34gh1qkngqlg6jpgcypcckbs9sn0qngh9mc" + "commit": "6e128f08692aae5723122e039e8871a57141e868", + "sha256": "044bc09bmkzzrrd24niwsz5cr52kg3wbhs7qfmxmypyqzzdj3kcd" } }, { @@ -10228,11 +10377,11 @@ "repo": "peterstuart/cargo-transient", "unstable": { "version": [ - 20220730, - 154 + 20230120, + 1431 ], - "commit": "1755da9c1cedde6026a0a9e7fd0fe98ed2d30dbb", - "sha256": "1bidbpak7w16dw78sgwx8kb75kvib6s15cnl8akzxsdx69r9k207" + "commit": "f0295aee41404ffb2e8532948becf78d405e4ee9", + "sha256": "1x1nkcsc41niljpm9mf84r1lyiavy3nybpgzglhw8f7xwvr7b6x5" } }, { @@ -10428,11 +10577,21 @@ "repo": "catppuccin/emacs", "unstable": { "version": [ - 20221023, - 2331 + 20230219, + 1437 ], - "commit": "b4be30de73aa295ab56a20c21dff07fba3dec05e", - "sha256": "15wdl02r6yjkqmzh5xg60hgcdvwr32vv6sw2mzjyh6g1wi6x134q" + "commit": "298cb2352757a16dda00bef967d484729c021d29", + "sha256": "160lq16fw9isnbk027pxq027sz3g86lb7mbmg5wzbbliwy4933y0" + }, + "stable": { + "version": [ + 0, + 2, + 0, + -3 + ], + "commit": "785c9f57a43c4c90041290556d999db3d9da5be9", + "sha256": "1dzfashhjig06m9zs4w2ns64h3hzck93p4ddfwnr9zaxz0gmkp4s" } }, { @@ -10472,14 +10631,11 @@ "repo": "Titan-C/cardano.el", "unstable": { "version": [ - 20220810, - 1600 + 20221225, + 1909 ], - "deps": [ - "dash" - ], - "commit": "5282753b9f4509468d391357147e13129859ccbe", - "sha256": "12qmbrkr16hh81hqjn3h4v4ypj08ii3yg9zibky9hpld5jidqx26" + "commit": "b369e8ac68c4cbabeb3a57f7db6bd44341523d72", + "sha256": "0ppzjha1cav84jgp2lvm60m4qxxa3cd9mbp66jdgzyjx3k7mi0l3" } }, { @@ -10520,15 +10676,15 @@ "repo": "emacs-lsp/emacs-ccls", "unstable": { "version": [ - 20200820, - 308 + 20230111, + 1754 ], "deps": [ "dash", "lsp-mode" ], - "commit": "675a5704c14a27931e835a431beea3631d92e8e6", - "sha256": "0l4bhyr9d8ljz1f0cfg1s2cjcmh6fiwbk5mdlvc7rrwz5hxc21is" + "commit": "29d231590fad39b4d658d9262859e60669edb9b0", + "sha256": "09a4hs80577mliqlb9ahgz3kc3xvr9kpw9qvlv7cycd4x56ngy0k" } }, { @@ -10692,15 +10848,15 @@ "repo": "ema2159/centaur-tabs", "unstable": { "version": [ - 20220926, - 1247 + 20230109, + 457 ], "deps": [ "cl-lib", "powerline" ], - "commit": "7d9fad0daa44ffb2acecf6525759e46e08e35f2c", - "sha256": "0la8fmwirspg7m453qhfb64sqryl59dxc1lfmjkh6mzf85nqbl1i" + "commit": "a2890d968d877b269a814a691356fc5877833c39", + "sha256": "1naimz0xazxlms20kz6v82vpmriinswq51bbqxcl6m8ic7wgii0w" }, "stable": { "version": [ @@ -11028,11 +11184,11 @@ "repo": "GrammarSoft/cg3", "unstable": { "version": [ - 20220930, - 907 + 20221007, + 1727 ], - "commit": "4d0fcdd3f9f33832af357928762d785d88b3d494", - "sha256": "0nh6lgwrd776n3chk3wyla95hf5jhkcmbmnz25d5lsk35nb2fwb8" + "commit": "a8a369f77d798bf65f65271256980a498fa43564", + "sha256": "0q6gac1ykkc332z4x88d1wn2mvkz92lwjy36dji93hvl9y3228af" }, "stable": { "version": [ @@ -11245,8 +11401,8 @@ }, { "ename": "chee", - "commit": "25b445a1dea5e8f1042bed6b5372471c25129fd8", - "sha256": "1sw84qaca2cwgrw332wfqjp3kg3axgi9n6wx5a6h2n3liq5yr1wj", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0dk30kadpagz1in8jnj7550865hxa7wmyl15pb8ivz1llm3v85bf", "fetcher": "github", "repo": "eikek/chee", "unstable": { @@ -11363,11 +11519,11 @@ "repo": "tuh8888/chezmoi.el", "unstable": { "version": [ - 20220310, - 2014 + 20230106, + 1716 ], - "commit": "781783c483bc8fcdba3a230bb774c3a8a5ebe396", - "sha256": "0il36mnf4c13336sa4hpbfypdc983va5fcd5shcsp7slb9zwm69m" + "commit": "0578f81ab01f5280e6c68d7a8a70ae4b4ba29755", + "sha256": "09qjp6030xfj27aswpi224czjq28ac32267k1y4gfp16gg4iimdd" }, "stable": { "version": [ @@ -11546,16 +11702,16 @@ "repo": "contrapunctus/chronometrist", "unstable": { "version": [ - 20220604, - 344 + 20230203, + 557 ], "deps": [ "dash", "seq", "ts" ], - "commit": "dd2ffea506531ca621685bda5a4c30dfb43f5fa2", - "sha256": "1fqijm6gnmsljg6a5pswcnrclv0kan1y947lhl9j5sqk31dcpbp2" + "commit": "f131e996320715238e8403439a18dbc016b09520", + "sha256": "1p25way281k6ygkws1fmkz2z9imcj7p82n6zlrlfjz37192d8saq" }, "stable": { "version": [ @@ -11694,11 +11850,11 @@ "repo": "chyla/ChylaThemeForEmacs", "unstable": { "version": [ - 20180302, - 1658 + 20221213, + 1012 ], - "commit": "ae5e7ecace2ab474151eb0ac5ef07fba2dc32f8a", - "sha256": "1gqzwwr3fnhd9iqn7zmqpxgxvmrhq7g849ndjwizksk0bfj3b596" + "commit": "b24d0379516857ccf75caff9ae1d00b820c9a6f6", + "sha256": "1rr33vxl3rihcygmd76ga4cg22kwfdld50firg0j5fgyg3kscj4f" } }, { @@ -11709,8 +11865,8 @@ "repo": "clojure-emacs/cider", "unstable": { "version": [ - 20221109, - 2212 + 20230218, + 915 ], "deps": [ "clojure-mode", @@ -11720,13 +11876,13 @@ "sesman", "spinner" ], - "commit": "5064287ba71c4c8ede169b0f561d707f4a365c55", - "sha256": "01r53aclh5wf70l6kpzmnx64jm6ixx6x9c390hbdvjbif6mp8xbv" + "commit": "1ed5163433c991c00ea83fdd4447e8daf4aeccbe", + "sha256": "1r8arjpzl12fzd5j27xdgvqk33srs0cl0nrp9lm54zhqzxc7gbw2" }, "stable": { "version": [ 1, - 5, + 6, 0 ], "deps": [ @@ -11737,8 +11893,8 @@ "sesman", "spinner" ], - "commit": "700ded1d6c245e01fca7f364db1561ad1e1bb595", - "sha256": "1ih902n8p3pl1apprprkyrlnrp2dxli86y5k09zahy9mglfz2z5n" + "commit": "80408364f8e6870d8f5a33e0e096b86f1a7ef144", + "sha256": "1a3xbfn1id8dcy3178kmdnzcvh7lq2pdwwg4axhncw6jq9hqiqja" } }, { @@ -11845,9 +12001,9 @@ "unstable": { "version": [ 20160622, - 1430 + 1431 ], - "commit": "8023b45ec60961bf4c3a3d8a564727c463ed09d1", + "commit": "a78a88ca9a66a82f069329a96e34b67478ae2d9b", "sha256": "06p6hz6jrnvnlbxdr1pjgf5wh4n34kf6al4589qg1s88r2lf86bl" }, "stable": { @@ -11917,20 +12073,20 @@ "repo": "guidoschmidt/circadian.el", "unstable": { "version": [ - 20181024, - 1256 + 20221223, + 1734 ], - "commit": "e0547c1779f2653dac09192951a0756ce2e2ea89", - "sha256": "120b6wr2b4dmgaz5y3vpc5f68nqm1lfkgwpcxwxncspds7qb987j" + "commit": "9959e4b9d2ed9920b668fc229aab1f5fa5bd8584", + "sha256": "1hydxhmcchaprfmp08xr6nlksz6y97jbf4mswj69bgdfjfbf22km" }, "stable": { "version": [ 0, 3, - 2 + 3 ], - "commit": "9894361dcd6ffb6d4629b4cbbabda2153699eb8e", - "sha256": "0wpsykmai3idz0bgfl07hwl9nr4x9sgprvqgw8jln4dz2wf5gdic" + "commit": "9959e4b9d2ed9920b668fc229aab1f5fa5bd8584", + "sha256": "1hydxhmcchaprfmp08xr6nlksz6y97jbf4mswj69bgdfjfbf22km" } }, { @@ -11941,14 +12097,14 @@ "repo": "emacs-circe/circe", "unstable": { "version": [ - 20221022, - 2222 + 20221126, + 1508 ], "deps": [ "cl-lib" ], - "commit": "d0bd8113c23affe4f7bd9e19c498cee99e436f0a", - "sha256": "11hy7izabnngmbly279lhylznrjw1fmpkxrxbrr6lx53ybck0knr" + "commit": "57fe189d7c0b98b9b1b5a59767cea1c7e2c22b13", + "sha256": "1hnfbzf4inx541mw1gnb5hxv6igdcwnlhpm8qs6z630appf3yxnc" }, "stable": { "version": [ @@ -12019,29 +12175,61 @@ "repo": "emacs-citar/citar", "unstable": { "version": [ - 20221030, - 1200 + 20230218, + 2016 ], "deps": [ "citeproc", "org", "parsebib" ], - "commit": "c37a4827d019eac76a297ebd2d6af04ffce42afb", - "sha256": "1zlw1na4i4gq9b1zdh4pzyvwrn2dzrjzx1a0541211i5c1h79xd9" + "commit": "5dac3d5bf287566f049b44465e415afb42f30ec3", + "sha256": "03ypp4kb6h0x2i3g22mq2vynybmd39qzfg0s31k9bx3dbxxf2j1b" }, "stable": { "version": [ 1, - 0 + 1 ], "deps": [ "citeproc", "org", "parsebib" ], - "commit": "9d7088c1fe82e9cfa508ead7ef7738c732556644", - "sha256": "1n69lkp7298gasm9hlbx9nhgp9ggh8w8ffyvi1rmbj96lcnpsyi9" + "commit": "a5c769011288d0b1656784931de6ba06e64b2dd1", + "sha256": "1d7qp580b9svgykpmcdyij8lja23b20sprc7653dbl4zj7ncxxry" + } + }, + { + "ename": "citar-denote", + "commit": "ebd380e47429788e990f8554adb3b8e146cc5685", + "sha256": "04vy8y8mhwnddjjv0wfcccflfgg83pb189qksm0jcgxh5wbkzv5n", + "fetcher": "github", + "repo": "pprevos/citar-denote", + "unstable": { + "version": [ + 20230211, + 528 + ], + "deps": [ + "citar", + "denote" + ], + "commit": "3f8082fa68effced61a364a1ced333ed4fe33060", + "sha256": "00zmhrj9hy84gq5vbjn25xmlax7ksfp7gghqv62rgl493vcvs5va" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "deps": [ + "citar", + "denote" + ], + "commit": "15b4ba4feae7659615a7478987831a681ae8b287", + "sha256": "1v8v01d6ywq20h4z7wniqqszgbz3n8wz4x7ca26cf52c1w11469z" } }, { @@ -12052,27 +12240,27 @@ "repo": "emacs-citar/citar", "unstable": { "version": [ - 20220724, - 2250 + 20230216, + 1954 ], "deps": [ "citar", "embark" ], - "commit": "8475c1fd2b8d2171b7c9dd4318aa67d09c62b820", - "sha256": "1sh0hxx2a983czpnpihpr9zhi0321g7riv98lk2knz06xhqai0cy" + "commit": "a5c769011288d0b1656784931de6ba06e64b2dd1", + "sha256": "1d7qp580b9svgykpmcdyij8lja23b20sprc7653dbl4zj7ncxxry" }, "stable": { "version": [ 1, - 0 + 1 ], "deps": [ "citar", "embark" ], - "commit": "9d7088c1fe82e9cfa508ead7ef7738c732556644", - "sha256": "1n69lkp7298gasm9hlbx9nhgp9ggh8w8ffyvi1rmbj96lcnpsyi9" + "commit": "a5c769011288d0b1656784931de6ba06e64b2dd1", + "sha256": "1d7qp580b9svgykpmcdyij8lja23b20sprc7653dbl4zj7ncxxry" } }, { @@ -12083,15 +12271,15 @@ "repo": "emacs-citar/citar-org-roam", "unstable": { "version": [ - 20220927, - 1834 + 20230211, + 117 ], "deps": [ "citar", "org-roam" ], - "commit": "27105d0a9578279560cd79cfad5871e7e603bc58", - "sha256": "192p4bfa49mj5iq70lazi828gzwd1z7dfmckg4xfmdsd58crygh3" + "commit": "0690a34c84f3f483c723a69cc54e6a141e199c99", + "sha256": "0k7ck0smvj57d1lvj5hx0x7m6x7hagkiqllipylaiixq3asd02bm" }, "stable": { "version": [ @@ -12114,8 +12302,8 @@ "repo": "andras-simonyi/citeproc-el", "unstable": { "version": [ - 20221105, - 1054 + 20230125, + 1818 ], "deps": [ "dash", @@ -12126,14 +12314,14 @@ "s", "string-inflection" ], - "commit": "69536c8776dea383951538fd197333bee766d7c7", - "sha256": "1x95hr3w8ck3dhhnpj4yfrqfrh3mmfld8lqaqpijwmgjgf2gfivh" + "commit": "2623043b2546ee09a4bd86641870ca86332c0bcf", + "sha256": "1f2bcshnccfbvbnkhnynkdpszrs4zb3z82hqrrdp9hf3ig3h5750" }, "stable": { "version": [ 0, 9, - 1 + 3 ], "deps": [ "dash", @@ -12144,8 +12332,8 @@ "s", "string-inflection" ], - "commit": "406bd9964f1ce531fc45beddcf9ccc44d3456129", - "sha256": "0rkwqn9pcimfcyq19wlrcij0kcjyhbwisla7vwbhjj8ang0bq9rm" + "commit": "121efe540303ded2ebf486281e6fd472966e7cbe", + "sha256": "0md8pfmd0v9ipnxj1q13vv81hl90wf4rm46czbk1fdzkyf9js08m" } }, { @@ -12194,11 +12382,11 @@ "repo": "universal-ctags/citre", "unstable": { "version": [ - 20221111, - 1230 + 20230217, + 1202 ], - "commit": "244501472ddf31c91cc374231849a05c86dfb1fb", - "sha256": "1051lqy1wbcmzdwmyqx0320mqrq64wrafk70dymyki2q9y291782" + "commit": "4626ada80fabea6b62935567acc1cb8dad607016", + "sha256": "1bs66lk094g1bgk09zamv184j1nl64z8hvwjvf4w28kbjpvnxvsn" }, "stable": { "version": [ @@ -12349,6 +12537,21 @@ "sha256": "1h7kmj53fqwfzam3ywz3yn4abl2n94v0lxnyv7x4qzwi2ggizc3l" } }, + { + "ename": "clean-kill-ring", + "commit": "a0df99a537f71b4b08bccdbc8272cc1cd7448c9e", + "sha256": "0kpjnaq6s4labn4avzih1xcsfrhr2ng6fvw0vk1d5fd8mjcfq3jg", + "fetcher": "github", + "repo": "NicholasBHubbard/clean-kill-ring.el", + "unstable": { + "version": [ + 20230115, + 2153 + ], + "commit": "d05fa7ee97e760d21d533261c7b63eecf223f612", + "sha256": "0s0r65byg66fq4q9jqral4m2d616sfxla5k75zrmyxx3h5152n4r" + } + }, { "ename": "clear-text", "commit": "d2ae86a3001587ba753fcd0ca5137cb65d38910d", @@ -12512,14 +12715,14 @@ "repo": "Fuco1/clippy.el", "unstable": { "version": [ - 20161028, - 1954 + 20230118, + 1924 ], "deps": [ "pos-tip" ], - "commit": "ad4b5dba4cede6d4b21533186303d3d3e9a2510f", - "sha256": "0rnqwzbr5hdap276ana0iz3lk2ih8kkj1m9cydavqqdrwzk4ldrm" + "commit": "85aec3129ff17f71ea4541cfadbb7b56b31a7474", + "sha256": "0zx45rlsj184v4gshnzpqzdmyl9g541z70jhhw0rj8im62pnnrbi" } }, { @@ -12590,8 +12793,8 @@ "repo": "clojure-emacs/clj-refactor.el", "unstable": { "version": [ - 20221023, - 1644 + 20230202, + 637 ], "deps": [ "cider", @@ -12604,8 +12807,8 @@ "seq", "yasnippet" ], - "commit": "8300d5cab861668f313fbbbb3e2926e3e5130e86", - "sha256": "15ya7hp5d2kwh1ig55d75vlghm1vsq99jh44i8q8v25vfmzjp7gp" + "commit": "b5abe655e572a6ecfed02bb8164b64716ef76b8e", + "sha256": "1kkkfb8ixyh3yca1rgdi636xizq7c07k174d243ys3826730wz9w" }, "stable": { "version": [ @@ -12737,11 +12940,11 @@ "repo": "erickgnavar/cloak-mode", "unstable": { "version": [ - 20221031, - 431 + 20230130, + 613 ], - "commit": "e182ec462f486bb84d66780c9d27051e6921f9c7", - "sha256": "19xwhiiyjmlcwamzg562x2gd5hj7csnmdzc969d137ira03v40qa" + "commit": "ca0896dfd0a0ee549150233ebd96aa0f65b56afb", + "sha256": "1ih51q5sc2gri2lyy2qi3w6jijr5khcr4whnv8g34v8xq6pyrxys" } }, { @@ -12855,14 +13058,14 @@ "repo": "p3r7/clojure-essential-ref", "unstable": { "version": [ - 20200619, - 1653 + 20221215, + 1427 ], "deps": [ "cider" ], - "commit": "554594dc7ebb976e45632b8738b103ad048bf879", - "sha256": "1qjbf3w2j074b2kvrn2jkhlgzrcjd2g84xii83gz7v5darlni92y" + "commit": "6741bf65cf9b9bc896ab1cc3c384573e8ffe5f96", + "sha256": "0dib6krb49gi253vs3zqh83r9s3wdmlvbqwcq7gq28dbjsbpljcn" }, "stable": { "version": [ @@ -12885,16 +13088,16 @@ "repo": "p3r7/clojure-essential-ref", "unstable": { "version": [ - 20200719, - 608 + 20221215, + 1427 ], "deps": [ "clojure-essential-ref", "dash", "nov" ], - "commit": "e05d61b96f6469a93f52015b7ad5deadf616139e", - "sha256": "118zkdx118p1mzgq1szschl40qmb2cb5vw9jb9fhpimqdrlq53md" + "commit": "6741bf65cf9b9bc896ab1cc3c384573e8ffe5f96", + "sha256": "0dib6krb49gi253vs3zqh83r9s3wdmlvbqwcq7gq28dbjsbpljcn" }, "stable": { "version": [ @@ -12919,20 +13122,20 @@ "repo": "clojure-emacs/clojure-mode", "unstable": { "version": [ - 20220928, - 557 + 20221214, + 915 ], - "commit": "414157c3e523e80cc44dca8f86f1853122ee5f6b", - "sha256": "1ldzbc7zrkqnkf3gm69q94ys4my984zps1gymw5sdx6gn9qc96iv" + "commit": "3453cd229b412227aaffd1dc2870fa8fa213c5b1", + "sha256": "0s09b9gbmjmk56jm9hcbk06zfa96kqhgx58d98w13yy01yx0pych" }, "stable": { "version": [ 5, - 15, - 1 + 16, + 0 ], - "commit": "ad322e989e56c10c05bb286e5b55a82b1e031d62", - "sha256": "12m3yjhy4q0x3ri4xxb9raqg9lmw4hk4jgn436d9zvsk4fr3h1nd" + "commit": "3453cd229b412227aaffd1dc2870fa8fa213c5b1", + "sha256": "0s09b9gbmjmk56jm9hcbk06zfa96kqhgx58d98w13yy01yx0pych" } }, { @@ -12943,26 +13146,26 @@ "repo": "clojure-emacs/clojure-mode", "unstable": { "version": [ - 20220715, - 1509 + 20221214, + 915 ], "deps": [ "clojure-mode" ], - "commit": "fee38d780f7d0b2a42a441e4d8bcfaa4fa672983", - "sha256": "1ck9d8jzs6m5qvg5bnx9i7d94icsfl4698p66vxsn3yqclhc8yzz" + "commit": "3453cd229b412227aaffd1dc2870fa8fa213c5b1", + "sha256": "0s09b9gbmjmk56jm9hcbk06zfa96kqhgx58d98w13yy01yx0pych" }, "stable": { "version": [ 5, - 15, - 1 + 16, + 0 ], "deps": [ "clojure-mode" ], - "commit": "ad322e989e56c10c05bb286e5b55a82b1e031d62", - "sha256": "12m3yjhy4q0x3ri4xxb9raqg9lmw4hk4jgn436d9zvsk4fr3h1nd" + "commit": "3453cd229b412227aaffd1dc2870fa8fa213c5b1", + "sha256": "0s09b9gbmjmk56jm9hcbk06zfa96kqhgx58d98w13yy01yx0pych" } }, { @@ -12999,8 +13202,8 @@ }, { "ename": "clojure-snippets", - "commit": "4898fc6746b30b0d0453b3b56d02479bfb0f70b9", - "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "13v1xhagyzqdmvi2j1rqdwn13sa5w4bx58b1l00p0g5clprn4fi6", "fetcher": "github", "repo": "mpenet/clojure-snippets", "unstable": { @@ -13029,8 +13232,8 @@ }, { "ename": "clomacs", - "commit": "345f9797e87e3f5f957c167a5e3d33d1e31b50a3", - "sha256": "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1gl3zxhi0nm4y5ykr1qjs6k9hyij8q565pckj5h9x3jn3wgya9f8", "fetcher": "github", "repo": "clojure-emacs/clomacs", "unstable": { @@ -13070,15 +13273,15 @@ "repo": "magit/closql", "unstable": { "version": [ - 20221017, - 952 + 20230212, + 2019 ], "deps": [ "compat", "emacsql-sqlite" ], - "commit": "463b0f4d4c3e66acd5d30c6572cc45eaecc25633", - "sha256": "0kzi6h41iyz2rhz64f671p7swjnqrg9swlmfm7hr03z3hsghpz3w" + "commit": "81a6fc88634536c791ffa90981a918f738c401ee", + "sha256": "1zq795mddh83lkzrlx27qxkkwxkmzbr04pf4sa54lisa9si2jply" }, "stable": { "version": [ @@ -13251,20 +13454,22 @@ "url": "https://gitlab.kitware.com/cmake/cmake.git", "unstable": { "version": [ - 20220823, - 1201 + 20230215, + 1434 ], - "commit": "5936d4f2adeec64e0ff748b2c6c34f0436b19a97", - "sha256": "1rjk2rhdg1wcga5iagaafghj15gy5h45aw0llkpxpnpvvwrh7g59" + "commit": "037975ef69a0e889f9c17e5e6e6fb87111dfd9df", + "sha256": "18gwgqr71rn2klfw7b1bcbsisbrsk40pr3x832k84x9wyx6vb0ip" }, "stable": { "version": [ 3, - 25, - 0 + 26, + 0, + -1, + 3 ], - "commit": "13e46189c7f3b39a26e9ca689bc029b7061d26a7", - "sha256": "0h6fvq4xbb717p0n67afhiwih1zgjphl0wcl3y1wg8bg2cv8zvll" + "commit": "037975ef69a0e889f9c17e5e6e6fb87111dfd9df", + "sha256": "18gwgqr71rn2klfw7b1bcbsisbrsk40pr3x832k84x9wyx6vb0ip" } }, { @@ -13332,20 +13537,20 @@ "repo": "tumashu/cnfonts", "unstable": { "version": [ - 20221019, - 159 + 20230216, + 803 ], - "commit": "102f808e500715e0cfb80905110d1f42aa7b6069", - "sha256": "1vim429ikgsh7zvh521af39xgmm6qb3fc3pwb51458fj010gf8pj" + "commit": "4b1bbf854009992858e86a19de49b8dc91e924eb", + "sha256": "1sab7az9rqzylvay5ai8k2rg656hqd0ga4qwsy2plnmn0fx9iv24" }, "stable": { "version": [ + 1, 0, - 9, - 1 + 0 ], - "commit": "cbe1ddd49e33b790a568c55351146aa5b909f173", - "sha256": "11d44lf0m0kbzq1mvyqkl4aprys0xqaarp08nij57xnynin1rynx" + "commit": "102f808e500715e0cfb80905110d1f42aa7b6069", + "sha256": "1vim429ikgsh7zvh521af39xgmm6qb3fc3pwb51458fj010gf8pj" } }, { @@ -13449,8 +13654,8 @@ "repo": "wandersoncferreira/code-review", "unstable": { "version": [ - 20221111, - 1212 + 20221206, + 113 ], "deps": [ "a", @@ -13464,8 +13669,8 @@ "transient", "uuidgen" ], - "commit": "182c1cc6ebced5c161aa37d01142dfab7eb8e7b3", - "sha256": "0yi6i1ayfax5c1qmxx9xx318wg2ajp98k6r2rb8fwr8183flc993" + "commit": "a8bb63b53f2a1fd31302c110e668ad7b5c871b34", + "sha256": "1ks1s3vq8rwc14863dk929r42x52p9dqcd3qyjbkc9km2nkc1z5n" }, "stable": { "version": [ @@ -13688,14 +13893,14 @@ "repo": "ankurdave/color-identifiers-mode", "unstable": { "version": [ - 20220629, - 1800 + 20230210, + 2047 ], "deps": [ "dash" ], - "commit": "caed36cc21b6a7f659dda8a3ace1a607daa30f6f", - "sha256": "1s8qi4mbgmyqmmgwa6qdc40dvls0jy51wgpz8mz4rh7msmwxf17v" + "commit": "9fd09481bbcdb35712d974d5bc3667f5a5900ddb", + "sha256": "0rj860ypsr9w9i1bq8wf8ssj54yxb3kp0q5wp0b67nh27qycywx5" }, "stable": { "version": [ @@ -14269,17 +14474,17 @@ }, { "ename": "company", - "commit": "7eadfd36ae9b7bd241c38d09a7203873538983fb", - "sha256": "1wxadzsf7vrnxj7zhnwrz0vva9zgr99s0lb677dllrj1zdryixwx", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0imik54s3y0xwr4l207rrwc4v77m0hmfvmvk0qx98mpn65g4l1v4", "fetcher": "github", "repo": "company-mode/company-mode", "unstable": { "version": [ - 20221007, - 2145 + 20230209, + 134 ], - "commit": "48fea7a905b3bcc6d97609316beced666da89b1f", - "sha256": "17w9irn5aaxadsm5smz5cm1dxy0xb1hh0dnhwqclq3y5llrb21lx" + "commit": "2ca3e29abf87392714bc2b26e50e1c0f4b9f4e2c", + "sha256": "1z73yn7jyjxm4lf3d3r65rb549w8npjdba6iaxqawf2a8hkwjgy2" }, "stable": { "version": [ @@ -14449,16 +14654,16 @@ "repo": "sebastiencs/company-box", "unstable": { "version": [ - 20220910, - 1354 + 20221230, + 1603 ], "deps": [ "company", "dash", "frame-local" ], - "commit": "79abd77f3357279c2726b74f8b20df27b71aa867", - "sha256": "0p60h0l62b1pdnc444j9nzya6c61dxwf8d6i76qh7h9bzzn6ikf4" + "commit": "766546b2668b5ef4eb4abbde632c9acd370c7788", + "sha256": "1ypk5lxgcmk4v0y2ch23267zg3acnafw7441a4zg26zvg68x7mx9" } }, { @@ -14519,8 +14724,8 @@ "repo": "cpitclaudel/company-coq", "unstable": { "version": [ - 20220314, - 526 + 20221130, + 536 ], "deps": [ "cl-lib", @@ -14529,8 +14734,8 @@ "dash", "yasnippet" ], - "commit": "a6e349e0131f676a885bd14c908fd26054b2df42", - "sha256": "1qws0a0ia039d6bv2sbjsdl1ry28y9jrv98qnp5jcm7jfb2jmvsp" + "commit": "5affe7a96a25df9101f9e44bac8a828d8292c2fa", + "sha256": "1i18w7byz0x9l7cka6cs7bk0d3wcy7r0gw34zz45np4r84arwsjd" }, "stable": { "version": [ @@ -14693,28 +14898,28 @@ "repo": "dunn/company-emoji", "unstable": { "version": [ - 20210427, - 2151 + 20221208, + 2344 ], "deps": [ "cl-lib", "company" ], - "commit": "90594eb58b20fb937cfd4e946efcc446ee630e6f", - "sha256": "08dx812vg92bkwp0ham40rv3x9648x7y5bmbvphcc71s9knfgxcz" + "commit": "9e2816ce9b5795bd0066f92d4f80d15ccf94ef36", + "sha256": "1prcjdqm4djp5nr93m2axddhhdmn1s0y157px9zsk7g5yi36dn6q" }, "stable": { "version": [ 2, - 6, - 1 + 7, + 0 ], "deps": [ "cl-lib", "company" ], - "commit": "4ba7dc60ba67f736e698a5fa0b754b866f36a646", - "sha256": "1rhf2hr345953mkn52i58aiq8j16ps2ckapd5f7jxmhkcpzxxfhk" + "commit": "9e2816ce9b5795bd0066f92d4f80d15ccf94ef36", + "sha256": "1prcjdqm4djp5nr93m2axddhhdmn1s0y157px9zsk7g5yi36dn6q" } }, { @@ -14725,16 +14930,16 @@ "repo": "jcs-elpa/company-emojify", "unstable": { "version": [ - 20221006, - 557 + 20221231, + 1708 ], "deps": [ "company", "emojify", "ht" ], - "commit": "6856bdb187bf6f8c31965058e4408827f6ae178f", - "sha256": "0751hs1gdmn5f2nv607lh7pn01xnpczkkvivqn1nl5n2l45s0i8i" + "commit": "89652ee1a5488fbbe7b73c03ac316b895bb3fc19", + "sha256": "1kfy1jqsh90393yj2wvp2ccr0mvr7idq39033058i90f7md7gsmi" }, "stable": { "version": [ @@ -14829,16 +15034,17 @@ "repo": "jcs-elpa/company-fuzzy", "unstable": { "version": [ - 20221025, - 1115 + 20221231, + 1708 ], "deps": [ "company", "ht", + "list-utils", "s" ], - "commit": "3c8c960b4e5341f6806cf43aa794c0798051222d", - "sha256": "04gfcsj9fr989xgm2gagb61iiq9jgx5l8xxixs4ps524a7igl21v" + "commit": "eff3b5429d7e8d0eb2d62fb352ae843fe1a99ac2", + "sha256": "05f2lfn5ivg3pp1avllfy8z5j6q7i9mb143p5299kqwlfk83fcq2" }, "stable": { "version": [ @@ -15119,15 +15325,15 @@ "repo": "yanghaoxie/company-manually", "unstable": { "version": [ - 20200709, - 913 + 20200721, + 1903 ], "deps": [ "company", "ivy" ], - "commit": "0b696c268fc7ba3ef70c1b2c9ebe5dad0f4ec4a0", - "sha256": "0lzz36ifwxb30h0s5ihy85fvjys2ghi8y6gg0w0sd3mwfz1zjyn5" + "commit": "b922318da821fc3cf1d3155f21d543ea8470c881", + "sha256": "1s2bv040gg22qzjca39r32cz3qhairnvppk9wdp1hl52i6by57v9" }, "stable": { "version": [ @@ -15151,27 +15357,28 @@ "repo": "vspinu/company-math", "unstable": { "version": [ - 20210731, - 2019 + 20221227, + 1329 ], "deps": [ "company", "math-symbol-lists" ], - "commit": "45778f5731c97a21a83e3b965cbde42018709afd", - "sha256": "0s3jnslsd2licgav26s0nawwhhs4yrmz9chl0ghkngplichnp9mk" + "commit": "3eb006874e309ff4076d947fcbd61bb6806aa508", + "sha256": "1pj10i7ml5d2spcmf8035ngcq5zc6rs3lqx09d0qj6bsghglr6j3" }, "stable": { "version": [ 1, - 4 + 5, + 1 ], "deps": [ "company", "math-symbol-lists" ], - "commit": "a796053590012e6a15c8b527b521ffc15d137bd0", - "sha256": "1y1fw926insgdl7ib9ynxjrxf3p6wfjkfxvf5vgdca7267cvcll1" + "commit": "3eb006874e309ff4076d947fcbd61bb6806aa508", + "sha256": "1pj10i7ml5d2spcmf8035ngcq5zc6rs3lqx09d0qj6bsghglr6j3" } }, { @@ -15182,15 +15389,15 @@ "repo": "sasanidas/maxima", "unstable": { "version": [ - 20210520, - 2034 + 20220531, + 1847 ], "deps": [ "company", "maxima", "seq" ], - "commit": "f92eafd716ae6e36665bbf027309477c2efa336d", + "commit": "1334f44725bd80a265de858d652f3fde4ae401fa", "sha256": "1milqql0p9gp4dn9phn4fw1izf37wizpirvmzh5s71rwzrr6a9ix" }, "stable": { @@ -15205,7 +15412,7 @@ "seq" ], "commit": "1334f44725bd80a265de858d652f3fde4ae401fa", - "sha256": "1h1lqrl3p9qgkicds8v44vdry19g53rya56hdj3cz5q8xj1nisn1" + "sha256": "1milqql0p9gp4dn9phn4fw1izf37wizpirvmzh5s71rwzrr6a9ix" } }, { @@ -15340,15 +15547,15 @@ "repo": "xenodium/company-org-block", "unstable": { "version": [ - 20220809, - 2027 + 20230115, + 1202 ], "deps": [ "company", "org" ], - "commit": "29a2edb35e18c2627dcfa0641852a55d9639263c", - "sha256": "14qvxypgc1cj6ijvkkybl7x5p00435v4rdaw7pvvlf58lc422492" + "commit": "aee601a2bfcc86d26e762eeb84e5e42573f8c5ca", + "sha256": "0zghjkny222wxkyr48njpwjkwk7gfrjm6n70drkwmjhhh88646fv" } }, { @@ -15501,28 +15708,28 @@ "repo": "tumashu/company-posframe", "unstable": { "version": [ - 20221118, - 824 + 20230104, + 1229 ], "deps": [ "company", "posframe" ], - "commit": "ab58972c2cebc5ecf68c4cdd140c3aed2c68f42b", - "sha256": "0nqcqs3ngxmb946mg11b2im9sycwdykghzbv3sp4aans8q62ig6k" + "commit": "18d6641bba72cba3c00018cee737ea8b454f64a8", + "sha256": "03kj8yxd4y9aw86b6y6z5l9y76q5gjyiyhi5120nx1a8cwbd9g4a" }, "stable": { "version": [ 0, - 5, + 7, 0 ], "deps": [ "company", "posframe" ], - "commit": "86428bf9ce50a14326f38942b9f1467dd5b483df", - "sha256": "05ays6xkqbxcfplvx7wfc2slflmwc3aw7vkixvabk0ilvisndvgm" + "commit": "18d6641bba72cba3c00018cee737ea8b454f64a8", + "sha256": "03kj8yxd4y9aw86b6y6z5l9y76q5gjyiyhi5120nx1a8cwbd9g4a" } }, { @@ -15533,27 +15740,27 @@ "repo": "radian-software/prescient.el", "unstable": { "version": [ - 20221112, - 344 + 20221216, + 112 ], "deps": [ "company", "prescient" ], - "commit": "c28bca2213efd2666b0328c29f2c26e9b603cc9a", - "sha256": "0156sbs4b535mcwm44qjr8lx48svmjvdqh8c8hr6d0l709f27yq3" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" }, "stable": { "version": [ 6, - 0 + 1 ], "deps": [ "company", "prescient" ], - "commit": "c28bca2213efd2666b0328c29f2c26e9b603cc9a", - "sha256": "0156sbs4b535mcwm44qjr8lx48svmjvdqh8c8hr6d0l709f27yq3" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" } }, { @@ -15583,15 +15790,15 @@ "repo": "company-mode/company-quickhelp", "unstable": { "version": [ - 20220825, - 1037 + 20221212, + 534 ], "deps": [ "company", "pos-tip" ], - "commit": "6660a1b380b9599af9ef1cc617168db83f24b9b7", - "sha256": "175zw6jnkr6cf3nl9gvyjj69pzv4w1p19gjid9dkhqy38wyslkr9" + "commit": "9505fb09d064581da142d75c139d48b5cf695bd5", + "sha256": "14sm431636k72pc9iz2kmxxrk0q0ijbwy4gnl0qxqh41p9pqm148" }, "stable": { "version": [ @@ -15609,10 +15816,10 @@ }, { "ename": "company-quickhelp-terminal", - "commit": "f5fa4121cd4e2a49adfd23929c73f385cf7d1264", - "sha256": "13pig4bkfhwvpak78v85dzmrv7hwqd3pz4s5y8cb7xa033i1v78s", + "commit": "ad9811a64dbb3196b5357be8ac31ca0fd165e5e8", + "sha256": "0hxdf6vwswq2ac3w43v801wp21rqd57bgqcj3jrqgkj330a5yxaj", "fetcher": "github", - "repo": "jcs-elpa/company-quickhelp-terminal", + "repo": "jcs-legacy/company-quickhelp-terminal", "unstable": { "version": [ 20220704, @@ -15753,29 +15960,30 @@ "repo": "Alexander-Miller/company-shell", "unstable": { "version": [ - 20221103, - 2107 + 20230106, + 1532 ], "deps": [ "cl-lib", "company", "dash" ], - "commit": "e55b9000192f82e96fdc0f7ca1e8a868e67762a8", - "sha256": "113h10n3yb3gb4qpmg1ji7fmzy912qcysq4c2v80gx4qqbn1qq5h" + "commit": "5f959a63a6e66eb0cbdac3168cad523a62cc2ccd", + "sha256": "0lrkvfg0z9gwfcj90yihanysg8icxpbqq3wqyb734bi5fpmgmzr4" }, "stable": { "version": [ 1, - 3 + 3, + 1 ], "deps": [ "cl-lib", "company", "dash" ], - "commit": "024c2172a0cc8f1b35f173e42fff5f2d938920fc", - "sha256": "06nfq2va9vwf5wiqdfrjziv3hjkj36w8p91bicfb92ggv1afg9ra" + "commit": "5f959a63a6e66eb0cbdac3168cad523a62cc2ccd", + "sha256": "0lrkvfg0z9gwfcj90yihanysg8icxpbqq3wqyb734bi5fpmgmzr4" } }, { @@ -15786,16 +15994,16 @@ "repo": "ethereum/emacs-solidity", "unstable": { "version": [ - 20181117, - 1518 + 20200113, + 1721 ], "deps": [ "cl-lib", "company", "solidity-mode" ], - "commit": "d6c48a1cb64d3c8a825dc0d06c839f2cacd4d289", - "sha256": "14v71xf3z60s1fhpsz8b3l1v4na2ds0ddcp41y412fnrg4scbrhr" + "commit": "93412f211fad7dfc3b02aa226856fc52b6a15c22", + "sha256": "06zqs7p22h1jkm3zs1i16wvch6rnzzb3m8d5r9r51clzpasf6zy8" }, "stable": { "version": [ @@ -15935,18 +16143,17 @@ "repo": "TommyX12/company-tabnine", "unstable": { "version": [ - 20210310, - 2247 + 20230216, + 817 ], "deps": [ "cl-lib", "company", "dash", - "s", - "unicode-escape" + "s" ], - "commit": "98e9e8b38b6ca289fbe265b0a7b62c7fe38ed0e2", - "sha256": "162ca70xwmdd8lsdawzpykd6kaqfljflaxy2nwjn8f89f80ih3fg" + "commit": "96d0c2c05450359ce90ee99a474991391988d2e6", + "sha256": "185c5s3ww3jdmahszmq7vfsyij9vf6jjjkq2a0y7jq45d9r61wzp" } }, { @@ -16230,17 +16437,15 @@ "repo": "emacs-php/composer.el", "unstable": { "version": [ - 20221111, - 1808 + 20221120, + 202 ], "deps": [ - "f", "php-runtime", - "s", "seq" ], - "commit": "6a6e3eb46b4ae380f9f56362d6525d6725fc1b0a", - "sha256": "0qf73cgy7jmchk8hvabg7v07wq0scfdm06vsbf1m2ds5zq8lcbnb" + "commit": "2299cd731205906350d615021f99a66d7a8905c2", + "sha256": "1s1wmvav83djcg6jgf5cjvwjm045y5fbwf0sqwgkfk8m4ka4473a" }, "stable": { "version": [ @@ -16266,14 +16471,14 @@ "repo": "daviderestivo/comware-router-mode", "unstable": { "version": [ - 20220108, - 2111 + 20230107, + 1624 ], "deps": [ "dash" ], - "commit": "cd8c74653c0e221e3dd1ca540496c4b4c7ee4617", - "sha256": "0k8i6b0z1y90z68qf8w00rkbr5znnvwkblqfrd7vfm407dz1b844" + "commit": "cc0c1937e02f84ca8182b2de3ce5cc0982308ab8", + "sha256": "0aig2bjfygk3zckfx361r0miz7v3gg0s9aln7m15vprc4xsryj39" } }, { @@ -16284,14 +16489,14 @@ "repo": "kiwanami/emacs-deferred", "unstable": { "version": [ - 20161229, - 330 + 20170601, + 435 ], "deps": [ "deferred" ], - "commit": "9668749635472a63e7a9282e2124325405199b79", - "sha256": "1ch5br9alvwcpijl9g8w5ypjrah29alpfpk4hjw23rwzyq5p4izq" + "commit": "d012a1ab50edcc2c44e3e49006f054dbff47cb6c", + "sha256": "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h" }, "stable": { "version": [ @@ -16314,8 +16519,8 @@ "repo": "necaris/conda.el", "unstable": { "version": [ - 20221107, - 1742 + 20230104, + 2059 ], "deps": [ "dash", @@ -16323,8 +16528,8 @@ "pythonic", "s" ], - "commit": "2af92fead0e24b9cae7d0c5b446177694fc8a77e", - "sha256": "1khb36k2pqd9ych73lxwbg6r7r1h7krcybb6gx0m8h6lj1wzmkrz" + "commit": "667968184e40afa8514ece090893a160ae16b258", + "sha256": "1f0avca4gglrrh7qphfqnb35l41qxr4s0v46dh51y774mbm5xfm8" }, "stable": { "version": [ @@ -16478,25 +16683,25 @@ "repo": "minad/consult", "unstable": { "version": [ - 20221117, - 807 + 20230218, + 1212 ], "deps": [ "compat" ], - "commit": "35b57c1996b0887d4940960f1cd7deb7a5f4a2d9", - "sha256": "13i6r3910w9i6zaawhxwmkrnck43qxl8j6acrqn6qjd9cyh2j8n5" + "commit": "ffaaf6da909dc9ff766e5a5f16eb265635aa6149", + "sha256": "16id9w0fiavr08g9lq5am0ary7ba7p900ilf4gnkizabgji0padi" }, "stable": { "version": [ 0, - 20 + 32 ], "deps": [ "compat" ], - "commit": "d5b328637255ad6e7da4190ca15f3da040bbb606", - "sha256": "1rm53sqfl8hnb1l1fr0s8kxgp03prc2ggywqs5ssiqx87vhyn70w" + "commit": "0759dd12bb2290480644a7ec34118f67718074ad", + "sha256": "00cgc3bzj37319ds027rpj60wfk0c10cgp5xish2g1cq5ny74q32" } }, { @@ -16529,6 +16734,38 @@ "sha256": "0f5m66xgmm306ifh794q65wm4wwyayfgvm9fn1kip7aj86n0snfh" } }, + { + "ename": "consult-codesearch", + "commit": "cfabc90cc2462f03126c367b482ff43658790e4d", + "sha256": "1zjfjwb2f97s4985hy2qx4i66nkk1zgnzhk4p6i9237scysdyfs0", + "fetcher": "github", + "repo": "youngker/consult-codesearch.el", + "unstable": { + "version": [ + 20230129, + 415 + ], + "deps": [ + "codesearch", + "consult" + ], + "commit": "7b666ab50d120b25272183d921d581e01e77789a", + "sha256": "08qrq565xpbwx4gc1ny2i6fw4i0pjzmfhr3fvaidcq9vsw8vwsc1" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "codesearch", + "consult" + ], + "commit": "7b666ab50d120b25272183d921d581e01e77789a", + "sha256": "08qrq565xpbwx4gc1ny2i6fw4i0pjzmfhr3fvaidcq9vsw8vwsc1" + } + }, { "ename": "consult-company", "commit": "4d458d8e66f2ad14af59ad238505dbc0729058c8", @@ -16606,16 +16843,16 @@ "repo": "mohkale/consult-eglot", "unstable": { "version": [ - 20220409, - 1238 + 20230213, + 1359 ], "deps": [ "consult", "eglot", "project" ], - "commit": "0da8801dd8435160ce1f62ad8066bd52e38f5cbd", - "sha256": "1qxk1npxbf8m3g9spikgdxcf6mzjx6cwy3f5vn6zz5ksh14xw3sd" + "commit": "6504ccd2b7555452c61cc24a45965f7e2a37c44d", + "sha256": "1ynx1hvlkp1npi5pbbh38dpj77i95nxhlll35hhqw1jbf9w4kygq" }, "stable": { "version": [ @@ -16640,15 +16877,15 @@ "repo": "minad/consult-flycheck", "unstable": { "version": [ - 20221109, - 842 + 20230212, + 26 ], "deps": [ "consult", "flycheck" ], - "commit": "7a10be316d728d3384fa25574a30857c53fb3655", - "sha256": "1xg46wynfabk4pd7z7lk7d8x8rwlqk8dxjg4aki5dv6il1swg4cs" + "commit": "c371996c571b7139ef4d9a8db142bf37a7ee826b", + "sha256": "0i8ihvj64vdgf4lrna09nys65srpg87fg3y45qpg89g6962m0wr8" }, "stable": { "version": [ @@ -16713,6 +16950,56 @@ "sha256": "1zrxigf7bnx6l9lv2xvnn3ba6c9dndijw1vlnli56cv215i0r4f6" } }, + { + "ename": "consult-git-log-grep", + "commit": "331c40402b02dd11d84f76b041728c6a7556aa8a", + "sha256": "1q8sy39a5jh3abbzxp1h9q59zhbfyffff3mcw9wi491gkacx4p8m", + "fetcher": "github", + "repo": "ghosty141/consult-git-log-grep", + "unstable": { + "version": [ + 20230204, + 1753 + ], + "deps": [ + "consult" + ], + "commit": "30dfcad5745a6b9882d94fec75d38c345a1eff89", + "sha256": "144sz49k1jqbfmyg76pmmi9j5c77pfzn6mxamkl5vkvxqcs8z3ai" + } + }, + { + "ename": "consult-hatena-bookmark", + "commit": "7a14748b58bba3d89324fd3e3ed7e50963fffa52", + "sha256": "1km2wqy8jard8017a5qahrr5ghxgl0xshbycggfxdd2z6n6pxbyg", + "fetcher": "github", + "repo": "Nyoho/consult-hatena-bookmark", + "unstable": { + "version": [ + 20221125, + 109 + ], + "deps": [ + "async-await", + "consult" + ], + "commit": "b85484b11705ebd896878d3ac7fdb12bc8c9637a", + "sha256": "1xvi28wvagcabk1q6ckw4f97knm59rl86jd3pndz2ljv842rzbix" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "async-await", + "consult" + ], + "commit": "b85484b11705ebd896878d3ac7fdb12bc8c9637a", + "sha256": "1xvi28wvagcabk1q6ckw4f97knm59rl86jd3pndz2ljv842rzbix" + } + }, { "ename": "consult-ls-git", "commit": "af90413953b4b6a4d6c1b9919835703035b565d7", @@ -16721,14 +17008,14 @@ "repo": "rcj/consult-ls-git", "unstable": { "version": [ - 20220501, - 1823 + 20230120, + 1500 ], "deps": [ "consult" ], - "commit": "f2398b354994e583ad22af324a129cf94d06009e", - "sha256": "1brvhnlw72vhxjf6d984pjf5sq6l7d6vpnhzq2swp3zz4a5sfqvx" + "commit": "7ba583abc16f70c497d038bfcbddbadd6894bd3d", + "sha256": "15v025rjd15rr0zm1m3vjw9q1hfvfaq1yxknpba782if7fa7j2gg" } }, { @@ -16739,16 +17026,16 @@ "repo": "gagbo/consult-lsp", "unstable": { "version": [ - 20221102, - 844 + 20230209, + 714 ], "deps": [ "consult", "f", "lsp-mode" ], - "commit": "f6fff70edb3a27726f9c61d3d81849df85f7ccbe", - "sha256": "0jfwnzjpbk9bhrr7yifv650cq2i4z3j4dzw5kc34j192d05b90q7" + "commit": "f8db3252c0daa41225ba4ed1c0d178b281cd3e90", + "sha256": "0hbavrwxa8mhgijh0wn517fns07ng84q6vya9bvblcx8pq9qw6z0" }, "stable": { "version": [ @@ -16772,16 +17059,16 @@ "repo": "mclear-tools/consult-notes", "unstable": { "version": [ - 20221108, - 1835 + 20230112, + 312 ], "deps": [ "consult", "dash", "s" ], - "commit": "92f54a5fe345d390a11acf9008661fe73ae28539", - "sha256": "0rc5cj6x4basnlvrndnwph0bk6drk07mh8chhrrh4pqlw9nv089f" + "commit": "4d92996f676cecfebea6519dadf8cf185621a18a", + "sha256": "0jkvv975ydcrr9k390zllrnbwzb6g0mnkjzvcajzwkhpayi8i0ka" } }, { @@ -16792,27 +17079,28 @@ "repo": "jao/consult-notmuch", "unstable": { "version": [ - 20220929, - 2111 + 20221216, + 1701 ], "deps": [ "consult", "notmuch" ], - "commit": "29e9a3d0d4ed2e8bcefbf009103f7e5665b6c260", - "sha256": "18r47cj89qli534irah3lwwzsnik5bcf61clnrkhafqv9y51m67z" + "commit": "d0d4129d45ccceddaeeaa3631eb42d5dd09a758b", + "sha256": "0gcd69i99prnskh1na7clydqgh1y9rbzkdc6dy9zmin9hfdrw1yd" }, "stable": { "version": [ 0, - 8 + 8, + 1 ], "deps": [ "consult", "notmuch" ], - "commit": "29e9a3d0d4ed2e8bcefbf009103f7e5665b6c260", - "sha256": "18r47cj89qli534irah3lwwzsnik5bcf61clnrkhafqv9y51m67z" + "commit": "d0d4129d45ccceddaeeaa3631eb42d5dd09a758b", + "sha256": "0gcd69i99prnskh1na7clydqgh1y9rbzkdc6dy9zmin9hfdrw1yd" } }, { @@ -16823,15 +17111,15 @@ "repo": "jgru/consult-org-roam", "unstable": { "version": [ - 20221119, - 811 + 20230209, + 833 ], "deps": [ "consult", "org-roam" ], - "commit": "4f5e77d36fb8256818df9042ee699954566d81d5", - "sha256": "06xd014f03z8mzg2a7gln2bhv260rgq4zpcwxmkwn6kg5kcn5x0l" + "commit": "8f9f122627a6b4e1613401b06d707e3efdb3c2d0", + "sha256": "1wni3lsjlkhs76wx27np74qhs3k8hwq98yn6vfnkb9h4dg7d8ll0" } }, { @@ -17047,14 +17335,14 @@ "repo": "liuyinz/emacs-conventional-changelog", "unstable": { "version": [ - 20211212, - 1158 + 20230101, + 1656 ], "deps": [ "transient" ], - "commit": "40c2ee58364422b776e81dc153918205bfbeda86", - "sha256": "1zxs0sgrdhzlfixahss4m3a7jx2qdkaccqkg9jbyf4vsdm17im48" + "commit": "56f0e134f0edc1964965575dea259b186d34155a", + "sha256": "0jhn41p0fxg14c6jhi4kcfv3ws1pv1kkjx1glq26w854gzmf7z1q" }, "stable": { "version": [ @@ -17238,14 +17526,14 @@ "repo": "galeo/corfu-doc", "unstable": { "version": [ - 20220621, - 1554 + 20221128, + 1533 ], "deps": [ "corfu" ], - "commit": "da931367802d01e87e1e496ba5b51aa9126a705d", - "sha256": "08ql4fi06w1v4f2xx24ajym513pi8pzxhd7y5zwrnk0kq2p8dr4p" + "commit": "0e6125cd042506a048feb7b6446a5653eccfcff5", + "sha256": "1cpx9flv6m10h1rganjmbccc289c4hzss9kd9mw6krsxiik65xl7" } }, { @@ -17256,15 +17544,27 @@ "repo": "radian-software/prescient.el", "unstable": { "version": [ - 20221118, - 1427 + 20221216, + 112 ], "deps": [ "corfu", "prescient" ], - "commit": "680fefa4601586dd87d549d33f5ae6fda3212c35", - "sha256": "16k34jp07snzknyp2lg0g6vsb7pk96s0fplb9hdjq8w3n4kyirb1" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" + }, + "stable": { + "version": [ + 6, + 1 + ], + "deps": [ + "corfu", + "prescient" + ], + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" } }, { @@ -17276,10 +17576,10 @@ "unstable": { "version": [ 20160502, - 701 + 948 ], - "commit": "8813288de240956641b37deafaaa4811548246df", - "sha256": "06l2imhxm6dijkqlhk9s0vsa5a0ghybpy7qk7wpkgv0dlm3k3w7n" + "commit": "e7ab6aa118e46b93d4933d1364bc273f57cd6911", + "sha256": "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7" }, "stable": { "version": [ @@ -17396,14 +17696,14 @@ "repo": "ideasman42/emacs-counsel-at-point", "unstable": { "version": [ - 20220731, - 2354 + 20230116, + 951 ], "deps": [ "counsel" ], - "commit": "65a7244ad6342ac79c612fbc6e5ca54759ebaf03", - "sha256": "1vwn977gjjvk1jhcyzncv2ycr6dbyh64if0f2f87bwl1yf7hsf41" + "commit": "a84cc0e409325d051208c43dfcabcebaa0d98ba3", + "sha256": "1zycq0hvvi466rzfk240jzsi3gydgd8pgilsa49qnmrqf19fhb51" } }, { @@ -17514,16 +17814,16 @@ "repo": "dash-docs-el/counsel-dash", "unstable": { "version": [ - 20200103, - 1411 + 20221217, + 419 ], "deps": [ "cl-lib", "counsel", "dash-docs" ], - "commit": "370d5f6f14b5294d0eb717f7b2a6a8e93df1ed24", - "sha256": "1fn38vbz46ijarjvhgw7iy7dj9s2a2miy95fyy9f8b5sj8nrdfvz" + "commit": "04117bffc8badd85c9f4fdb17648fd56e83fe832", + "sha256": "1miajhrd4x15jvcw60rwndp427his1012009ims70ajc7xn1ggsx" }, "stable": { "version": [ @@ -17583,14 +17883,14 @@ "repo": "redguardtoo/counsel-etags", "unstable": { "version": [ - 20220825, - 259 + 20221213, + 209 ], "deps": [ "counsel" ], - "commit": "e38b12771183fd43fb94c9fa562b20b5efeefc1b", - "sha256": "0r4mq4kxbj2kfg3nwni0canp1nvzl7j9jvpi523bj0apfrab1p9v" + "commit": "a65c03d2a82bae2571993b77b980f2f27c138ecb", + "sha256": "05wwy9rphwm753xxiab25dl3v9f4h59g9zydzpnrh7wpi3yldi68" }, "stable": { "version": [ @@ -17866,8 +18166,8 @@ }, { "ename": "counsel-test", - "commit": "5b21ac3eaacfff27ca4def04f6cf7b4888b7fcf4", - "sha256": "0604kmj0ydfps2si0wvgjw41x2ds7dmsd53x50219f65d4w44nqr", + "commit": "5d8c2c6662dc3cd0140bc039a1dca9c3e38673f4", + "sha256": "04zn7jds36dwhwqaxfqzc54i63ircvihj83ap3g3n1kzs7nr70bb", "fetcher": "github", "repo": "xmagpie/counsel-test", "unstable": { @@ -17891,26 +18191,26 @@ "repo": "masasam/emacs-counsel-tramp", "unstable": { "version": [ - 20210518, - 1153 + 20221228, + 1403 ], "deps": [ "counsel" ], - "commit": "76719eebb791920272c69e75e234f05a815bb5c2", - "sha256": "0pcymxi54b2jmr2k2cibak0nmcnr42spjwsavwr8598kgvkfk488" + "commit": "f63bf0bc765480676094102013218254ea17727f", + "sha256": "1ni6yhxzg945akjmqww6h31jqxydgjpf16i8g9jar3wa5wx6jnpl" }, "stable": { "version": [ 0, 7, - 5 + 6 ], "deps": [ "counsel" ], - "commit": "da451df4c5f0ba32056ec600e8eb6a2c7ca4df08", - "sha256": "18qlwyjqxap2qfbz14ma6yqp4p3v4q2y8idc355s4szjdd2as2lr" + "commit": "aa5acfc95cdfcfc2005bee31d8003fd4ae1d319c", + "sha256": "02dhchmyaqv6855mafjxizzgpl32rmnwdmw0nbm6rkckr13cgjl1" } }, { @@ -18447,14 +18747,14 @@ "repo": "bbatsov/crux", "unstable": { "version": [ - 20210811, - 436 + 20221121, + 859 ], "deps": [ "seq" ], - "commit": "6bfd212a7f7ae32e455802fde1f9e3f4fba932a0", - "sha256": "01727k1fxiq1v2q6slp23gc98yqhflp6dcy3yr0yn9ibqx3pi93q" + "commit": "f8789f67a9d2e1eb31a0e4531aec9bb6d6ec1282", + "sha256": "0bsyrp0xmsi1vdpgpx6n3vfrmh75bpp8ncync8srzx6clbl71ch4" }, "stable": { "version": [ @@ -18558,20 +18858,20 @@ "repo": "emacs-csharp/csharp-mode", "unstable": { "version": [ - 20220819, - 1351 + 20221126, + 2005 ], - "commit": "6e9d1f6b9900d3b8aa4106abf84a89311dfed85f", - "sha256": "1shyv3lkilbglqlg0mzaz9aslx3xg9gjp63phdvhsgafvwzpi254" + "commit": "d8b058c9e9d0429ea7e81d121ce19b064bd7e0f5", + "sha256": "1d0pf236xi4c7fazv67a53yrac24lilnkzp9pb55xm88gig7rfmz" }, "stable": { "version": [ - 1, - 1, - 1 + 2, + 0, + 0 ], - "commit": "9917e1b97d6a374c8043124817142ea3419a649b", - "sha256": "0wfd4jdjsq8qp6pavf25y87dxvlnsqapfi4c4m3xj24baalr2dpq" + "commit": "d8b058c9e9d0429ea7e81d121ce19b064bd7e0f5", + "sha256": "1d0pf236xi4c7fazv67a53yrac24lilnkzp9pb55xm88gig7rfmz" } }, { @@ -18582,8 +18882,8 @@ "repo": "hlolli/csound-mode", "unstable": { "version": [ - 20221002, - 1512 + 20230217, + 853 ], "deps": [ "dash", @@ -18591,8 +18891,8 @@ "multi", "shut-up" ], - "commit": "ceb29955f36e01b02effc66a5b13a23224e41b67", - "sha256": "0q7vmnw1liv2jcmjynvwm54j2wsmvsv7fak1bxib13l8jhvwn88z" + "commit": "a4dceb1febd3e7587e89158caf207d5da5624f51", + "sha256": "06z44mv9sg6nsi39yh9363nvzifj06ssdiimc79r0s1sd2fc7mb0" }, "stable": { "version": [ @@ -18931,11 +19231,11 @@ "repo": "cubicle-model-checker/cubicle", "unstable": { "version": [ - 20171009, - 1957 + 20221031, + 2122 ], - "commit": "9d108b900e0123236b4991c2d06b5061f34feee8", - "sha256": "1n3x6m19swkq07zah4hh0ni6gx864bq1w0km06nq33x8189zczrr" + "commit": "7679c8452051ed5c89f891c72c6ada76757fc935", + "sha256": "1lkf849g6zqkshzj2845n1w58q1bxgqb85lh6w7ssi1m653mxhd1" }, "stable": { "version": [ @@ -19233,14 +19533,14 @@ "repo": "ideasman42/emacs-cycle-at-point", "unstable": { "version": [ - 20221017, - 149 + 20230116, + 951 ], "deps": [ "recomplete" ], - "commit": "ef2c2dbbf6c7682d9a80eebc2ae721d5d93b1698", - "sha256": "0j6gphh61snmg8vhbs8rynw08llh67s91hzy1bcyqccn8wcwbqrx" + "commit": "3c1471362d6cb947daf6373e8def8169c21222fc", + "sha256": "0hc6x4s4sr8pi5w3ywfzfhp0m6mf0bxdb8j894r76mmksysmrak2" } }, { @@ -19317,17 +19617,17 @@ }, { "ename": "cython-mode", - "commit": "be9bfabe3f79153cb859efc7c3051db244a63879", - "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "commit": "85c1dbaebf1f21d2ac66633b73112e96cd0b2128", + "sha256": "00yi8crjvx71j5zcdd23g73rnf13qna0nk5zbwzga3lfhqrmlfn2", "fetcher": "github", - "repo": "cython/cython", + "repo": "cython/emacs-cython-mode", "unstable": { "version": [ - 20211111, - 1407 + 20221130, + 1257 ], - "commit": "b75af38ce5c309cd84c1835220932e53e9a9adb6", - "sha256": "1ry8axsxd8n55vvq015s6285fhjq03rd927m3yg74850xaa8grq7" + "commit": "3e4790559d3168fe992cf2aa62f01423038cedb5", + "sha256": "03kilbl9mp1hs7mpqb6vs6sbmhplpm4qg93sn1vhn34q710iccb0" }, "stable": { "version": [ @@ -19362,11 +19662,11 @@ "repo": "Emacs-D-Mode-Maintainers/Emacs-D-Mode", "unstable": { "version": [ - 20220601, - 1949 + 20220602, + 649 ], - "commit": "183af81eb534280d844405e8e7a6cc1deb3e6378", - "sha256": "19dwh92as70p7iv88li6h26mada115lcrmimxhrf6573082264dd" + "commit": "024aca97d07e72bf3500fb6bf0cdf50c4992a741", + "sha256": "0mwd412d2kha8avkyhvvkh8r7an859xk18f7phgx7kj989pr3xkr" }, "stable": { "version": [ @@ -19378,6 +19678,30 @@ "sha256": "0mwd412d2kha8avkyhvvkh8r7an859xk18f7phgx7kj989pr3xkr" } }, + { + "ename": "d2-mode", + "commit": "79abbec271b1a148ab2c4a45e8a44eb776c60e35", + "sha256": "09gvyszpycar32j4pyq8nwkwmx0x225pvy8my12vym3jlw2rl19b", + "fetcher": "github", + "repo": "andorsk/d2-mode", + "unstable": { + "version": [ + 20230210, + 1130 + ], + "commit": "cbe7b16141bd80fe4344f0403e61fd7ee4e0fd89", + "sha256": "1mdiafxbfz31blp7c86m6sp0dmn4yhnbs2mhzh75mczsg0gzqc4v" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "ec3faea2deff52c2265e41a8a0674bffe2b7ab46", + "sha256": "0b551lji4mky1jgczg7mq8g12yy1d1r400p7m5nz4z8kwq7g0mhb" + } + }, { "ename": "dactyl-mode", "commit": "72d503380511d2d6580b9522b6e0bd2d800bdebe", @@ -19478,11 +19802,11 @@ "repo": "rails-to-cosmos/danneskjold-theme", "unstable": { "version": [ - 20220316, - 1101 + 20221121, + 634 ], - "commit": "054c0b9bc9cefb53a4065096e66707d20885c461", - "sha256": "1bw9ng01d0y6ri67w42z8ql37kxxra59v4cnra94s00abc212lja" + "commit": "39ff00f8a40bcab96afd9450195124b57becd625", + "sha256": "0iqljbvl4rliaj2lkmwl7ls94kx5ig6gi9c8gddk8l61b7chrqyl" } }, { @@ -19534,8 +19858,8 @@ "repo": "emacs-lsp/dap-mode", "unstable": { "version": [ - 20221118, - 1707 + 20230212, + 1152 ], "deps": [ "bui", @@ -19548,8 +19872,8 @@ "posframe", "s" ], - "commit": "461f15f920c37ed06a53c1082287c5801a317b52", - "sha256": "1ny1agamc5iyh340gwrf59qyl9sp58nn62p6y8z6jsrxl08z4ipy" + "commit": "39bfaf1a3400b3ca4e9755f4d15e33abb0dda2c4", + "sha256": "0c256wir3zwy7fpj16sxlcpm018hvmifkbxrjd145cpdn6qyfdfm" }, "stable": { "version": [ @@ -19854,14 +20178,14 @@ "repo": "magnars/dash.el", "unstable": { "version": [ - 20210210, - 1449 + 20210826, + 1149 ], "deps": [ "dash" ], - "commit": "0e975782086020aa12863fdb658d6a3cc748a10c", - "sha256": "190v264wj5cdm109ippzx2vc64hvfzmh5nbx4f2w09hn0hwfqipm" + "commit": "39d067b9fbb2db65fc7a6938bfb21489ad990cb4", + "sha256": "0z6f8y1m9amhg427iz1d4xcyr6n0kj5w7kmiz134p320ixsdnzd8" }, "stable": { "version": [ @@ -19884,11 +20208,11 @@ "repo": "emacs-dashboard/emacs-dashboard", "unstable": { "version": [ - 20221118, - 1318 + 20230219, + 2200 ], - "commit": "92106c5a39e703bf18efa67a9c7dc92260845788", - "sha256": "0vfkm1x8x0azifyafnj7pg6lalvhrhhsizwm9vjb500fkjjhkazr" + "commit": "482595b0eaf2498246197754713fab282bd0cae9", + "sha256": "1rprwvpkpqjbid49gi1y83xf47ap7iajnv0xlb5n38wfak76z7ga" }, "stable": { "version": [ @@ -19930,14 +20254,14 @@ "repo": "emacs-dashboard/dashboard-ls", "unstable": { "version": [ - 20220704, - 633 + 20221231, + 1629 ], "deps": [ "dashboard" ], - "commit": "5ff42002b501cfb9b76b975d37c7a899f013292c", - "sha256": "0v3vcdg45dq1nwspyr8r1xdh30pzb2lqy24x7jhn4v2j5apxywnk" + "commit": "b24e0bcb87e20ffcc71efb83a97f9516255fa8e4", + "sha256": "0rmdfm2smk4cji9dljnrxlmpvx2pv96lljdlwqblk5z3klm0wjkx" }, "stable": { "version": [ @@ -20016,15 +20340,15 @@ "unstable": { "version": [ 20141129, - 105 + 1539 ], "deps": [ "dash", "log4e", "yaxception" ], - "commit": "3b0af9c49293fc4346078ed2e13a6ebf41bbe54e", - "sha256": "1skvkbbqvwbw58ahdbf2m1z7s0kfi5v7c0lavc9ifrs91pqpqx9z" + "commit": "11c9170d1f7b343233f7716d4c0a62be024c1654", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w" }, "stable": { "version": [ @@ -20058,8 +20382,8 @@ }, { "ename": "datetime", - "commit": "91ef4352603cc69930ab3d63f0a90eee63f5f328", - "sha256": "0c000fnqg936dhjw5qij4lydzllw1x1jgnyy960zh6r61pk062xj", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1qqfs13ja60hnppwcfv5h58zd9idd3dl91ycycnx0igy7xlfizid", "fetcher": "github", "repo": "doublep/datetime", "unstable": { @@ -20103,8 +20427,8 @@ }, { "ename": "datomic-snippets", - "commit": "4da8ec133ec5e1204966c1b12c9bc0ca1b50d643", - "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0wwh3hgz2iilcs7460knwmspn3k8pwlfplbavhs4rx0shg7xvf20", "fetcher": "github", "repo": "magnars/datomic-snippets", "unstable": { @@ -20123,8 +20447,8 @@ }, { "ename": "dayone", - "commit": "a7c34ae046b75994cf04d16642bf28d4645d1821", - "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1zkdn9j88ankb4cdaql9vip93illwn1mhpj2b9zlvmdpfqi048p0", "fetcher": "github", "repo": "mori-dev/emacs-dayone", "unstable": { @@ -20226,8 +20550,8 @@ }, { "ename": "ddskk", - "commit": "570bde6b4b89eb74eaf47dda64004cd575f9d953", - "sha256": "1bgjpr7dikl360famf7fnd610z8wgj00pg3s5z632wra0yg331yy", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0gw3k5hw2ndhjjvf86cpz8p2ww1pq3dg6xk2g4prnq5csv2dzhgh", "fetcher": "github", "repo": "skk-dev/ddskk", "unstable": { @@ -20282,16 +20606,16 @@ "repo": "Wilfred/deadgrep", "unstable": { "version": [ - 20221101, - 2055 + 20230201, + 2329 ], "deps": [ "dash", "s", "spinner" ], - "commit": "f687ca31f8d3bd8ebf05165b080b50ba724ce9bf", - "sha256": "0xvzchpwmiznfbrjqi5v3kxz625n117j4aa6ix8r6s9fhk8bm5j0" + "commit": "0d3e0725a7fe605978692076ab1d8f1870d8a269", + "sha256": "07n6f4axckxvl59ccmfsbzcn1qkaxw145274bs4izscc9x27ss07" }, "stable": { "version": [ @@ -20338,14 +20662,14 @@ "repo": "alezost/debpaste.el", "unstable": { "version": [ - 20160113, - 2347 + 20161214, + 2023 ], "deps": [ "xml-rpc" ], - "commit": "038f0ff7824f4e3dd455e2232eeca70fa8abcec5", - "sha256": "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb" + "commit": "6f2a400665062468ebd03a2ce1de2a73d9084958", + "sha256": "1wi70r56pd5z0x4dp4m58p9asq03j74kdm4fi9vai83vsl2z9amq" }, "stable": { "version": [ @@ -20384,10 +20708,10 @@ "unstable": { "version": [ 20220718, - 1352 + 1357 ], - "commit": "7bd79983805a91fff00cfb9bc96df8cc98e358d3", - "sha256": "1pqs47xackh8vf7rsrx4vck5li8c26jqfh636if5dzk187jraj9a" + "commit": "cc67cd24791accd17a2656512d863e24ca3fd578", + "sha256": "0i28pgqw3rv4ak1rrf8zv5cbqil7gmdaycyir85lmry4axhcbmsc" }, "stable": { "version": [ @@ -20489,11 +20813,11 @@ "repo": "ideasman42/emacs-default-font-presets", "unstable": { "version": [ - 20220731, - 2219 + 20230116, + 951 ], - "commit": "80380aa053c78b7126275e269e80d8988ba3f1e3", - "sha256": "07bvlb7n8gryjc205bfpx7k0liibx4cakv9aisc5nfifxqygmv1n" + "commit": "d52a31ba0860188ab27c58d1a3e2de62346700d5", + "sha256": "168rbyi3f5gp68qmlz4j57ly9f67wvfmjsw0r067k2vlgswqxcmq" } }, { @@ -20552,7 +20876,7 @@ "unstable": { "version": [ 20220713, - 744 + 750 ], "deps": [ "define-word", @@ -20563,8 +20887,8 @@ "s", "wiki-summary" ], - "commit": "82a3813097774289d68199fb47662af9f90f1741", - "sha256": "1gxvm99579lr91fc9sp145c1x0arh4i84libqz5xk7n8knlphbky" + "commit": "de026f399d5b7fa9286f7733b2e3416c6f234372", + "sha256": "1dhf64sb0ja5bs7zfbzkwk40ccqmb35kv3cdhshlmdf9d9fj9jv0" }, "stable": { "version": [ @@ -20585,6 +20909,21 @@ "sha256": "1dhf64sb0ja5bs7zfbzkwk40ccqmb35kv3cdhshlmdf9d9fj9jv0" } }, + { + "ename": "define-scratch", + "commit": "668ea73da74aad4cf024995850314d99fe2d0c5b", + "sha256": "1crphgs7rmkpaa2fl8mn2b62sv56pz6dx0xy5qbjs2gpy6rcmsbf", + "fetcher": "github", + "repo": "lassik/emacs-define-scratch", + "unstable": { + "version": [ + 20221220, + 946 + ], + "commit": "26cf11f801c2b5df0fbd56d2c4f7ac41b3ccd1c6", + "sha256": "1lanr3q1fbw1ivsssnykskviwnnpah2lpj9q32brgf1vqmm1z7g8" + } + }, { "ename": "define-word", "commit": "e318b30d8b2b89981f4b89d78e5a46e77d3de412", @@ -20756,20 +21095,20 @@ "repo": "rclarey/deno-emacs", "unstable": { "version": [ - 20200520, - 1838 + 20230117, + 1117 ], - "commit": "c375eae3e046d1487a45203511a6870e9dd5d2da", - "sha256": "10q7g9vdi0jwb2b28mdmb5lrhdk5h9ybl5si2xi1m6j7vhh1bi9l" + "commit": "6378966f448a3b9b5ae98af58cd13a031bd26702", + "sha256": "0qc8y4z7z9x5ig71jxjsh3pnar8kgm73anxg7p0d31g1ndf62jqj" }, "stable": { "version": [ 0, - 1, - 1 + 2, + 0 ], - "commit": "ccae334361b9f83b687f040bcdfdc2a58c78059f", - "sha256": "1fm2ym36gv4p4i27hln706dnwr6rvrkkfgggbcz9rqfbphrsfqyx" + "commit": "6378966f448a3b9b5ae98af58cd13a031bd26702", + "sha256": "0qc8y4z7z9x5ig71jxjsh3pnar8kgm73anxg7p0d31g1ndf62jqj" } }, { @@ -20865,11 +21204,11 @@ "repo": "DamienCassou/desktop-environment", "unstable": { "version": [ - 20220425, - 1834 + 20230118, + 820 ], - "commit": "2863dc3d66aed9052c8af39cc8c8c264be300560", - "sha256": "1cn17igd9dwbqrds7k3p8lkfg4gq5vh6rqkmmjyagnaklj793van" + "commit": "3b1fe3816ffaef16d210939dc74bd19e0024ff64", + "sha256": "06zkgm638gy3cpp5b40cjvws09lkyqdsqxjpj2yscdrmw45r623h" }, "stable": { "version": [ @@ -20936,20 +21275,20 @@ "repo": "niklaseklund/detached.el", "unstable": { "version": [ - 20221118, - 1226 + 20221129, + 1430 ], - "commit": "8c7a2e1129b254946d86a7b7ae1c8378afab7b69", - "sha256": "0fcvx4x9yzzl3qac8gh565jzb52w9j2xdbiw60xyqdxihljpqv6m" + "commit": "6b64d4d8064cee781e071e825857b442ea96c3d9", + "sha256": "1mlkpzxp58imwjmn50aslybj6clljjm7pji0ql4dj52kwv2zcvvh" }, "stable": { "version": [ 0, - 9, - 2 + 10, + 1 ], - "commit": "6415d90f8260b6c5f1da00e0028acf4be5b4053e", - "sha256": "0bcrqqim6is75d4zadswxp162m9gd34xmb2wxsx9rhvkwq0ln35k" + "commit": "fedb0df5b0fbba13c662107855fb07a922793096", + "sha256": "0dvvyqc0nw9has54vps10f5iv831cb29vqvbvx0m2djv9pacqp17" } }, { @@ -20990,11 +21329,11 @@ "repo": "blahgeek/emacs-devdocs-browser", "unstable": { "version": [ - 20220917, - 1403 + 20230112, + 1554 ], - "commit": "badbb9cb57522cc0e002a32fe385f7ad1e929665", - "sha256": "0ny46r6cjq2ps2b67cmdbpxa4v762kajjnimq7ql9lhm58rqj6d5" + "commit": "c316c93306527fcb4069adde94402a48605d42d5", + "sha256": "0532pg1kz373n8g06bhlwwp7j9vkfyr26qcfk0bqf4cpa01vg3hf" } }, { @@ -21105,15 +21444,14 @@ "repo": "martenlienen/dictcc.el", "unstable": { "version": [ - 20220219, - 1302 + 20221231, + 1703 ], "deps": [ - "cl-lib", - "ivy" + "cl-lib" ], - "commit": "a938d4771e34a9e913262176a02498b8ac92373a", - "sha256": "0s3d7g2cxr07dzqzr1xci4hcxqgcmld2lm45r5a3w315msps2ck4" + "commit": "30b505759e5a97c2aaa8b0e8ea5e187fdf625c65", + "sha256": "0wwmmfyzdqaixsg75jlhwjy09cld0gvvdmnnl0951ivzsm0g0dy0" }, "stable": { "version": [ @@ -21192,11 +21530,11 @@ "repo": "ideasman42/emacs-diff-ansi", "unstable": { "version": [ - 20220731, - 2329 + 20230201, + 134 ], - "commit": "c4f350da4302cd7d33343d83d5faaeae6795768f", - "sha256": "06k3ppgwng3b0234qpvpq7cvfcdc3fkwm813qpmddcwbg9b8m7fn" + "commit": "84446e315a163cecb7259858c9b01d2e6726775e", + "sha256": "0c1zkwqpv9qwfjhisci05ra3456wv08a3f8s2xdzmm6zk4va273h" } }, { @@ -21207,11 +21545,11 @@ "repo": "ideasman42/emacs-diff-at-point", "unstable": { "version": [ - 20220708, - 211 + 20230116, + 951 ], - "commit": "b32a741d5967b38749039ceafec85062a45e6bcd", - "sha256": "17mivblmnnm2yy1154fvy5lf36rxn0vmcl2c94pn5rnrbndxpdrd" + "commit": "72079cd8143b949228a51529f897076ead61ff43", + "sha256": "1jqdg6v0pkzs8qmjg9fwh3b4zblql5rlg01k756kchwi9nscj95q" } }, { @@ -21222,26 +21560,41 @@ "repo": "dgutov/diff-hl", "unstable": { "version": [ - 20221007, - 2147 + 20230218, + 2323 ], "deps": [ "cl-lib" ], - "commit": "68fb280b300c5d8460cc7b9183e29fb3ec604136", - "sha256": "1948r26zwk0aaw5n8rvl7frj3cjncwcbw64scfggb5s91m4isd7j" + "commit": "d20f16bf5eadd66e775f215e800f25caddae8cb5", + "sha256": "0nh3rrvjjddyng5j7wjrk4ls7l6cjx3fpf8ksg4kjq7wzw4abf1s" }, "stable": { "version": [ 1, - 8, - 8 + 9, + 2 ], "deps": [ "cl-lib" ], - "commit": "b8b4f43af73f109bf1af0453a076c274164488cf", - "sha256": "075klzf66z1rvhpxv4j694pdkmi7f4fpw6c8q4ncz0h4y5wdbl8w" + "commit": "d20f16bf5eadd66e775f215e800f25caddae8cb5", + "sha256": "0nh3rrvjjddyng5j7wjrk4ls7l6cjx3fpf8ksg4kjq7wzw4abf1s" + } + }, + { + "ename": "diffed", + "commit": "1f753648be0e01a962297b088ffe349f5a1da29b", + "sha256": "1dd5vdw2qgfykgr67kcx0qa786zgqw6rf1gfh43zrlpnkjr1zkd8", + "fetcher": "github", + "repo": "ber-ro/diffed", + "unstable": { + "version": [ + 20230208, + 1546 + ], + "commit": "f7dc37f13a4f1660212c41a6e9faba61eb8cc078", + "sha256": "0g1xjwby2sljmkf4nl0das45464162hwlsrjhbwzf4bp4i1c8gi9" } }, { @@ -21322,21 +21675,6 @@ "sha256": "0ppsgfzmdg0r418n2x0qxwhyqs7hjj8fgazc4xzgs8fsg4j3h7mr" } }, - { - "ename": "diffsync", - "commit": "581413a6c017265568a89b08ad608bb0b4563123", - "sha256": "1kny243c3gy9wkyhc06mw12wwbmigsidicrhl7bzhrpbam7an4w4", - "fetcher": "github", - "repo": "ber-ro/diffsync", - "unstable": { - "version": [ - 20220502, - 1513 - ], - "commit": "3f8540ef0a677ea8c2b57aaf4a07937512bb148c", - "sha256": "0hgyi8s7f5r87y48a6x427xm8nkr2rms6fzsdjp840ma39pj7n2f" - } - }, { "ename": "diffview", "commit": "0ea5dd4c9c114618ac20f565c878f509ce8d9872", @@ -21368,20 +21706,20 @@ "repo": "retroj/digistar-mode", "unstable": { "version": [ - 20210129, - 1719 + 20221201, + 2332 ], - "commit": "e12b128023b7696a23545f812877e8c6531d261c", - "sha256": "17ja51xcwmiy66000k08z8c7za4rivsi1w8w650s8byd4v9nkc75" + "commit": "06795403c30f3b3c7b72d7cb5ca33c32d0aaee49", + "sha256": "13zri0mf1gn97nn8h79j82i7975dnzyvpbvw5kj69wn4mw2jf1y8" }, "stable": { "version": [ 0, 9, - 2 + 4 ], - "commit": "e12b128023b7696a23545f812877e8c6531d261c", - "sha256": "17ja51xcwmiy66000k08z8c7za4rivsi1w8w650s8byd4v9nkc75" + "commit": "06795403c30f3b3c7b72d7cb5ca33c32d0aaee49", + "sha256": "13zri0mf1gn97nn8h79j82i7975dnzyvpbvw5kj69wn4mw2jf1y8" } }, { @@ -21501,14 +21839,14 @@ "repo": "tarsius/dim-autoload", "unstable": { "version": [ - 20220422, - 1601 + 20230212, + 2019 ], "deps": [ "compat" ], - "commit": "f1a489414dd7d344ef791c30e43e4f4e61db7582", - "sha256": "1sawhg1x4rjwk1k3521x0i0plq727fjhv2x6mcq5cs6dy7j3dzsf" + "commit": "d9c2b592cef9dfbbebe066919a79d4ef9c31db80", + "sha256": "1da0wxva0kwa9nhj77fhrwkqhq2s8yr31iiqain7ba3fphcgh3aq" }, "stable": { "version": [ @@ -21528,14 +21866,14 @@ "repo": "dylan-lang/dylan-emacs-support", "unstable": { "version": [ - 20210329, - 604 + 20210613, + 1431 ], "deps": [ "dylan" ], - "commit": "040c8ebc884305fd4ff980d21c68946fa74b095a", - "sha256": "1f99wn0lgknvnplp7nk2lylf17yak2hw53n9a0vkxng01xhf50d2" + "commit": "d85409dc3cba57a390ca85da95822f8078ecbfa2", + "sha256": "1cm4l2ycaw47mfgc6ms021zxkas1jajgwpnykqlkcwcbakbczxjl" }, "stable": { "version": [ @@ -21687,14 +22025,14 @@ "repo": "tilmanrassy/emacs-dir-treeview-themes", "unstable": { "version": [ - 20221106, - 2133 + 20230112, + 134 ], "deps": [ "dir-treeview" ], - "commit": "1d2e19c1df9f68186d7d0fe4529c92f7112136a2", - "sha256": "1h8kbr1swad0d84bqblg4c4gvm2pnq72n5hrbxjwahr45j8xrp1l" + "commit": "8e28c2501a978e6ff733fc9cf43a826fd8e7b87e", + "sha256": "16hmp0wp8a1ahhsqy2s7wkbz9fkjfdi5wa0hjrwc2rfg3xprf449" } }, { @@ -21712,6 +22050,21 @@ "sha256": "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s" } }, + { + "ename": "director", + "commit": "8a4158931df97d1e8bb65ca9468c52253fc8f025", + "sha256": "0w98xzqv246a6adwbjkpc3rrbsr046lqxmi541f7rc673dwnncv6", + "fetcher": "github", + "repo": "bard/emacs-director", + "unstable": { + "version": [ + 20230213, + 1201 + ], + "commit": "16afdbbd91b451fab44c68c8f7d0b810f5283f28", + "sha256": "14zgkzwjydahrpz2rz5iww13r4x4fdpf8im4g0nffvb3pqvsbz7f" + } + }, { "ename": "dired-atool", "commit": "0fe7b0857828a041ee06b30edd2cd488cc3394c7", @@ -21744,15 +22097,15 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20161012, - 1104 + 20221127, + 1247 ], "deps": [ "dash", "dired-hacks-utils" ], - "commit": "bef0c7eb03474defa02bbba5c15401a766c8ff7c", - "sha256": "1l7kay58ix9gmn06nws04f642svy0s1zplh86m7ihq4b6jb04hxj" + "commit": "41d3eb42195d9f0894c20d18cc8e722b099aa1c1", + "sha256": "0r08nxx5gw0sz9xhby77nw6rxd19wzvi9zkjkqwgixpxhbz6akvv" } }, { @@ -21763,16 +22116,16 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20210403, - 1230 + 20221127, + 1247 ], "deps": [ "dash", "dired-hacks-utils", "f" ], - "commit": "7c0ef09d57a80068a11edc74c3568e5ead5cc15a", - "sha256": "0qqj16r7p6pidlyj7fi0s3xhi13065642j20hlnply8nrq782vpj" + "commit": "41d3eb42195d9f0894c20d18cc8e722b099aa1c1", + "sha256": "0r08nxx5gw0sz9xhby77nw6rxd19wzvi9zkjkqwgixpxhbz6akvv" } }, { @@ -21905,8 +22258,8 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20191105, - 1404 + 20221127, + 1247 ], "deps": [ "cl-lib", @@ -21914,8 +22267,8 @@ "dired-hacks-utils", "f" ], - "commit": "f49a8bbf95f70671a74a24f7f4de453b2686be46", - "sha256": "0b5mk501sy3b2ak46yyy8qcl5f5fsc9py750n962qfh2zs1amrbs" + "commit": "41d3eb42195d9f0894c20d18cc8e722b099aa1c1", + "sha256": "0r08nxx5gw0sz9xhby77nw6rxd19wzvi9zkjkqwgixpxhbz6akvv" } }, { @@ -21947,14 +22300,14 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20201005, - 2318 + 20221127, + 1247 ], "deps": [ "dash" ], - "commit": "d6d4d1930969bbc22fd0551d5195887bf92cab3e", - "sha256": "0nhd2f6ybdcb4nb6klallvjfdfkfn1vp2j29zi1d7spi7ksv6l4f" + "commit": "41d3eb42195d9f0894c20d18cc8e722b099aa1c1", + "sha256": "0r08nxx5gw0sz9xhby77nw6rxd19wzvi9zkjkqwgixpxhbz6akvv" } }, { @@ -22097,15 +22450,15 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20181114, - 1723 + 20221127, + 1247 ], "deps": [ "dash", "dired-hacks-utils" ], - "commit": "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3", - "sha256": "1i5a6srd3fpqdvvhyv0swybznimx9ilpm3sd76ha3shispyij1x5" + "commit": "41d3eb42195d9f0894c20d18cc8e722b099aa1c1", + "sha256": "0r08nxx5gw0sz9xhby77nw6rxd19wzvi9zkjkqwgixpxhbz6akvv" } }, { @@ -22116,15 +22469,15 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20180922, - 1113 + 20221127, + 1247 ], "deps": [ "dash", "dired-hacks-utils" ], - "commit": "a45737d3a5aaac6928ebd7af041e5603dffaca64", - "sha256": "1bhz0x7sa4a56f5ha8h9w36y5pirvzhkhczyfwf4z74j4z5z44sm" + "commit": "41d3eb42195d9f0894c20d18cc8e722b099aa1c1", + "sha256": "0r08nxx5gw0sz9xhby77nw6rxd19wzvi9zkjkqwgixpxhbz6akvv" } }, { @@ -22194,15 +22547,15 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20190722, - 1109 + 20221127, + 1247 ], "deps": [ "dash", "dired-hacks-utils" ], - "commit": "886befe113fae397407c804f72c45613d1d43535", - "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + "commit": "41d3eb42195d9f0894c20d18cc8e722b099aa1c1", + "sha256": "0r08nxx5gw0sz9xhby77nw6rxd19wzvi9zkjkqwgixpxhbz6akvv" } }, { @@ -22213,15 +22566,14 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20180401, - 2206 + 20230118, + 1948 ], "deps": [ - "dash", - "dired-hacks-utils" + "dash" ], - "commit": "89af4f12ce4a0692c9c9824eacf56875ca86cb36", - "sha256": "0nyc17b029ksa6aai5890g6ainncixgig9cnjjp7khcifmrrpw9s" + "commit": "69185bc355c1a8968b8a2851304707e081402458", + "sha256": "1sgw0hpkr5wczi1l24gw3ldvmlwgvcagsa26qr7p5r2wmypchzsp" } }, { @@ -22279,21 +22631,21 @@ }, { "ename": "dired-rsync", - "commit": "ce9f41ad832cef527dde97f829a8b8339e6ac48b", - "sha256": "0lykj7nfpaspwn90macvr7iir4jlrx88i0s9spii7iic2fnm51ql", + "commit": "ec3a3b4d5f82d56a3fccb1f996081079c2771a1a", + "sha256": "0mz0yhns5dr5d1ha63p5gig8mckkvyql77miyvpzms597pvqffj2", "fetcher": "github", "repo": "stsquad/dired-rsync", "unstable": { "version": [ - 20220729, - 1031 + 20230126, + 1144 ], "deps": [ "dash", "s" ], - "commit": "7bdc1dd7c9e1217a20a4e1f26c3d1a3ed35f4a14", - "sha256": "1qwdc92rzqdzv96rz4q9davzs0myirmf1cyr0cly2wqxg4zmms18" + "commit": "5496bc00f7a32a9d3e54e395f29d44e9df771567", + "sha256": "1qzzpcrvgg7m3b8gdg9mpvhhjjzhmcrzaf72hvmdihs8n0x36nvf" }, "stable": { "version": [ @@ -22308,6 +22660,25 @@ "sha256": "19za6i96xrmczdh928n5ixd7j7pvy175sz1msaiwvdjwysjr8k51" } }, + { + "ename": "dired-rsync-transient", + "commit": "ec3a3b4d5f82d56a3fccb1f996081079c2771a1a", + "sha256": "12k9zm6l1c9bk15zi01rcn8rjl7p7vixfy8g1y4y8dw1552dwpym", + "fetcher": "github", + "repo": "stsquad/dired-rsync", + "unstable": { + "version": [ + 20221214, + 1215 + ], + "deps": [ + "dired-rsync", + "transient" + ], + "commit": "c0e2168b80df00116ab9071bb214cf05ed943d73", + "sha256": "1bkq5n7ivvfjcry7iaq9gv9fjx62brq6bs73j989b6jm32l6w3ns" + } + }, { "ename": "dired-sidebar", "commit": "30e15c8361b01195f198197e704828fbcac0e8d6", @@ -22316,14 +22687,14 @@ "repo": "jojojames/dired-sidebar", "unstable": { "version": [ - 20220618, - 237 + 20230216, + 432 ], "deps": [ "dired-subtree" ], - "commit": "f08bf15cb6cb3c44102731f50ffd812d8d68316c", - "sha256": "0f39j8d47ids6yr427hvvqk6wlsw9qz3knm4fdf478v0lkxmpxdc" + "commit": "5569d3b53585f5413cf87a694650d0fd6e040803", + "sha256": "1vkdaw09vdjm583b0cdql991d76cqb1wkis3vzfhdy22hmy38wh7" }, "stable": { "version": [ @@ -22370,15 +22741,15 @@ "repo": "Fuco1/dired-hacks", "unstable": { "version": [ - 20210105, - 1127 + 20230118, + 1953 ], "deps": [ "dash", "dired-hacks-utils" ], - "commit": "1f19e249bdc66163b10028271943fc7b87e936ae", - "sha256": "1hwscganzprihp7820j1dw758pv0nili1gzqdin5p64fcgm54av0" + "commit": "1382acb219c5e3b179662bcacd9c57463802718a", + "sha256": "0zpb8hj9qmsh09kkqx90fan2qqsnqzk9wdy6ryl76pycjghb0bn2" } }, { @@ -22661,14 +23032,14 @@ "repo": "alexluigit/dirvish", "unstable": { "version": [ - 20221014, - 1236 + 20230123, + 1201 ], "deps": [ "transient" ], - "commit": "ec4100612b2e93d9e188e7eab4c144b45f3547ee", - "sha256": "0jqsg91qzbd1n7cg7y1484js8ykrysmxs17c0f4lvx7vxwkjhpyg" + "commit": "65954585a9e16a06f6ec1f0dec475b27ec4c218c", + "sha256": "1s1n1y3vgqhqbfrdhgkv24l36791p9823ijlbv6gg3hflsiqvgl2" }, "stable": { "version": [ @@ -23021,14 +23392,14 @@ "repo": "unhammer/dix", "unstable": { "version": [ - 20220323, - 1046 + 20230126, + 1017 ], "deps": [ "cl-lib" ], - "commit": "5230c18456ab034f2fb69acdbef62c1abae6a8cf", - "sha256": "161ykw5p6wxy3dlx7f6zxg1cwl8hh411b7clzc5zhdpmq1wnqy0b" + "commit": "5eeed9362fbeaf5a032bccd69b861b8a36877516", + "sha256": "0w23qcmlpy23v481nqikjpd3kgwpjapihlwhxdxmpd5h90khkj9j" }, "stable": { "version": [ @@ -23051,15 +23422,15 @@ "repo": "unhammer/dix", "unstable": { "version": [ - 20170105, - 1423 + 20181210, + 1200 ], "deps": [ "dix", "evil" ], - "commit": "1cfef0d3376a18c78dd1dfc1ac9ac3ad0e8c4475", - "sha256": "0p2cvr7mjpag86wacxm6s39y7p118gh2ccqw02jzabwxlfasfbw3" + "commit": "b973de948deb7aa2995b1895e1e62bbe3129b5a5", + "sha256": "1bjxyidcp7y309asbk4pfb4mzgb8j62fmp3w3zl2nahdgv1rja45" }, "stable": { "version": [ @@ -23223,8 +23594,8 @@ }, { "ename": "dkdo", - "commit": "2d4f75f6f6349b81ddbaaf35fb5d7ddeb4cde622", - "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "18szxqhn2jzy3y2x5f89nczvwq8m7z3sbr4xjywwvzi4x1p552sy", "fetcher": "github", "repo": "davidkeegan/dkdo", "unstable": { @@ -23347,11 +23718,11 @@ "repo": "ideasman42/emacs-doc-show-inline", "unstable": { "version": [ - 20220731, - 2330 + 20230116, + 2310 ], - "commit": "02f2187d815b480e316238e2b8568bccc5e38fdd", - "sha256": "1i4lzq60d5i3yiibgf8nx97xfr477gkp4pyd5r2q1sykv9hjlr51" + "commit": "641c2c8bf55ec4a0f9da8dd99b95cd1464997a66", + "sha256": "0ihxhsnhlqjpnyy53vbxs089sanf3acxy5jbfl005lkv453jnz1d" } }, { @@ -23568,8 +23939,8 @@ "repo": "r0man/docopt.el", "unstable": { "version": [ - 20220319, - 1912 + 20230216, + 957 ], "deps": [ "dash", @@ -23578,14 +23949,14 @@ "s", "transient" ], - "commit": "a7f5b4a8b1a43552067ce27bce6080a509c92cff", - "sha256": "0dr0m5rrk0vhz1sq3d28pxijlkj030ckxc5mhqv3jpq2xfjwd2gv" + "commit": "21c575db68d4ccadb3125241a62136a0f8b76f63", + "sha256": "1g3q6ymw5cxlm91zmwf8rilsz38rcgp2kki29ynk37vxc84bij13" }, "stable": { "version": [ 0, 1, - 2 + 3 ], "deps": [ "dash", @@ -23594,26 +23965,26 @@ "s", "transient" ], - "commit": "a7f5b4a8b1a43552067ce27bce6080a509c92cff", - "sha256": "0dr0m5rrk0vhz1sq3d28pxijlkj030ckxc5mhqv3jpq2xfjwd2gv" + "commit": "21c575db68d4ccadb3125241a62136a0f8b76f63", + "sha256": "1g3q6ymw5cxlm91zmwf8rilsz38rcgp2kki29ynk37vxc84bij13" } }, { "ename": "docstr", - "commit": "97d68e8842fdfcda9c8865ccc53b1d0d7c42a7e7", - "sha256": "0zq6pm84l6cqa57198hn5pk596wlkcnk46g01q1072650i8bp58x", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1jyhs8gdy82jiz9p38wgarm7s7c24r1lgcdz2mdxwfvfnb72pwxl", "fetcher": "github", "repo": "emacs-vs/docstr", "unstable": { "version": [ - 20220704, - 630 + 20221231, + 1701 ], "deps": [ "s" ], - "commit": "8242fcb2798dedf15b935845b8d6fa16c8e15798", - "sha256": "1jsl6yyamc74rxfphv0j3l1ri7nkm5hxvkq04zz0yanyci3h4g3p" + "commit": "68a72e8a9abac28d8451769cab3846c342f657bc", + "sha256": "1rdl0hqif6awkyv6wsmpdk08hx7g851n19rzqchcpksdfq8dk7nr" }, "stable": { "version": [ @@ -23636,11 +24007,11 @@ "repo": "progfolio/doct", "unstable": { "version": [ - 20220812, - 443 + 20230108, + 1507 ], - "commit": "506c22f365b75f5423810c4933856802554df464", - "sha256": "03a8z9cwfg87144b0g4ggilr925l561hgmgra9wchxwydixrlnml" + "commit": "69bfe30317c7fa7a5a51f2763515dfe9c989ebf1", + "sha256": "11a9lyhnwhza3my9hg5x7116y2v5s3d1z6207b7hhwky1b7m4pfj" } }, { @@ -23758,15 +24129,15 @@ "repo": "seagle0128/doom-modeline", "unstable": { "version": [ - 20221111, - 711 + 20230219, + 1605 ], "deps": [ "compat", "shrink-path" ], - "commit": "440fd160b4dff530465938bed40094a0d413fc11", - "sha256": "0ablv6fyqb6mzzk7iyx24nj5xmmmhw7kqmi2xldjv0a7aplmxbqr" + "commit": "6125309c2caa3c98591a4c802e9b4dd2f7ea83e9", + "sha256": "1klyfazdqxy2kdb72mbaxy0ravpfikw030q61rbbhl47sp41yxrv" }, "stable": { "version": [ @@ -24059,11 +24430,11 @@ "repo": "dracula/emacs", "unstable": { "version": [ - 20220821, - 1717 + 20230118, + 1201 ], - "commit": "fdf057f5e80037814098dc8bb67888886c89a761", - "sha256": "1v9p120aaa71x30xixxwglvgfwp7pf5y4503zd6rlj98rmidj96w" + "commit": "be1dd97ef3968bef25b9de89e7dc1251f5aaee10", + "sha256": "0y8qr8rcsqmlr48z3qn50im1vr6qnpqxa6yxdc349gq552mja2l0" }, "stable": { "version": [ @@ -24083,10 +24454,10 @@ "repo": "gaudecker/draft-mode", "unstable": { "version": [ - 20140609, - 1456 + 20160106, + 859 ], - "commit": "f059c04b044f62aec764c7698adddad301bfe89c", + "commit": "4779fb32daf53746459da2def7e08004492d4f18", "sha256": "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y" }, "stable": { @@ -24241,8 +24612,8 @@ }, { "ename": "drupal-spell", - "commit": "bb859d9755bde3fd852bc7d08f2fab2429ba31b3", - "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0fj741608g9d98x3dg0hmx9z34qr2q8s4ypyrhyqzqcz5qzn938y", "fetcher": "github", "repo": "arnested/drupal-spell", "unstable": { @@ -24369,8 +24740,8 @@ }, { "ename": "ducpel", - "commit": "2d64adac965e1dac0f29dab9a587cd6ce9c3bb3a", - "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1jppm79d6b961ikm0w1hs4yj27dbqxd12581524pq2571hs2wcmw", "fetcher": "github", "repo": "alezost/ducpel", "unstable": { @@ -24468,20 +24839,20 @@ "repo": "ocaml/dune", "unstable": { "version": [ - 20220805, - 1652 + 20230217, + 1444 ], - "commit": "3df932f7f91ea68c3fee789f133b4aa8f9bea807", - "sha256": "19b71sg9q9yj00dkqdkq2q0j3ibvvgvf53qyjr8f3j60c5mc6hcv" + "commit": "d3d628f2eda2278bd2df6e37452d8693f367fcfd", + "sha256": "07gs70d46fg8dxm2fqwpgl1zi91smj0d9wxa3y3yax0vih5csyb8" }, "stable": { "version": [ 3, - 6, + 7, 0 ], - "commit": "c3b75bdfd3763b39aaac8baa5104312ac701d501", - "sha256": "0kgg5a2y1zxc6av2vmlh4vy46lsgnq2xvxjpv3m5i8pzgv0angsg" + "commit": "d3d628f2eda2278bd2df6e37452d8693f367fcfd", + "sha256": "07gs70d46fg8dxm2fqwpgl1zi91smj0d9wxa3y3yax0vih5csyb8" } }, { @@ -24552,10 +24923,10 @@ "unstable": { "version": [ 20210331, - 2246 + 2311 ], - "commit": "8a564b2e2f052830bfa5f59fc24220b43cb223ed", - "sha256": "0b3g69jl0mpsh35p1pnx1cv3z5m1ahpfjb2rfhgc9k8yzfxvr9vm" + "commit": "61c5718ba64ace4c9e29de18aa2690ecc3f0f258", + "sha256": "14nd544ispfj165ys6lv9bpy41p9j8kf4lwy73qigr4c7qlf43by" }, "stable": { "version": [ @@ -24575,11 +24946,11 @@ "repo": "xenodium/dwim-shell-command", "unstable": { "version": [ - 20221115, - 2354 + 20230209, + 2234 ], - "commit": "c6a84a93c687b6ada6ea297135125cff232520d9", - "sha256": "1krm1pn73wk1s3gvif4vk7q281nx0syh5dfai3lmkd6jwphwhzxj" + "commit": "078fb50b15cd024a9ce252ef69b58794df392be0", + "sha256": "1f49lhpmlz00pia4cs5i0hsijckc5ya39ibqnxlgmw9warcz1j9i" } }, { @@ -24590,14 +24961,14 @@ "repo": "harsman/dyalog-mode", "unstable": { "version": [ - 20221102, - 913 + 20230214, + 1027 ], "deps": [ "cl-lib" ], - "commit": "1fe61fa2e0145af434f3fa1c5077b973389d8651", - "sha256": "1swvwnbzp848ih41xmgvrvzii2s9qdxd7lfkcik4pm5br0njmx2m" + "commit": "13c0d391aa878a1609259a89fe3e6db8d21935e8", + "sha256": "04dpr4ayz5kcjfg9rfi4kwrw3qdkx422bwxwlxyfp60amf4ilib6" } }, { @@ -24890,14 +25261,14 @@ "unstable": { "version": [ 20140525, - 1047 + 2211 ], "deps": [ "e2wm", "plsense-direx" ], - "commit": "b72561b75e98961f05544a2159d83592c964ba1e", - "sha256": "1cx6kdxhq9ybwwvc1vpwcfy08yf1h4xacgimm36kp9xayvxsmq2j" + "commit": "7ea994450727190c4f3cb46cb429ba41b692ecc0", + "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d" }, "stable": { "version": [ @@ -25253,14 +25624,14 @@ "repo": "joostkremers/ebib", "unstable": { "version": [ - 20221113, - 1408 + 20230211, + 2228 ], "deps": [ "parsebib" ], - "commit": "374400c99f600cfda703da4fb8d16898be48cb74", - "sha256": "1azgsjf5j8k6llq74brykidcb2mnq6fghk8jyq7qad5afh7n0mrc" + "commit": "abe6ed461b334673001b930f7e30752aa8aff526", + "sha256": "03vn16nrsap8sdy4bindjr3sr1xqy8w9vffy5a970ksygfdv2j14" }, "stable": { "version": [ @@ -25298,17 +25669,17 @@ "repo": "flexibeast/ebuku", "unstable": { "version": [ - 20220725, - 832 + 20221122, + 427 ], - "commit": "5b8bf34b8ea5d05f0b8dfc12bfea825f9cffbeda", - "sha256": "04733lqa6z3kmdjcgdi58q3wrqan2qib43rvjw51qc739fwmwb5y" + "commit": "0c6cf404a49bd68800221446df186fffa0139325", + "sha256": "09fkzmcvzdbdjaa167wiybj0kir7y12pcq2varjywshvq2l7niz4" } }, { "ename": "ecb", - "commit": "4db5183f35bedbc459843ad9f442f9cb6608c5fc", - "sha256": "0z61p9zgv7gcx04m4jv16a3mn9kjvnw0rdd65kpvbmzkgls0nk8d", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1vb66hangxa8p7khjxsk6if2n8hagl0zk6k20lr4qm41r8bl7iqf", "fetcher": "github", "repo": "ecb-home/ecb", "unstable": { @@ -25322,17 +25693,17 @@ }, { "ename": "echo-bar", - "commit": "86a702ef21febcfc227c1f2b64a7e795403a81c6", - "sha256": "1zi6qnqmbscl36iafblhshz5hrm5z1phzzb6swz1ryw23808skyr", + "commit": "dd401c96b14d281287df81decce60b11f745fd69", + "sha256": "09bnd9z053l4239ylv9f7hg18sad4mbd3r48aih61adwzl6zwb2p", "fetcher": "github", - "repo": "qaiviq/echo-bar.el", + "repo": "benzanol/echo-bar.el", "unstable": { "version": [ - 20221101, - 2254 + 20230209, + 1350 ], - "commit": "d0a24635da51502bdda9f5451793966fffef92a8", - "sha256": "13j9hdlx2f5fvbghibkv43i7x7hih778fn8ybi8g4y1l350kr68m" + "commit": "03cae6d045636948d8b47979d85774e39556f9e1", + "sha256": "1431xpklnb5894mq3gxc7kvp2q5qa04bnlx8qcxv5l9g2rs0jiih" } }, { @@ -25391,14 +25762,14 @@ }, { "ename": "ecukes", - "commit": "14cf66e6929db2a0f377612e786aaed9eb12b799", - "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "15z6ibcrgk5jaipg9xj5vyfkdyhh570mwn805nglyjj3rnvncqqr", "fetcher": "github", "repo": "ecukes/ecukes", "unstable": { "version": [ - 20220802, - 1502 + 20230220, + 456 ], "deps": [ "ansi", @@ -25408,8 +25779,8 @@ "f", "s" ], - "commit": "90e4c1d11b69e937f057864080f6dcc3f6acd2f4", - "sha256": "1dr084ksy2454r39g205yg7wvv9nfcykpx1nj0zwk4201df1vfyk" + "commit": "6bc1feb33d44bda7a7ccf06f8748050ffa1dc23c", + "sha256": "0wcc2rygz6l496fbh6azlbphdk3qn9hfdmcnq7wrcjy35b5f0cbw" }, "stable": { "version": [ @@ -25431,8 +25802,8 @@ }, { "ename": "edbi", - "commit": "238a11afa52d2c01d69eb16ffd7d07ccd6dff403", - "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0m325rcwm6n2pi1gki780hbwlnfiqwffy8jxp9fs1dj0n3wzjp6q", "fetcher": "github", "repo": "kiwanami/emacs-edbi", "unstable": { @@ -25658,8 +26029,8 @@ }, { "ename": "edit-color-stamp", - "commit": "2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f", - "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1a7bjp0x024xd9h4lhdn7kzrga9n5g8msmfw97qfp8idgd1xhr11", "fetcher": "github", "repo": "sabof/edit-color-stamp", "unstable": { @@ -25790,15 +26161,14 @@ "repo": "editorconfig/editorconfig-emacs", "unstable": { "version": [ - 20221107, - 300 + 20230212, + 617 ], "deps": [ - "cl-lib", "nadvice" ], - "commit": "3352e487809dda4a0366314e30c9efa431b61f79", - "sha256": "1v8x649r9b0ihnhddkkfb8ck21z2hr3swgczwgzwdk0ys6pl89my" + "commit": "2d13945c8d4c0ceee1c9310a2c1c4375f88a3b1e", + "sha256": "12v6jj6nlql00xn76x080y3cb3331zr7k83pk04v67l6wlh9l813" }, "stable": { "version": [ @@ -25938,17 +26308,17 @@ "repo": "sinic/ednc", "unstable": { "version": [ - 20220404, - 2105 + 20221201, + 1624 ], - "commit": "d1a3c37235dd87e0bce6ffc75f5568218d6d83b4", - "sha256": "19k9mi6phdny1ihxf5apkxfv67cvyihl0za7al29dvim6172km4y" + "commit": "bf17d22fa9bd1711709d84bb75ad49f746bfc9b7", + "sha256": "1gwffd5c25vh1h7fjj79gpmqvlb3b664zh8pwp530hprk9sb89hr" } }, { "ename": "edts", - "commit": "2932e874ab3adbb022fa4793ea18376c34c9405e", - "sha256": "1gas7y5f94y1b5z9dgl8wpv1q8sf5341hlynmvpskmg0g1y1yy4s", + "commit": "949da8f16687bad96f53714ccbde895587d439ff", + "sha256": "0nabh5xfpskxjm2fvhg5blvh8xlnalfvq0qs57lraqc42699f8pk", "fetcher": "github", "repo": "sebastiw/edts", "unstable": { @@ -25971,17 +26341,17 @@ }, { "ename": "edwina", - "commit": "050188e81b045bdadf722db552a42864121d9b81", - "sha256": "1581cwgfnrlcmbmrnfj57w9hb9jx9sinz6zw6zy2yk7g1r9vgbzl", - "fetcher": "github", + "commit": "cb6cf7e2af2800ad0e295db6116a63009ba8eea0", + "sha256": "0aqbf4xw5v5c32f9wmhvzfxrcvxpj0fwkwxlvf0s7qj29dp01lh1", + "fetcher": "gitlab", "repo": "ajgrf/edwina", "unstable": { "version": [ - 20200113, - 1714 + 20221206, + 1610 ], - "commit": "c5368716a504c93407fd8cb4ef925a8d8eb62698", - "sha256": "0rsi1v9rr76crbgb7f13g31rfq5bjk0hchqr356h97xlqr39168y" + "commit": "f95c31b1de95df7e83338a5d4daf3363df325862", + "sha256": "196lsw2kygxb5bli9f87mc5hghv45kcqlv6y686lq9ryvnb5ksbr" }, "stable": { "version": [ @@ -26001,11 +26371,11 @@ "repo": "suntsov/efar", "unstable": { "version": [ - 20220530, - 1412 + 20230216, + 1213 ], - "commit": "bcf74e57031bb700c0e8b0a49c6e4583112b7eda", - "sha256": "1mfv5v120d49gsxf01imj4m71d7ijrvzi0h9nsfpd9yn93i8sraf" + "commit": "78618a6cd9fe7d46c3728db3589d1fe50f7c1c6b", + "sha256": "1dl7nfsg6ya1lvn1mjvask75x73vinxbpg5hxiqmif27gdi68qc1" }, "stable": { "version": [ @@ -26137,11 +26507,11 @@ "repo": "egison/egison", "unstable": { "version": [ - 20200107, - 2333 + 20211218, + 1115 ], - "commit": "1ec6e8fedcda1bc2a6517cdbd8b1a85a1401a8f1", - "sha256": "1flj67z99mfgvxwwp4614cackfv4nmb8rvy2bw5pfis1qrphk81g" + "commit": "dbb395b41a4e4eb69f3f045cbfbe95a1575ac45b", + "sha256": "14g0dpn8j7kh3iiq7qlhaa1wdk6xvl60hkl3j87ncjwkh6h4imcg" }, "stable": { "version": [ @@ -26200,16 +26570,16 @@ "repo": "fsharp/emacs-fsharp-mode", "unstable": { "version": [ - 20221027, - 1923 + 20230219, + 1511 ], "deps": [ "eglot", "fsharp-mode", "jsonrpc" ], - "commit": "f8873096d24cac7b30419854347220f37345e780", - "sha256": "1mny0dr231bm2pz0rnkzr8kbv1f7sk34qdxxd6q7wssgif5rcxvq" + "commit": "09fec6c91f9c18173f145e28c55d6f21be678231", + "sha256": "0p1y1y3g9qxkgn38fd34wkjkxplg3aphdqgisx556maig69ki789" }, "stable": { "version": [ @@ -26233,15 +26603,15 @@ "repo": "yveszoundi/eglot-java", "unstable": { "version": [ - 20221102, - 2300 + 20230213, + 218 ], "deps": [ "eglot", "jsonrpc" ], - "commit": "10d0b3b65adf83fbd939f973cafc5b5122536bb4", - "sha256": "0f3vclq7hhim46njd5lw78g6v60aa3f3jvvmml99vxmxmd36a7gf" + "commit": "ff0f9515d78f94b8dfe158bf9a2c4f52216504c0", + "sha256": "1m64ddix0h4s22mfbagwkn0q69ck12hvzzpmdr134k7k8ryals6c" } }, { @@ -26252,28 +26622,30 @@ "repo": "non-Jedi/eglot-jl", "unstable": { "version": [ - 20211208, - 359 + 20230117, + 1243 ], "deps": [ + "cl-generic", "eglot", - "julia-mode" + "project" ], - "commit": "2e35cf9768d97a0429a72deddbe30d6d7722d454", - "sha256": "15d4pym6dv08jp6iki00xpf1i4vc92yd2rcjv21k64h6fc862gps" + "commit": "2e04597223553a369dd5b6520b6365b41e6ea508", + "sha256": "1zr5f5hvrj2i7a2yzrgbhdhzfwf6fxhj3p4ws85r0mgvk2kwwlll" }, "stable": { "version": [ 2, - 1, - 2 + 2, + 1 ], "deps": [ + "cl-generic", "eglot", - "julia-mode" + "project" ], - "commit": "2e35cf9768d97a0429a72deddbe30d6d7722d454", - "sha256": "15d4pym6dv08jp6iki00xpf1i4vc92yd2rcjv21k64h6fc862gps" + "commit": "3e66d604b66a35290c686194de7cb39b113ab20a", + "sha256": "0n9cf3cpf55f4n4nmfl4m2pai1b8hznyivr0vzvf9p56iyfnx98g" } }, { @@ -26300,17 +26672,17 @@ }, { "ename": "eide", - "commit": "aaf337a7843c79b463b66b1e96a3a044c8cea4f6", - "sha256": "0ir02p1qrkxsh6b2v2aagkxzzzbd8hysxhr5zpbp11gv6sw4harj", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1fpi389bylw9f5v1b0qn71gnnjv4yvhwzz8j7dk5xix9yxiksnjl", "fetcher": "git", "url": "https://forge.tedomum.net/hjuvi/eide.git", "unstable": { "version": [ - 20221101, - 2045 + 20221204, + 2104 ], - "commit": "e0a5deb627da9cf70f02229601a1ebe6d78cabc8", - "sha256": "03yj94kw9n32bsjb7mxsq7acb8x915cgw5c11112mb56qjsz6203" + "commit": "ccddbb7b893c9b2439c19832aeb2c4d7dd8f5d90", + "sha256": "1wgdjrzz53y8gchp9vayb177y42w1ih8abq2rk1l9injhj8y0q4j" }, "stable": { "version": [ @@ -26393,17 +26765,16 @@ "repo": "kostafey/ejc-sql", "unstable": { "version": [ - 20221101, - 922 + 20230219, + 605 ], "deps": [ "clomacs", "dash", - "direx", "spinner" ], - "commit": "83f39df28f9812773bf89d7af1caf5e7950fb84e", - "sha256": "1yfb0lv1p5l8c3idr8ya1c26zbl781f61358k9y301mn8hf8j090" + "commit": "c9a602efd4b3a1b607c630e55e3124d4a63048fb", + "sha256": "0pnkg8m4ba8nmxc77lcb316hnjhl205jsdfr29gls8qidlfhxwwn" }, "stable": { "version": [ @@ -26436,6 +26807,24 @@ "sha256": "1j4v34m7jfiivbpps2pdvzl9q2gwj7rzcna9x93pj0qkw1xaqc3l" } }, + { + "ename": "ekg", + "commit": "88d93c97bc861885f5fd4bf4dd169b1914bb643f", + "sha256": "16cwh8ry4gka5f808jvm0xwii7m100kfpdlaw2fmabqv425pipnm", + "fetcher": "github", + "repo": "ahyatt/ekg", + "unstable": { + "version": [ + 20230218, + 2019 + ], + "deps": [ + "triples" + ], + "commit": "7a112094e34ad54406e028e83afcff90ccab143f", + "sha256": "10s4bmkghh71wz1ck2cp9gq889a72msnxnq1iyyqrpv3gnns2qv5" + } + }, { "ename": "el-autoyas", "commit": "cc4845343dbb8f8294394f6850788e4f1fe6b99b", @@ -26461,26 +26850,26 @@ }, { "ename": "el-fetch", - "commit": "97761f51eec22d45a64f6fcc9765b7ac924e56ef", - "sha256": "0mk9zyrx1bs9mii748vjvsj1h4frhqac7hda7jp6xyxlr6n4ys88", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0dkynd8wp687vddjdggsafqfxmpm51gwhr92v9n6w9zqgvhcn2k7", "fetcher": "gitlab", "repo": "xgqt/emacs-el-fetch", "unstable": { "version": [ - 20220622, - 2008 + 20230210, + 1311 ], - "commit": "15f6af6035ad1f159ac931268ec3431ce4cdf2ec", - "sha256": "0d8w9m8rm6b2m86m6mq2sz5nfh9m3dizxcryn5qwwlv8hrlpir14" + "commit": "0142f58f075ea39aa6cc7ed35dd599afc4b6b450", + "sha256": "0d15zpbymi8k5bacgl6iyy60vzx2783qqn72cd7gszyxf6kz2695" }, "stable": { "version": [ 3, - 1, + 3, 0 ], - "commit": "7dea7aeffa68ede2cb34678ac2734502309ccbe5", - "sha256": "0fk48py9vx1mamwix2p3b20s3l7bfn9n4adqxrzli3810q3xd1mv" + "commit": "0142f58f075ea39aa6cc7ed35dd599afc4b6b450", + "sha256": "0d15zpbymi8k5bacgl6iyy60vzx2783qqn72cd7gszyxf6kz2695" } }, { @@ -26500,17 +26889,17 @@ }, { "ename": "el-get", - "commit": "1c61197a2b616d6d3c6b652248cb166196846b44", - "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0vfimgla3bfxy3hc08a1ia711wz81d5cpgwipdj4i7gvqbpjxima", "fetcher": "github", "repo": "dimitri/el-get", "unstable": { "version": [ - 20211224, - 959 + 20230101, + 1231 ], - "commit": "24d73f555cb4d557182b1e8488477ada4d9bf0e3", - "sha256": "1y30gdhr1iz2s9255bg1nrpwnjr8z2nlz15v13yc484fxibpcwdj" + "commit": "3969e02b2755d11224b80d2db9d2b8fc5ae73711", + "sha256": "06dg7yfnqfs96702p61015988jcsmfvixfv8kwkj0r0jjmn7l24g" }, "stable": { "version": [ @@ -26623,11 +27012,11 @@ "repo": "radian-software/el-patch", "unstable": { "version": [ - 20220509, - 2253 + 20230219, + 214 ], - "commit": "156c61b72c1c9c61bd886b5931b8a382153f52fa", - "sha256": "043m4lpm7m7mbprnb5igx0rz2r6c425vl33m7is5j47pm1ysvp31" + "commit": "ad8b18578d224cf8ebb1cce9a3b1b5a3d93a0e69", + "sha256": "0w97dqmn5imqpnwrsp442k23bssx07s5r29xspp00rwp4kjdggwa" }, "stable": { "version": [ @@ -26646,15 +27035,15 @@ "repo": "zetagon/el-secretario", "unstable": { "version": [ - 20220422, - 2005 + 20220426, + 1905 ], "deps": [ "hercules", "org-ql" ], - "commit": "cc63663ff77b30c0eaf7b2724ddcd035a6b29d16", - "sha256": "1l86442xwjc9ahlm1hfdjc3817x7panprb8jccw5ggs3ffjdd049" + "commit": "575396ca689065188ad0f90c379d9bcf7ff6fc0b", + "sha256": "07kdwl4wr777ncidlv1v3jllfhimbkkhhimz9zgskmbfgrxw5sxn" } }, { @@ -26703,15 +27092,15 @@ "repo": "zetagon/el-secretario", "unstable": { "version": [ - 20220426, - 1905 + 20220428, + 1058 ], "deps": [ "el-secretario", "notmuch" ], - "commit": "c28a4f42829ed1f96a17abb63a8616216db913a5", - "sha256": "0s4smf6ldwivardvwnilg0p109dh51s04hqn6dna5qr9gal3ff26" + "commit": "c4e21ac5a9be2b2ea6cf7c153a6fae48c78a61b9", + "sha256": "0jnr75fzhi2m1b65z72q2m970nk52rkvzwkkv27rzbprd43hxnzd" } }, { @@ -26905,11 +27294,11 @@ "repo": "Mstrodl/elcord", "unstable": { "version": [ - 20221031, - 1726 + 20230203, + 101 ], - "commit": "d0c9ace493d088bc70f7422705ff27dfcf162cca", - "sha256": "0czilbq6cwwxd1hbrjh5jb7jlxz6rz8kzx2n7g26rbr16sk0mdl4" + "commit": "43ae6c375811754e640b0bae4678bf33e72988e9", + "sha256": "03ljcpy7bf08l0zdrq27h2h2mf92rwc8yv26w8bl4gam83ypkk1c" } }, { @@ -26948,26 +27337,26 @@ }, { "ename": "eldev", - "commit": "570bde6b4b89eb74eaf47dda64004cd575f9d953", - "sha256": "1rhaldvfjz6ai3574yigidnlnbjy5xmv35kwaf87dbcwv8bpydz6", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1grpz4nf77bhxbzfl7b14wj1kxj759y0qbs6kwqpjgyzadfgar88", "fetcher": "github", "repo": "doublep/eldev", "unstable": { "version": [ - 20221117, - 2048 + 20230121, + 1404 ], - "commit": "2ddf8cbe9bb4f973ecfa6012870af23b030ad6f6", - "sha256": "1f649vm59kkwiwc3pwzvw6phnc9id8vm6jfyg05j716k2pa4q0n4" + "commit": "a1ea1a3df7602ffab30c15348365d2e6a75063b7", + "sha256": "0l5i1wylprwag087c21m51k0xwjna8y4hv7dwc9i3cy3f541jmp8" }, "stable": { "version": [ 1, - 2, - 2 + 3, + 1 ], - "commit": "659f4d9c97a44cf29ded5594b3f5de8da99ec973", - "sha256": "0d6wbfim0q81sm5m45fjc6n0v6nk32qrgas5nzrs0vslym4bfxna" + "commit": "870ca147d26a4da76828c50b5f4a3d82b51fe43f", + "sha256": "14rrh5ycwd3r5k3df8aif4jii645m5jgplxky3hrjgr8vxd951h8" } }, { @@ -26978,11 +27367,11 @@ "repo": "casouri/eldoc-box", "unstable": { "version": [ - 20221117, - 2216 + 20221205, + 638 ], - "commit": "3021dcd85764b6a918e1689bf649c16918c339da", - "sha256": "14blf7as7j6k7g8ry8a45c5zpgjca79axwr4b3yk3hcp9q9rvzfk" + "commit": "5c067f5c195198ffd16df2f455da95e46cc8ce02", + "sha256": "12vl8a5xqz1cbi9bg3i7h7rjb1kgwdbfin6pn7zvzajfmg0pi2qf" }, "stable": { "version": [ @@ -27119,11 +27508,11 @@ "repo": "acdw/electric-cursor.el", "unstable": { "version": [ - 20220108, - 2052 + 20221221, + 438 ], - "commit": "92f77b05fec80c5440a8b800b33345dabca13872", - "sha256": "1f1z672z21yd2zwldrb95v739kgsgiq5ckh2ffskqcrh1k5dya8j" + "commit": "bc09aa8c5d3cc32e3e6452cbf8018fc1ea772b73", + "sha256": "15v62nqncs85pxvh96gmn5nsyxqc7s2c2gac08zy511d39ysqq2f" }, "stable": { "version": [ @@ -27461,15 +27850,15 @@ "repo": "SqrtMinusOne/elfeed-summary", "unstable": { "version": [ - 20221117, - 841 + 20221210, + 1349 ], "deps": [ "elfeed", "magit-section" ], - "commit": "125e0f059d9f186efa2a04e317b59245963d6f11", - "sha256": "1lrzrf759qqa329yi7hx81b12lli530ih10p2jghxbhqgzqndssz" + "commit": "ccbaf85d9ea442203027e784a42b21686f3a87d8", + "sha256": "124cadn3b0l5lyc0vv3wz581nhad0pa0fn82wcnjvihx5p7fg7j1" }, "stable": { "version": [ @@ -27524,15 +27913,15 @@ "repo": "karthink/elfeed-tube", "unstable": { "version": [ - 20220814, - 42 + 20220816, + 2223 ], "deps": [ "elfeed-tube", "mpv" ], - "commit": "d0140f24c7274fca6a357a33ba77dddf70837ba7", - "sha256": "1gg4lnh54yhxa3hshknfgljjc04p8nx0bbf1f9ygp2f9smw19vf8" + "commit": "7e1409e41628d61d8197ca248d910182ae4fc520", + "sha256": "1vsrsnvz0ysd36a99zk7n2giv0gxznlnls8zq6lcc0hwqw78i5cq" }, "stable": { "version": [ @@ -27639,6 +28028,21 @@ "sha256": "1q9glli1czbfp62aalblaak55j8rj2nl8bm8nifnnb8jrzj1qrn0" } }, + { + "ename": "elisp-autofmt", + "commit": "6d5d559e92ade81b24d313da12520896de964a46", + "sha256": "1cij8nh8lldpm46v7m3pc2x2z9gkh1g26qk7in9hn3lx0nwdxavc", + "fetcher": "codeberg", + "repo": "ideasman42/emacs-elisp-autofmt", + "unstable": { + "version": [ + 20230210, + 521 + ], + "commit": "10e3a79a7a058e4956236b98852712b8b7b33e04", + "sha256": "12bglm0dc74q4r8x96h59rr6z7w0lkcwl7pbjfp8iigyx5my15p7" + } + }, { "ename": "elisp-def", "commit": "1f027b844efdc5946d2ad80d7052a8f3b96aac3d", @@ -27893,6 +28297,24 @@ "sha256": "0f2a360h8bizvqk6bmgxm59g8n7id5rzwlbv6d383h15w298mcga" } }, + { + "ename": "elixir-ts-mode", + "commit": "dbc1afa79eb2b9b50c9aed1a33f7eacd8cc5754d", + "sha256": "1fkm5f8hflfajgfn412pr94g82ml4y8pnkljxgnjxhyx8fm8xs35", + "fetcher": "github", + "repo": "wkirschbaum/elixir-ts-mode", + "unstable": { + "version": [ + 20230219, + 1338 + ], + "deps": [ + "heex-ts-mode" + ], + "commit": "9a397f8135468a9ec853a869033946a08d57a1c0", + "sha256": "05rdxs363fxcfiaxqfijxcz2mxvm2amd7dwnygz3zjqp8v48wbzk" + } + }, { "ename": "elixir-yasnippets", "commit": "6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c", @@ -27950,8 +28372,8 @@ "repo": "jcollard/elm-mode", "unstable": { "version": [ - 20221025, - 1514 + 20230102, + 1737 ], "deps": [ "f", @@ -27959,8 +28381,8 @@ "s", "seq" ], - "commit": "2c5184beea35ef92485710647b378bd8c881745b", - "sha256": "056a7xzv7pv6hhqjqcrxra2kpr5r715wj2jrivbcqvmmxrq1vs2v" + "commit": "5797500d74dd8544a89938c09d3cd5cdf7b5d7bc", + "sha256": "06dh14frkh3fnw3xb04z7cjxckrwz13prqyc0m2kwy96pcmnz8rk" }, "stable": { "version": [ @@ -28078,10 +28500,10 @@ "unstable": { "version": [ 20210904, - 7 + 1340 ], - "commit": "7cfc932d590287a80278f330e4ca71cb5702ef80", - "sha256": "01336d4h2pmjcbr3jd4749464rqhwak8ag3bpx28a43mfppph97j" + "commit": "4b42a90610fdb05ac1a2811da5acd55493715795", + "sha256": "1nj310mnckf5mpqici67jzdydbby50la6g6vq7qdaji0c98c335b" }, "stable": { "version": [ @@ -28095,8 +28517,8 @@ }, { "ename": "elnode", - "commit": "987a93afa134fdda466fbdc6dd9c48a572b0be61", - "sha256": "11avrs18cjlk6v2y4y202ay38375pdzh49lizy7w1w2mwy0q40am", + "commit": "a560fc2dbcfd37485890faf5243fbdb653ecaf99", + "sha256": "0g4awkf4akvbxh3f50mkcbsqs1m6031hlkidy8h6w9grrvypywn6", "fetcher": "github", "repo": "jcaw/elnode", "unstable": { @@ -28126,14 +28548,14 @@ "repo": "lujun9972/elog", "unstable": { "version": [ - 20160724, - 2255 + 20221207, + 643 ], "deps": [ "eieio" ], - "commit": "a67237d9813c7591614d95e2ef31cc5e5ed3f31b", - "sha256": "0alg5nbmq56zsc032pvah92h5fw155fbfjc275k9vbh915hs6y0w" + "commit": "e171d0ff0a21011124204d77111e5992b50b7007", + "sha256": "0ikaf8cak6m9rm78hnfd4bh3hx6vrm1307dggxxsz3862kcwj5aw" } }, { @@ -28144,15 +28566,28 @@ "repo": "youngker/elogcat.el", "unstable": { "version": [ - 20151121, - 41 + 20230121, + 459 ], "deps": [ "dash", "s" ], - "commit": "cafe9bd5c0d6561d72066c70a55c246453693efd", - "sha256": "117vb19z006hjs0717r5l90h4rv6rciw3cijlgg006f4qqj3g9s5" + "commit": "f2f19d7ab6b77b8fec55cb67524df629fe967891", + "sha256": "0fwl14xqnxq5d4a9wk0p1xvfkmff5inwmz2v1s8n7w1sy29zslrn" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash", + "s" + ], + "commit": "f2f19d7ab6b77b8fec55cb67524df629fe967891", + "sha256": "0fwl14xqnxq5d4a9wk0p1xvfkmff5inwmz2v1s8n7w1sy29zslrn" } }, { @@ -28201,20 +28636,20 @@ "repo": "dochang/elpa-clone", "unstable": { "version": [ - 20211205, - 1237 + 20221201, + 1227 ], - "commit": "03d8e2af55dfb34ab9da1f9385079a995383b2ea", - "sha256": "19rlqr4w9hkxxwwyfz02vvs96dx92c1gxy5cn1m1v2a5sdfdz1yq" + "commit": "1d130c251690f24c23b77a4e4570157fca881d8f", + "sha256": "0swcpvlh08mrw27yv7a5wbsvlxv72yr5gbzzap9x2bjd839d3ndf" }, "stable": { "version": [ 0, - 2, + 3, 0 ], - "commit": "03d8e2af55dfb34ab9da1f9385079a995383b2ea", - "sha256": "19rlqr4w9hkxxwwyfz02vvs96dx92c1gxy5cn1m1v2a5sdfdz1yq" + "commit": "1d130c251690f24c23b77a4e4570157fca881d8f", + "sha256": "0swcpvlh08mrw27yv7a5wbsvlxv72yr5gbzzap9x2bjd839d3ndf" } }, { @@ -28243,20 +28678,20 @@ "repo": "redguardtoo/elpa-mirror", "unstable": { "version": [ - 20220526, - 1512 + 20230208, + 1148 ], - "commit": "fecb74e8b5ce1562df2951dbbed158d75a21aa7f", - "sha256": "1kalmp2gm0blgyd0mn2iq2nykvb0ix651by7by1zv2yirpqszmbr" + "commit": "9d7cfbf72ef8c7cd014c91e5bb3d8fbebda56140", + "sha256": "0lw018bn5a6z8pxzqscs196l8k18m1m9p0p6amr3n27qmf6fp3vw" }, "stable": { "version": [ 2, 2, - 0 + 2 ], - "commit": "3e0fe0f91d1c5798752c255b89950617f88b8d9e", - "sha256": "1vfhxbn9m3412hpgpnpf523lm9cl4lkbk1fgjvqldlknwks376jh" + "commit": "9d7cfbf72ef8c7cd014c91e5bb3d8fbebda56140", + "sha256": "0lw018bn5a6z8pxzqscs196l8k18m1m9p0p6amr3n27qmf6fp3vw" } }, { @@ -28392,18 +28827,18 @@ "repo": "emacs-elsa/Elsa", "unstable": { "version": [ - 20220223, - 2021 + 20230218, + 2015 ], "deps": [ "cl-lib", "dash", "f", - "seq", + "lsp-mode", "trinary" ], - "commit": "21ed4f46e2d02ffb48b3ae377b0c93732ccf3f4f", - "sha256": "0pfwi4xddxphanh83xzvbj3a04wv7x55xjs796i1h820hm7zhidq" + "commit": "f96b4fcd6dba8b6bbc6bc20d4d9064a52b4f7820", + "sha256": "0snvr61jlj6b3vm6i7hpiwbxlbgyzb2rm19dr1vgaqspp7mficqi" } }, { @@ -28631,14 +29066,15 @@ "repo": "emacscollective/elx", "unstable": { "version": [ - 20221013, - 1037 + 20230212, + 2019 ], "deps": [ - "compat" + "compat", + "llama" ], - "commit": "6f8894a7c7dde11679d38526f8d5717d009a1bd3", - "sha256": "1nk4f0161zzgg4v278x9p3hgyzggmzda1f0s9qs2r0vj5964yvvp" + "commit": "9daf56b1b11ca267f263f70823ade6f1a92d307c", + "sha256": "1yz8vkjbdlqgx1rnad9rr3mavcf8gn9c2wx9khjwf499yl7i3ln9" }, "stable": { "version": [ @@ -28712,11 +29148,11 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20221024, - 1455 + 20230217, + 2219 ], - "commit": "e318a6c8f65371e2ab667d811205a0d9a98dacbb", - "sha256": "1p8ianzpkr6yra7va4pb9c4l9j8dm1l769wzsap5cdqgg7k45inw" + "commit": "176fd090115b3c2aea46ec9bf24401503f337a9d", + "sha256": "1rwnhx61dpzw0x7hnyxj9gfmirfs64qsqgxz3lqm8xk8ir7cpap3" }, "stable": { "version": [ @@ -28736,14 +29172,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20221013, - 1512 + 20230217, + 2219 ], "deps": [ "emacsql" ], - "commit": "ec4f3d091b8e2c60ee305a63a6f45f0ea5996ed6", - "sha256": "0wl3zs33lk61dnk2km7qyp5vzl973iq1zlriqy7qf40pxykmzbbv" + "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", + "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" }, "stable": { "version": [ @@ -28766,15 +29202,15 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20221013, - 1512 + 20230217, + 2219 ], "deps": [ "emacsql", "pg" ], - "commit": "ec4f3d091b8e2c60ee305a63a6f45f0ea5996ed6", - "sha256": "0wl3zs33lk61dnk2km7qyp5vzl973iq1zlriqy7qf40pxykmzbbv" + "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", + "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" }, "stable": { "version": [ @@ -28798,14 +29234,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20221013, - 1512 + 20230217, + 2219 ], "deps": [ "emacsql" ], - "commit": "ec4f3d091b8e2c60ee305a63a6f45f0ea5996ed6", - "sha256": "0wl3zs33lk61dnk2km7qyp5vzl973iq1zlriqy7qf40pxykmzbbv" + "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", + "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" }, "stable": { "version": [ @@ -28828,14 +29264,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20221024, - 1455 + 20230217, + 2219 ], "deps": [ "emacsql" ], - "commit": "e318a6c8f65371e2ab667d811205a0d9a98dacbb", - "sha256": "1p8ianzpkr6yra7va4pb9c4l9j8dm1l769wzsap5cdqgg7k45inw" + "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", + "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" }, "stable": { "version": [ @@ -28858,14 +29294,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20221024, - 1455 + 20230217, + 2219 ], "deps": [ "emacsql" ], - "commit": "e318a6c8f65371e2ab667d811205a0d9a98dacbb", - "sha256": "1p8ianzpkr6yra7va4pb9c4l9j8dm1l769wzsap5cdqgg7k45inw" + "commit": "fbe3627422964b4e6f3702bc0b2769d35c398571", + "sha256": "1w1xghnbvzzy4m0sqbawfyrv3fm2vkhw597x5zy039mxkplr9ca4" } }, { @@ -28876,15 +29312,15 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20221024, - 1455 + 20230217, + 2219 ], "deps": [ "emacsql", "sqlite3" ], - "commit": "e318a6c8f65371e2ab667d811205a0d9a98dacbb", - "sha256": "1p8ianzpkr6yra7va4pb9c4l9j8dm1l769wzsap5cdqgg7k45inw" + "commit": "fbe3627422964b4e6f3702bc0b2769d35c398571", + "sha256": "1w1xghnbvzzy4m0sqbawfyrv3fm2vkhw597x5zy039mxkplr9ca4" } }, { @@ -29015,25 +29451,31 @@ }, { "ename": "embark", - "commit": "a33cbf1d5cb58d2bb7dc535391bb1e1b0e718261", - "sha256": "1pwcgxgmf1pzq76gi4nhb3pq93v0bv48qnn0djdsxkk1snh3v5ni", + "commit": "9468051dcf3ef5b5eb7370168a84b3b9141233f0", + "sha256": "0ylnrfbyy66cx5vny21xxjpkd832pxinb5zh3qfqjm0nr121sw3b", "fetcher": "github", "repo": "oantolin/embark", "unstable": { "version": [ - 20221111, - 143 + 20230219, + 1700 ], - "commit": "2aba953bf11f01b8ac9b2f44d151335eaf09802f", - "sha256": "0fd3x4f5dbm4bhqq3g2z03w6fb2zrrlvw6zxl39ldmq5gmparfbn" + "deps": [ + "compat" + ], + "commit": "8e7c53a8ec6969a8d54a22c7cb76f15e2e7fa3f9", + "sha256": "0dj0qds3mqc7bi4z945519q260mc0jrkmwjh6cz74dlw4csd0c1a" }, "stable": { "version": [ 0, - 17 + 21 ], - "commit": "97270d725761ee02db461b45b18ec16ae31f203e", - "sha256": "1s0ssf4q9kg4c5w87h2ypyvrhi31mz3s6k4h7pxi9a47lkccq8n1" + "deps": [ + "compat" + ], + "commit": "784ce24a1ad37459041418182af49565cad4974b", + "sha256": "17ij5w1mv80j0rr3byahnldsbds8z1q2d61p9gsm0k8jdqxd4rrk" } }, { @@ -29044,27 +29486,27 @@ "repo": "oantolin/embark", "unstable": { "version": [ - 20221023, - 1636 + 20230218, + 2048 ], "deps": [ "consult", "embark" ], - "commit": "f2a83a6db4fbbf171692ca751ff7175daec62cff", - "sha256": "0gi2bin3kx2hf6v5lj6ijnwna0s9h6xpq1pmyjn5rdg331r408di" + "commit": "0cc29e67784cff6315ac068bc97b28dc30e6409e", + "sha256": "00hrajfmq2c8xhwzl2y09bcp891cz6mv2lj99yi71dpbmnrir9hv" }, "stable": { "version": [ 0, - 17 + 21 ], "deps": [ "consult", "embark" ], - "commit": "97270d725761ee02db461b45b18ec16ae31f203e", - "sha256": "1s0ssf4q9kg4c5w87h2ypyvrhi31mz3s6k4h7pxi9a47lkccq8n1" + "commit": "784ce24a1ad37459041418182af49565cad4974b", + "sha256": "17ij5w1mv80j0rr3byahnldsbds8z1q2d61p9gsm0k8jdqxd4rrk" } }, { @@ -29075,16 +29517,16 @@ "repo": "elken/embark-vc", "unstable": { "version": [ - 20220913, - 914 + 20230212, + 1920 ], "deps": [ + "compat", "embark", - "forge", - "s" + "forge" ], - "commit": "316ed8d6c9e3ec7af069efbf2391a977852f067d", - "sha256": "1d2d5sjpaqi3l911b66idjw1nsr4wl626ivr97fvn4lxlqqlhsy4" + "commit": "070666b0de8fc2832aa2510b9ba492565cb5e35e", + "sha256": "17hlwxxp5waz0n2bgn4755jc5c8z8xkx0y0ln9hkg565d35ms5wc" } }, { @@ -29220,28 +29662,28 @@ "url": "https://git.savannah.gnu.org/git/emms.git", "unstable": { "version": [ - 20221006, - 1511 + 20230206, + 1841 ], "deps": [ "cl-lib", "nadvice", "seq" ], - "commit": "d9f67eeb1ce68c228fcbe02596318c6452b6292a", - "sha256": "0mafdjgyn7f6yzzl8pxasmanrz57xr385n00xyzg0p9dl7xrb2rd" + "commit": "43c61412492229eb641fe572c89c826d8fcf64d9", + "sha256": "1v6hvfhzz8vxm25w5kk4dfkml1mkq6h849qw9qffhd7v6abyfvl9" }, "stable": { "version": [ - 12 + 14 ], "deps": [ "cl-lib", "nadvice", "seq" ], - "commit": "88cbd8c8fae985f077418647a5cb1b69f8b6d18b", - "sha256": "1kk4fqhj1rsahd5zn7ngs7si9blx1cvp75ch651r4a549mjbad83" + "commit": "ecd49294fdec8c7741a342acaf89cd408f0abf13", + "sha256": "08wlrylv486pr8jyc3837qhlxck2hrjrywmlacmhshgha4w8sdxc" } }, { @@ -29330,8 +29772,8 @@ }, { "ename": "emms-player-mpv-jp-radios", - "commit": "09ba6da5057061f055d4a3212d167f9666618d4f", - "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1i11jbzpr9r8sz1dn2lrdr4rkfwqncwg95h5xqj3bmgbcaqz3hpn", "fetcher": "github", "repo": "momomo5717/emms-player-mpv-jp-radios", "unstable": { @@ -29437,13 +29879,13 @@ "unstable": { "version": [ 20200202, - 1404 + 1412 ], "deps": [ "helm" ], - "commit": "d445e9cf907e2d1dd3b4dd98c98cfc00626e4ac8", - "sha256": "0yl98qa74ajrnwi85vac5hv08x9bn4njd7c5w1hdg06ncdfrnd51" + "commit": "ffcc84d7060dfa000148e7f8be4fd6701593a74f", + "sha256": "1na7mn9pgnwf9a1fbpb5k36aczzc7506ld5xm7mqpqgwshdxk0hq" }, "stable": { "version": [ @@ -29531,8 +29973,8 @@ }, { "ename": "emoji-recall", - "commit": "8f03b34d3e8e5edf9888c71b6e4bd2e1a5aec016", - "sha256": "06cahk2h6q3vlw2p4jmjrpzycxpm884p31yhbp77lagkqhs2fzbk", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1ahkzyqnyyci634sq1al7b8a9v7lihlkymyy4imsr14ab43wjr8k", "fetcher": "github", "repo": "lujun9972/emoji-recall.el", "unstable": { @@ -29608,6 +30050,30 @@ "sha256": "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n" } }, + { + "ename": "empv", + "commit": "34c97584afc6a2acb35a037f9594494fd7ee11b6", + "sha256": "0lxmggxpdzqq4pcyzwwzfbjkmpx1na07sky0dfh8g9iw7r061c90", + "fetcher": "github", + "repo": "isamert/empv.el", + "unstable": { + "version": [ + 20230203, + 2159 + ], + "commit": "a45a2a01a7e629c9126b444d952fe71bcc9a262f", + "sha256": "04hndxiq5k3zgh0wq8xcn8dzf65fg9zjqb9gav9w53dq3l236h81" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "commit": "5f06e038a98aeadf5e309b95c2bc0ec94355e7e3", + "sha256": "15svjgilmzlk2dpb81mm9w7226hzzz96k8ajrg1bdg1p1s3b8vb4" + } + }, { "ename": "emr", "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", @@ -29723,32 +30189,32 @@ "repo": "hrs/engine-mode", "unstable": { "version": [ - 20220519, - 1916 + 20221217, + 2101 ], "deps": [ "cl-lib" ], - "commit": "d99f9b4ab266b2b777f3f323f766687970456fa9", - "sha256": "1rmfdjg35an5s1grhja7vms10ngk3b980s4zhiszkayvyy61kpx0" + "commit": "a5f1ae2b087109f37a704c496942cec9d9f48698", + "sha256": "11ls3wrvfmcz61pps438x772nk06rqff91s3xi5rzc3n2hkl1ayb" }, "stable": { "version": [ 2, - 1, + 2, 1 ], "deps": [ "cl-lib" ], - "commit": "96b3488a6de2f50b8ba3a101e04ebcbe9821a989", - "sha256": "1xka8i4cdvp5r2v2mkli1zz17x1sdsnmszbhqav2rf94v656d91i" + "commit": "a5f1ae2b087109f37a704c496942cec9d9f48698", + "sha256": "11ls3wrvfmcz61pps438x772nk06rqff91s3xi5rzc3n2hkl1ayb" } }, { "ename": "enh-ruby-mode", - "commit": "cd1ac1ce69b77b11f34c4175611a852e7ec0806c", - "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "07l7i1q08pixd215vq2qgwbsndvvvf13igw3mp7nkq77bnygsifk", "fetcher": "github", "repo": "zenspider/enhanced-ruby-mode", "unstable": { @@ -29857,15 +30323,15 @@ "repo": "purcell/envrc", "unstable": { "version": [ - 20221118, - 1647 + 20230105, + 719 ], "deps": [ "inheritenv", "seq" ], - "commit": "c54bf9e6972c563d345e20571ffd44d7bfb56974", - "sha256": "0nfk85qai1nfr7ls2vhrwnvqfrvf69gsfj4py2rk503wgxabchbx" + "commit": "1954e8c0b5c8440ea9852eeb7c046a677fa544f6", + "sha256": "0vjk8k5k9xsngk50nf611c4j0bikqn9l1y3m35s8y3knwqw22ii0" }, "stable": { "version": [ @@ -29888,8 +30354,8 @@ "repo": "youngker/eopengrok.el", "unstable": { "version": [ - 20200205, - 624 + 20230114, + 1413 ], "deps": [ "cl-lib", @@ -29897,14 +30363,14 @@ "magit", "s" ], - "commit": "6fa16c4ccaaebaef64dca0d3d29904c45fd6597d", - "sha256": "1y6n5b9pk4c3badzhwm7qv1jw60p34z55ljwhaaqlnmv7nq1qnj3" + "commit": "83b1695774f8bdc322e528ade9dffe9b2e93f32a", + "sha256": "16q6la89xmd084h520nf9f7306x28n60yfsngcb6pg6nz62qwvfk" }, "stable": { "version": [ - 0, - 6, - 0 + 1, + 7, + 42 ], "deps": [ "cl-lib", @@ -29912,8 +30378,8 @@ "magit", "s" ], - "commit": "6fa16c4ccaaebaef64dca0d3d29904c45fd6597d", - "sha256": "1y6n5b9pk4c3badzhwm7qv1jw60p34z55ljwhaaqlnmv7nq1qnj3" + "commit": "83b1695774f8bdc322e528ade9dffe9b2e93f32a", + "sha256": "16q6la89xmd084h520nf9f7306x28n60yfsngcb6pg6nz62qwvfk" } }, { @@ -30002,15 +30468,16 @@ "repo": "emacscollective/epkg", "unstable": { "version": [ - 20221118, - 2249 + 20230214, + 2135 ], "deps": [ "closql", - "compat" + "compat", + "llama" ], - "commit": "40bb1f5e0c4fe155d34dc6f7b002fd2560c51013", - "sha256": "1lrpg2xwk8rs8zk125fs78w5nfs210r1qq1gbmi0zvyy2xz4jfrv" + "commit": "57a886da663fa40afaccfb3de6ce8dfa7a33495f", + "sha256": "1pmz8pcn9wffipvzh6n82mngyiysjk56gp3afpn9ryz25d8hbl3i" }, "stable": { "version": [ @@ -30033,16 +30500,17 @@ "repo": "emacscollective/epkg-marginalia", "unstable": { "version": [ - 20220511, - 1942 + 20230212, + 2018 ], "deps": [ "compat", "epkg", + "llama", "marginalia" ], - "commit": "ee784211346c7c374accec2bda78788cc68fa641", - "sha256": "0pl4qwh3fhrj306qrhkfgp8w3yv2hbz2y88gsx1ifsipq22n2343" + "commit": "4f3a66946b1be11c40d1635b60ea21941c882e8f", + "sha256": "1kj720jfbrcss8p1rcinxa4rkqgjdh6xp9m5b754l1n73vx9gkin" }, "stable": { "version": [ @@ -30137,8 +30605,8 @@ }, { "ename": "eproject", - "commit": "d7e82668617a9b599f8994c720f3f123ba1e008a", - "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1fjiw0lhxgzgd4xag48ispwc5vxyj2nii8qyd6apwhzm3q8922py", "fetcher": "github", "repo": "jrockway/eproject", "unstable": { @@ -30597,20 +31065,21 @@ }, { "ename": "ergoemacs-mode", - "commit": "02920517987c7fc698de9952cbb09dfd41517c40", - "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0lsbf3bk4v99zdns9kdvsn6d4rkrcfcd6sw2cvdl02gfxa1id296", "fetcher": "github", "repo": "ergoemacs/ergoemacs-mode", "unstable": { "version": [ - 20220411, - 338 + 20230207, + 1551 ], "deps": [ - "cl-lib" + "cl-lib", + "nadvice" ], - "commit": "9cd89eef490f6c9f4af273bb3dd2c68d5ed2de61", - "sha256": "10p8pi5hlaka2pbrrzfcxjsrv142394k17z8hdx1fq0gvjcycrpl" + "commit": "c2a918c6ab13e29dba2caf2bd06496babd0dfca6", + "sha256": "0lbdxc1gwn7lgphkvwfr6jqzs1nwf60wly3n4xiyzjlw6v0ilxd4" }, "stable": { "version": [ @@ -30663,36 +31132,67 @@ "version": [ 2, 6, - 2, - 2, - 20221106 + 3 ], - "commit": "b00db9d927d8951c44ef2e80fd4941180e9f40e7", - "sha256": "17f1w71r4pbmssg40xx3nx2chk28f0nc8adhr4vnq3ijkw69v1c7" + "commit": "b499d12412bac32ab1af9f470463ed9dc54f8907", + "sha256": "1s7zd01i8pmvi90ywx497kc07z50nah7h0fc2dn6jzb132k5sh1q" + } + }, + { + "ename": "erk", + "commit": "4bcf4535681f284b16b6e80bd3c31fab4376085b", + "sha256": "0pk0yfn3d86x26j0lia1b2k81al7h64p312b4k5jxapavjnm19jf", + "fetcher": "github", + "repo": "positron-solutions/elisp-repo-kit", + "unstable": { + "version": [ + 20230120, + 622 + ], + "deps": [ + "auto-compile", + "dash" + ], + "commit": "6ca1aabc6c60c8722bc5dca4aedbc033b1d9fff5", + "sha256": "1rmynn992wd1138zy9dd5m4qi69hz1k7k27lgv19nawjyrf4ny2l" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "auto-compile", + "dash" + ], + "commit": "008494af28ef37ecc60571e7b2212e44767db862", + "sha256": "0z5h709w01sss69g97608hrjf5zkqvijqafgq8v2p6a9nf6k3ymc" } }, { "ename": "erlang", - "commit": "570bde6b4b89eb74eaf47dda64004cd575f9d953", - "sha256": "1v3iq8wg71g5qf0ypz9h89pq1z02v5clp4sfpcsqppz0x5wp7dr2", + "commit": "4eda604708e52f417e30d284538aa02847de7f19", + "sha256": "1bmqwjq6lkj3a6szc2x0f25674a43674gfz8xg5r07d7z9xks5xa", "fetcher": "github", "repo": "erlang/otp", "unstable": { "version": [ - 20221019, - 643 + 20230215, + 909 ], - "commit": "1da7d9bc5ec5c30c34435aee72601f44c4e7e38d", - "sha256": "1vj3g17mgh8brfy7j0c76yn7s0hcd9hgmilnyhcplz8x76w96w4l" + "commit": "127026003180a834e9fa5d5919c824a184faeb92", + "sha256": "19ziz87sny9sck7ydp54mbp831r0g8sp8pznj9ak64rhbkc1nacq" }, "stable": { "version": [ - 25, - 1, - 2 + 26, + 0, + -1, + 1 ], - "commit": "38ad8e28421c745c06ef9bd55f6e6204cd1f15ef", - "sha256": "0fn6zyqrgyiznyghkhygak524f3clc3kz91rarq8cqn3r920dmg9" + "commit": "127026003180a834e9fa5d5919c824a184faeb92", + "sha256": "19ziz87sny9sck7ydp54mbp831r0g8sp8pznj9ak64rhbkc1nacq" } }, { @@ -30703,14 +31203,14 @@ "repo": "k32/erlstack-mode", "unstable": { "version": [ - 20220617, - 2049 + 20230202, + 1955 ], "deps": [ "dash" ], - "commit": "a4a30f74e48894ccfdefc073a9e1b005ee632017", - "sha256": "132w9xbdc6r7sa03wpyd0vpn0z12pgawv4r21ihpgqpqmk4srrj3" + "commit": "b0fa450da826b7b9fcfe9b0b209955735830eb38", + "sha256": "03p9cdmagr0ifvlq2z2c3c09s1airhgnpr2f9zr8q405r6l3ds61" }, "stable": { "version": [ @@ -31359,14 +31859,14 @@ "repo": "iostapyshyn/eshell-vterm", "unstable": { "version": [ - 20220506, - 1212 + 20221229, + 1328 ], "deps": [ "vterm" ], - "commit": "4e8589fcaf6243011a76b4816e7689d913927aab", - "sha256": "0hsby6ardi9g37agh181sgvsdvjmvi1n6jsqp34mwslwx7xxjvbv" + "commit": "e96c30ad5e7d63b778fc3232e81b090b63b13277", + "sha256": "0zgf2yv85awlxc44cqbnyrzbkygxqp6hdqfskyg8qqjbm56cycvy" } }, { @@ -31551,16 +32051,16 @@ "repo": "ecukes/espuds", "unstable": { "version": [ - 20160905, - 1300 + 20230218, + 910 ], "deps": [ "dash", "f", "s" ], - "commit": "ef854367d469c6eff459d24a544addd21a4fbd23", - "sha256": "024msmnwlnsgqa523s3phxj1g77pyw917gz1fhz56062576nv22q" + "commit": "57c18a48f1a01d8174298eaab4fcf3b2c6549291", + "sha256": "00m4v31ig5nvnnfl2ahz3dw40njvrxzfnch3ly6asvf2b17spa9i" }, "stable": { "version": [ @@ -31631,17 +32131,17 @@ }, { "ename": "ess", - "commit": "30182a89f9f9396f4b3ab8ee0722d99f2fedb221", - "sha256": "0flvvnyrym5dl095sm9r0cj5lgqrb4whl4zrzg0l124kwk5v9h50", + "commit": "c1cca9d0b5a701d542f37f21748eb4be00af3b4a", + "sha256": "1caxv38inm5sgd39162c3jc0d5myaimn7wx044r1krj687as5lx6", "fetcher": "github", "repo": "emacs-ess/ESS", "unstable": { "version": [ - 20221108, - 1714 + 20221204, + 1348 ], - "commit": "7ec23bf341c23445c98f5e1faf6a1369b92f2e9f", - "sha256": "0g0gp2f5a1p4vh60yispyq4ilq744j5qa3bds362f9cwcf32q7cw" + "commit": "b6aefb9ca231c3cbb1a6532b8afa4022c2678f81", + "sha256": "0xjj842cxqg6lka9h4a0qamdjc0iifnhcddpdafarbssh2qaxiys" }, "stable": { "version": [ @@ -32010,8 +32510,8 @@ }, { "ename": "eterm-fn", - "commit": "a1955059915511fd16c2d671c262dde47adf724a", - "sha256": "1v4kpix16a07i95lcryj65ln0l31vs9k7jfnmdyrpsf7q2mw7z0j", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "18rn0mhq9fmpj2cdr6i499n9p8r51pj6h5k0wa8kz52fjgf07l73", "fetcher": "github", "repo": "oitofelix/eterm-fn", "unstable": { @@ -32247,11 +32747,11 @@ "repo": "beacoder/everlasting-scratch", "unstable": { "version": [ - 20220412, - 921 + 20230105, + 507 ], - "commit": "b3f8339f9564a1926bd8b71c163fa7660cc3b1f4", - "sha256": "17lbrcgddrxw111a8al3i5cgnksmkv1qi0wzqzmvvggq073mvmqr" + "commit": "1b7dac779501dcd988552aa6455a5be89e8b0562", + "sha256": "0hpv7a7jjs0shs7cda8q1bigwjb31miqbf8f4wr2swmjhh15w7h8" }, "stable": { "version": [ @@ -32270,15 +32770,15 @@ "repo": "emacs-evil/evil", "unstable": { "version": [ - 20221115, - 1255 + 20230214, + 956 ], "deps": [ "cl-lib", "goto-chg" ], - "commit": "5ce46a1fc175a8f13507ce2b6ec4c3618923f093", - "sha256": "19mkwjnsq04mldc70mimkl7bc9mqigc619rpzc9dl7z65z7fgk8c" + "commit": "2ce03d412c4e93b0b89eb43d796c991806415b8a", + "sha256": "1bxlsrslx18g4i1rnjxlqmcs49mljypnza9mjjakfzfm44z90c74" }, "stable": { "version": [ @@ -32394,14 +32894,14 @@ }, { "ename": "evil-cleverparens", - "commit": "e3b3637d6527b16ea0d606fd87b01004be446b09", - "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", + "commit": "e00f4c64711143d30e754f48b1f38937aec9a5ef", + "sha256": "0wwav0094drn3wx2rdpafvjqb2458ni5nzw9c4aigsrih9qghhzq", "fetcher": "github", - "repo": "luxbock/evil-cleverparens", + "repo": "emacs-evil/evil-cleverparens", "unstable": { "version": [ - 20170718, - 413 + 20230216, + 2148 ], "deps": [ "dash", @@ -32409,8 +32909,8 @@ "paredit", "smartparens" ], - "commit": "9bce7cc5e2ab80adeafb0f1a579eb27bdb7a8d2f", - "sha256": "1wplh9lk0cplkpik088lk5am5b8ks0rs8bp3b6wn0bn1r0l3jcxg" + "commit": "8d92bd47f07ca2dcf15835cfc3cb6e3a29c6146d", + "sha256": "1kp1n8x9xbqxjba2aizpnvv2236mv8831ahf2a7wah269i0z2fpv" } }, { @@ -32421,15 +32921,15 @@ "repo": "wbolster/emacs-evil-colemak-basics", "unstable": { "version": [ - 20220222, - 1856 + 20221230, + 1443 ], "deps": [ "evil", "evil-snipe" ], - "commit": "66648de206a7368013f28c0d053b1b32c3efe6c6", - "sha256": "1h9d9jicvc8kdw8yfpsasl038h7s6zpfh1gjfcxn3lwgfmfnjkh1" + "commit": "ea519b962f051cabced8aadaf6ed0134b861225c", + "sha256": "10gk3gi1g35xjkg6qfs3k83p9z8bz5pbi4av7g4ibj5f8h70gxzi" }, "stable": { "version": [ @@ -32471,15 +32971,15 @@ "repo": "emacs-evil/evil-collection", "unstable": { "version": [ - 20221031, - 1942 + 20230214, + 1800 ], "deps": [ "annalist", "evil" ], - "commit": "c3611aefc36d2236de1f085720c4c017ac0eb4cf", - "sha256": "0hbrvvb4h34w5fh4hplg3z3if13jqzll0lbsfg8ic1l61nicky4q" + "commit": "aaf3e0038e9255659fe0455729239c08498c4c0b", + "sha256": "1791240px7n98k18cxsi2shdbjiayn80r20y86qdmb8j82rpdqcn" }, "stable": { "version": [ @@ -33019,11 +33519,11 @@ "repo": "redguardtoo/evil-matchit", "unstable": { "version": [ - 20220927, - 220 + 20230205, + 420 ], - "commit": "ec3dd819983b2d824142efddd46ef29b46a7c454", - "sha256": "00yclv8fky3czwnp3qfvcbbadqagqzyf6cxq50vyhmvjhnf9xspi" + "commit": "2218356f05ad19efc9476d0bd10051843d2306da", + "sha256": "06vwfb7qn488i7mai30g5x9wa5yjwi7725i6ngnz5i7j9xn4hx93" }, "stable": { "version": [ @@ -33148,20 +33648,20 @@ "repo": "redguardtoo/evil-nerd-commenter", "unstable": { "version": [ - 20221015, - 245 + 20221207, + 1245 ], - "commit": "9609fb170da00aeca1716b022d93e1cb68464a34", - "sha256": "0xrbmz9mx4aclqgjyjaq7vj9xf4291rw4nxaz2nvqblv8yylqbr0" + "commit": "8c0f23d46a3927b9f83c1c2c4590be53d0b740db", + "sha256": "1v2iwci0yc1sld1sidrwdnqriyhs78ba3gp4d9az0af48grl7x1w" }, "stable": { "version": [ 3, - 5, - 8 + 6, + 0 ], - "commit": "9609fb170da00aeca1716b022d93e1cb68464a34", - "sha256": "0xrbmz9mx4aclqgjyjaq7vj9xf4291rw4nxaz2nvqblv8yylqbr0" + "commit": "8c0f23d46a3927b9f83c1c2c4590be53d0b740db", + "sha256": "1v2iwci0yc1sld1sidrwdnqriyhs78ba3gp4d9az0af48grl7x1w" } }, { @@ -33187,14 +33687,14 @@ "repo": "juliapath/evil-numbers", "unstable": { "version": [ - 20220731, - 2346 + 20230117, + 53 ], "deps": [ "evil" ], - "commit": "7bd9bb0bce2ed61fa256952fbf37fc5259928925", - "sha256": "0z8rma0h615lybvbx67apcddy7jfm4lbrg6hr5k4hmll3q7b594r" + "commit": "8724645c84dc310f6155eec452913bb79c0c44b3", + "sha256": "0dxw2d85zxnh7rgfq1vn9b71nrn48j5c7fwbzb02m74qddcjnjg0" }, "stable": { "version": [ @@ -33491,14 +33991,14 @@ "repo": "porras/evil-ruby-text-objects", "unstable": { "version": [ - 20200323, - 1552 + 20221130, + 1832 ], "deps": [ "evil" ], - "commit": "8f8085b3088b2d17e4f2ed1a61a97dbb27a19c3d", - "sha256": "1y8gji67drk45h05ijjcqsjr9hbwj8fnfbhrgdmvmfv80b6f8khj" + "commit": "41c8b3eddb610206626a8a03e69857f903209e86", + "sha256": "1gakixp64ds35vfykp0niy9gdxymr1rlx2hphlbic1952dinvx9c" }, "stable": { "version": [ @@ -33644,15 +34144,15 @@ "repo": "ninrod/evil-string-inflection", "unstable": { "version": [ - 20180313, - 1755 + 20200524, + 1402 ], "deps": [ "evil", "string-inflection" ], - "commit": "5512db7e0e5fd28c881cc278add50ffae1f121f0", - "sha256": "1114yacpb0a0lp7kz0lb1mb7s1adhk370i3kj78a911i72c9szi1" + "commit": "d22a90ab807afa7f27f3815b5b5ea47d52d05218", + "sha256": "1vwch4kwwh82k1rlc9qsg74zbghn6vkgch5xb1wz0dmbv4id06l5" }, "stable": { "version": [ @@ -33676,14 +34176,14 @@ "repo": "emacs-evil/evil-surround", "unstable": { "version": [ - 20220504, - 802 + 20221229, + 1650 ], "deps": [ "evil" ], - "commit": "c9e1449bf3f740b5e9b99e7820df4eca7fc7cf02", - "sha256": "1ghc10rsrfvmd7m5qf7695gz241v9m5c2fg2mflwy8pw0h2l9nki" + "commit": "f273821f575ace519066fb106ee45a5b8577475f", + "sha256": "10d6q25m5wly4iysyybkha9y8mlfikqb2smra1zy6xvkxyx5mclr" }, "stable": { "version": [ @@ -33794,15 +34294,15 @@ "repo": "iyefrat/evil-tex", "unstable": { "version": [ - 20221021, - 1344 + 20221127, + 2033 ], "deps": [ "auctex", "evil" ], - "commit": "97616a81fb88ad558051b57d899fdaba56d8d7fa", - "sha256": "1v80bx3gq7ld03gzafbnsj2nkzc6zd7v7lsmdcp9qdpnnz88i3ky" + "commit": "3e0a26b91a1a56b0f35cbd450d01431057551750", + "sha256": "0bkr7hgwf0zi359l77r79dns2zx8xnb8l9h79hk20bn00d0dlg7v" }, "stable": { "version": [ @@ -33973,15 +34473,15 @@ "repo": "meain/evil-textobj-tree-sitter", "unstable": { "version": [ - 20221024, - 351 + 20230219, + 400 ], "deps": [ "evil", "tree-sitter" ], - "commit": "087c3c3ce249515446d01f4a98d9fadc2bc41666", - "sha256": "0jds213935jf84fq6ks0fcd6ilc14xzfs1rdmhr4kajalkl8127w" + "commit": "02f8253034042d8f171bc0ef93e3538b71a29153", + "sha256": "0r2wfs1762jnh1svypyzgc00f8la4vjlaxz1bifbds11ac6g4726" } }, { @@ -34033,13 +34533,13 @@ "unstable": { "version": [ 20150103, - 650 + 653 ], "deps": [ "evil" ], - "commit": "79b47a9f444ddaa289c66e8995ee116941429c24", - "sha256": "11hiaxiqc2f522y7rgfr6bjnmx4nrssq1q9g96w4rsb10627qvsf" + "commit": "909273bac88b98a565f1b89bbb13d523b7edce2b", + "sha256": "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2" }, "stable": { "version": [ @@ -34099,15 +34599,15 @@ "repo": "roman/evil-visual-mark-mode", "unstable": { "version": [ - 20190116, - 1557 + 20230202, + 318 ], "deps": [ "dash", "evil" ], - "commit": "ac5997971972a9251f140b5542d82790ca4a43b4", - "sha256": "1gh5614l4zf15109zc64pnnc5rp5ilah9mavgr2rbv2874k3vs4n" + "commit": "2bbaaae56ae53e68a8bcc7bc2cfe830a14843b4d", + "sha256": "1ggxifiz2qm26v2fw8m9ccjp3jbmhyhb8wv93m8k1pnyh8b7la2m" }, "stable": { "version": [ @@ -34294,14 +34794,14 @@ "repo": "cyruseuros/ewal", "unstable": { "version": [ - 20190911, - 1315 + 20200301, + 839 ], "deps": [ "ewal" ], - "commit": "f822c0b26635c69a62e36cbc9696eb35b425ca61", - "sha256": "1qgb10mhjgpk51pwbd726pzcn48730kw9q7nfib8r4rqsgk1r9ar" + "commit": "732a2f4abb480f9f5a3249af822d8eb1e90324e3", + "sha256": "09dgs0g5hcf5hris8i1w6w7wxarzmsagyc3l50rflvxy3djhlbkd" }, "stable": { "version": [ @@ -34324,15 +34824,15 @@ "repo": "cyruseuros/ewal", "unstable": { "version": [ - 20190911, - 1305 + 20200301, + 839 ], "deps": [ "ewal", "spacemacs-theme" ], - "commit": "7b3d4160413f9649866f5cac033b5f932ca436f3", - "sha256": "1mx3zb0iajrhnph62m9q5dbdwnbhrpafbf5mcpyyd75p933qlhra" + "commit": "732a2f4abb480f9f5a3249af822d8eb1e90324e3", + "sha256": "09dgs0g5hcf5hris8i1w6w7wxarzmsagyc3l50rflvxy3djhlbkd" }, "stable": { "version": [ @@ -34403,14 +34903,14 @@ "repo": "ninrod/exato", "unstable": { "version": [ - 20180305, - 1042 + 20200524, + 1319 ], "deps": [ "evil" ], - "commit": "39c08f56483243c28a39886a7218039a138e5f63", - "sha256": "1q0jjaw5k9bql7bk5idin724vbcgx0iwn2dm4mg1c51cczqsd2rg" + "commit": "5e7b5721bf48aa49c6cdb5d41b908ef7d513b2a8", + "sha256": "0xia8dvpz294pqc3zdr0knhdlw251dhkdm69v1005674kd15259w" }, "stable": { "version": [ @@ -34488,8 +34988,8 @@ "repo": "anonimitoraf/exercism.el", "unstable": { "version": [ - 20221030, - 2058 + 20221220, + 2047 ], "deps": [ "a", @@ -34501,8 +35001,8 @@ "s", "transient" ], - "commit": "22b270047541a8173467d0e929e318b9f8606c3c", - "sha256": "1z0plm622dn5ybqlmagiy91wqj956qrlyys6557yw1l1rqvjc3ds" + "commit": "a8248e1afdae9155992227611cf134ec49fdd489", + "sha256": "1zh00fk9s9xbrm6h6d3jz3qj0vccyhibghibb4lxv56c0mvav0bj" } }, { @@ -34721,11 +35221,11 @@ "url": "https://repo.or.cz/external-dict.el.git", "unstable": { "version": [ - 20221113, - 1021 + 20221210, + 407 ], - "commit": "c790489635a497cdb8f4277a982677c95479ffb0", - "sha256": "08sh4j4hd09r9ahrr19g1lky14s7sqqpyjhjwn3lv0mbs971zhgn" + "commit": "a9ceb6c2e12df460ce1686d47cafd88f212d0291", + "sha256": "1sdnzdph6gck2ghmafad10xc99avj7i01ad2r9r6iixhpa5qbpb9" } }, { @@ -34925,16 +35425,16 @@ "repo": "tumashu/exwm-x", "unstable": { "version": [ - 20210419, - 950 + 20230119, + 624 ], "deps": [ "async", "cl-lib", "exwm" ], - "commit": "2ab026f407b011a8e8380c889990e85e69cb3a4e", - "sha256": "05jilbhpbbqbgpxhy11yadmal4gsh8bh1fffxkz8b5k8dpajc634" + "commit": "1e2bbfca872ad76eaa8f1c00d17762bed256881a", + "sha256": "1cwbdik88qw365avw2977snlj9wajyixhidlbncj2y022s5f9y2m" }, "stable": { "version": [ @@ -34969,6 +35469,26 @@ "sha256": "0fi0j5razgkchkmg4rf36a8d28602f0x2idjga24p93mmfziwb32" } }, + { + "ename": "eyebrowse-restore", + "commit": "57869beea37deae6869554a8e4f8a17d8e20238b", + "sha256": "11whdav4wpmvqy29zpl8s9wq8jvjca06qr2qz8331w9flbxmzzz9", + "fetcher": "github", + "repo": "FrostyX/eyebrowse-restore", + "unstable": { + "version": [ + 20230122, + 1510 + ], + "deps": [ + "dash", + "eyebrowse", + "s" + ], + "commit": "77f171de019586a66481bcde6ab11f3689e97bc6", + "sha256": "1klsdbx7063p46ipq8k7z37vd4x6kg46lrjic7qdz4x7qi35ipp3" + } + }, { "ename": "eyuml", "commit": "b09a8d723e357da67441e65047759ccfa9cb7ef6", @@ -35020,25 +35540,18 @@ } }, { - "ename": "eziam-theme", - "commit": "4e0411583bd4fdbe425eb07de98851136fa1eeb0", - "sha256": "0iz3r4r54ai8y4qhnix291ra7qfmk8dbr06f52pgmz3gzin1cqpb", + "ename": "eziam-themes", + "commit": "d63e2c2812b3b0932d16bb945da13d4498cc59fe", + "sha256": "1f0wakas4fqf9bmx9w17i0a3k5w698jrx13faydd12kdz7kwbwdr", "fetcher": "github", "repo": "thblt/eziam-theme-emacs", "unstable": { "version": [ - 20221003, - 1256 + 20221121, + 1609 ], - "commit": "5bec687a692331f7d8e1fe012817d66c40234bad", - "sha256": "1br74wkzvq51wqhimsf0c7pzvfpcb80hb47dqjahh938y7x0fkdc" - }, - "stable": { - "version": [ - 5 - ], - "commit": "5bec687a692331f7d8e1fe012817d66c40234bad", - "sha256": "1br74wkzvq51wqhimsf0c7pzvfpcb80hb47dqjahh938y7x0fkdc" + "commit": "7fba717293072d0afdbd1c45351ddf47b26b3064", + "sha256": "14v23aqyl971yaw00xmqymlmw6abkx1biflqy1q0908q6fzg170n" } }, { @@ -35049,15 +35562,15 @@ "repo": "rejeep/f.el", "unstable": { "version": [ - 20220911, - 711 + 20230116, + 1032 ], "deps": [ "dash", "s" ], - "commit": "d50dca48929575642912bb5bbb2585709ba38f82", - "sha256": "0mr0i823m9fs8n0qf1cj7lvlbyjspk8kblhk9br2hk7hnxk470xz" + "commit": "8a70ba3002197e3c6421181492b60b37d4d4af7b", + "sha256": "1lg0mkcvr4x399m2cp8ryzwv9vqwv0bgkc59af43xz6ry26mpgbh" }, "stable": { "version": [ @@ -35286,11 +35799,11 @@ "repo": "ideasman42/emacs-fancy-compilation", "unstable": { "version": [ - 20220725, - 2313 + 20230109, + 536 ], - "commit": "6d98cf908b0bbd6286a55e6bf11905010468a006", - "sha256": "0b4c8wr8r1ch0g8s7whpxxfj3gsysaay4n1xznas36157v9d4135" + "commit": "889e77c899cbf28673915b7b0161d45734bfdcb7", + "sha256": "1zxynjsa6h0nvlkrvbdrzvqkxq10sggsg62lpaf1gzx1wqshhfq4" } }, { @@ -35743,11 +36256,11 @@ "repo": "technomancy/fennel-mode", "unstable": { "version": [ - 20221025, - 1830 + 20230215, + 1641 ], - "commit": "da958db7a6fdeeaf202cd8fdca630e85dbf6a455", - "sha256": "13ycnl5js9j8208cawm3vpkcqzw6nfjf097hihy3nsn9x1wszlkl" + "commit": "52da9715b0d046597cb322d3a98cb27ae6e5719e", + "sha256": "1vkzgmxmghbsb7mk0dc3cl07f7isvbgc36vw7v16rmfr1av3z1lz" }, "stable": { "version": [ @@ -35806,6 +36319,25 @@ "sha256": "0i6r2mlpahrnszr9vk476iqvc1c8cpp6wn6fhlnz6vw4dybpw5p5" } }, + { + "ename": "ffmpeg-utils", + "commit": "b96e8296708e27ec51b5a084a924bdb86d07ae5d", + "sha256": "1b58yf8q8sflsyxxjklxarb5xs337577h01kv03hgap1s4cxwm84", + "fetcher": "git", + "url": "https://repo.or.cz/ffmpeg-utils.git", + "unstable": { + "version": [ + 20230212, + 55 + ], + "deps": [ + "alert", + "transient" + ], + "commit": "7ae311d235514b7b5bf12dc2c214856856c2c411", + "sha256": "002f7s6dncmlzv40v2ngp7165fkxyb1rc5malfx57jf4y5cs9vp6" + } + }, { "ename": "fic-mode", "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", @@ -35851,6 +36383,37 @@ "sha256": "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs" } }, + { + "ename": "file-info", + "commit": "85c92093f85d5545fab608b5eff1adef190c95a1", + "sha256": "0ig5qjnz03v37xci361sygb1ysq09gwq1gp40fcnrn78x05m9b94", + "fetcher": "github", + "repo": "Artawower/file-info.el", + "unstable": { + "version": [ + 20230214, + 1955 + ], + "deps": [ + "browse-at-remote", + "hydra" + ], + "commit": "0c7717796ed84629145387b4b9ef60b600c3efc0", + "sha256": "1xs5y96adwg2b0qdm7icgw5ma9nn51ikzchwy7kwswhx054ad9pa" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "browse-at-remote", + "hydra" + ], + "commit": "d598b5cf6d9cb14e83c3a406eb48d262e12b6c0d", + "sha256": "0hlap2an8s6qiy504vy4bgksf1dc2g9q1z6mq05349yya5kni46f" + } + }, { "ename": "filelock", "commit": "bda76dfbf37eaa17bebb4b8c34006704862db433", @@ -36172,11 +36735,11 @@ "repo": "thisirs/find-temp-file", "unstable": { "version": [ - 20200117, - 2254 + 20221119, + 1350 ], - "commit": "2bfcdba0d6a8a0e6faa080cb04ff0f7ed06491ba", - "sha256": "1fr48mkrwxmpjk5lrznrr6nhnj8h6d3v984261nm44c0rzziq7vj" + "commit": "601e39b052c66df4cd928cf7e308dd6a54769a99", + "sha256": "0mlzrwiv9m8404lx576gkig8icmp7v2fk36x7z1zw2r4vi6r0qc1" } }, { @@ -36232,8 +36795,8 @@ "repo": "LaurenceWarne/finito.el", "unstable": { "version": [ - 20220722, - 1932 + 20230116, + 1124 ], "deps": [ "async", @@ -36244,13 +36807,13 @@ "s", "transient" ], - "commit": "cb4ed363d2ada2bff621c6b6586fe0c3342331b6", - "sha256": "0600b0f5m6s38r1m5z21gzl1pp29sircm89y5rf6imqgwasnx9gd" + "commit": "286bea5b4f27d906aa7fe71baa35c8f2bf55c286", + "sha256": "0g8sg0d1d6p9lwxnb0agj3cjnhqwyxgddqpvpi271l2hvvdaq7y0" }, "stable": { "version": [ 0, - 4, + 5, 0 ], "deps": [ @@ -36262,8 +36825,8 @@ "s", "transient" ], - "commit": "a0fe025086046aecf5490c993afe9e716324f7e5", - "sha256": "0g5pv08mv4c9jscsp1cyldwi3xdyppys6m1bsq293v5kk38agmdf" + "commit": "5e20777922aafb6afc2ddac8f4a62cd0c1ed987d", + "sha256": "1hpp2raw4ga0z8ydjg1j8pmkzks2j5qp2p8wxzcr6bnisgh1k5b8" } }, { @@ -36660,11 +37223,11 @@ "repo": "seblemaguer/flatfluc-theme", "unstable": { "version": [ - 20220522, - 1657 + 20221204, + 939 ], - "commit": "1679983d22a3b213262e09b3b25db75818a9d37a", - "sha256": "1ikkr45bdkajg1s3slq00wwrk06iyly2rnrigzm5vnbw6b5ildn4" + "commit": "553167d27725d078f5c66ed7a31ca8ec9376dfd0", + "sha256": "1d7ffaa90r9n89xx79f0mkmg40p96f415n1lg603vfy6dls1dfmb" } }, { @@ -36759,27 +37322,27 @@ "repo": "plandes/flex-compile", "unstable": { "version": [ - 20220729, - 145 + 20230116, + 1638 ], "deps": [ "buffer-manage", "dash" ], - "commit": "07d0e124712f50dfe86a597cf4c7c794e7cdc69e", - "sha256": "03la8jd4n15gx92xl7z5b29xjly2if0pva2bfzqvsm88njp4wgaw" + "commit": "791e297048e02ef1649ad17a5a2bd9d78e766c03", + "sha256": "0dn0jqx3wrkh0hbqdxvaw6nbr37snxbaf3hgam4fgb8s25m7d0a8" }, "stable": { "version": [ 1, - 0 + 1 ], "deps": [ "buffer-manage", "dash" ], - "commit": "c1c696433a650b0273f28da4f57bde7960395386", - "sha256": "0ls1ghh7j0lmp3l03d5pmczqs54rxwd8p5wpf28mvy0w28vw2m33" + "commit": "791e297048e02ef1649ad17a5a2bd9d78e766c03", + "sha256": "0dn0jqx3wrkh0hbqdxvaw6nbr37snxbaf3hgam4fgb8s25m7d0a8" } }, { @@ -36799,21 +37362,21 @@ }, { "ename": "flim", - "commit": "94faf56ff9bf94f51ef5253e4c4244faec5eecfd", - "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0s1xjvizn3jwn9h5iq83vdmw6lgmpfk7dhvlj2ayb59q7bmf4xla", "fetcher": "github", "repo": "wanderlust/flim", "unstable": { "version": [ - 20221103, - 353 + 20230205, + 1423 ], "deps": [ "apel", "oauth2" ], - "commit": "57c6b868aa314717f40a520daed7249665e8d992", - "sha256": "1mf8r5mf3bd0719fnhifb6lfvl7n4m552crcdhkbkkif8srrl6df" + "commit": "2cf5a7891090faca8de725b1d3743dcedf233ea2", + "sha256": "1wsnipyl3blldcl8ynmpj1mxfvl7kjmxd8gapl83vqd3r0l9cr6q" } }, { @@ -36973,11 +37536,11 @@ "repo": "amake/flutter.el", "unstable": { "version": [ - 20220526, - 1214 + 20221225, + 944 ], - "commit": "49506681cd2d80713af5a04a2d33b8e6d89e3b96", - "sha256": "0hpq7yxk6wvnhfrbxs90wkncgyvygr7yfjzfqv719q5dag5mk5b4" + "commit": "684f15ea19c4a7947eda945cb6e58a67baec8e90", + "sha256": "0nqzy8b27nxfpg7gh5wdh1h3dbsapa4nh4gs0yx2x1a4r3v2lh0v" } }, { @@ -37025,14 +37588,14 @@ "repo": "lewang/flx", "unstable": { "version": [ - 20211101, - 146 + 20221213, + 542 ], "deps": [ "cl-lib" ], - "commit": "e3b3f0533e44c5250ce73d728b59a7e96c692b5d", - "sha256": "0sgs83gn6ms90yk68ygvcib8k5k94ql6s23qzllas07qzmx0cn48" + "commit": "7b44a5abb254bbfbeca7a29336f7f4ebd8aabbf2", + "sha256": "18vzjsscm9hsxxnacqfaskwayxhlg258rj8m7m8kim12nndgkzcy" }, "stable": { "version": [ @@ -37055,15 +37618,15 @@ "repo": "lewang/flx", "unstable": { "version": [ - 20180117, - 1519 + 20221213, + 542 ], "deps": [ "cl-lib", "flx" ], - "commit": "9c5cb5de0202b4eaac9359c84ca7ce9cbd7ee835", - "sha256": "0i7pj4l0ilihvkgal8d71idy5jr9zwanzxch350pg4myr6j1hnad" + "commit": "7b44a5abb254bbfbeca7a29336f7f4ebd8aabbf2", + "sha256": "18vzjsscm9hsxxnacqfaskwayxhlg258rj8m7m8kim12nndgkzcy" }, "stable": { "version": [ @@ -37106,8 +37669,8 @@ "repo": "flycheck/flycheck", "unstable": { "version": [ - 20221112, - 1552 + 20230218, + 2135 ], "deps": [ "dash", @@ -37115,8 +37678,8 @@ "pkg-info", "seq" ], - "commit": "ab93e2db1dd8333e86f8aeeafbf1e2a0e5f0be38", - "sha256": "10q5jlkbg0hvm96n2xr8k16ykwdvchb04h79bzhhm4x3zd99q4p7" + "commit": "55614401a955e73f5c0f05c0e098d9e717e3116d", + "sha256": "1ywsdyzagwzrj0mjifn4yzyv5xxgaxrr865rxrp6dj474h054dnj" }, "stable": { "version": [ @@ -37465,8 +38028,8 @@ }, { "ename": "flycheck-clojure", - "commit": "c9c642a234f93ed4cf5edcf27a552a8916984946", - "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0xfhgnn6ixypvaqysr2zc3lcqz5j6xsm2s5kb4id2xnl7s1pp0b3", "fetcher": "github", "repo": "clojure-emacs/squiggly-clojure", "unstable": { @@ -37523,15 +38086,14 @@ "repo": "flycheck/flycheck-color-mode-line", "unstable": { "version": [ - 20200528, - 416 + 20230106, + 1829 ], "deps": [ - "dash", "flycheck" ], - "commit": "575b604cfe21f65fb07c134392c382c163c87739", - "sha256": "04wc61my2p6zbq22nh6yvap5aww9lfr5zgd7mf0l1chbvi9scdn0" + "commit": "df9be4c5bf26c4dc5ddaeed8179c4d66bdaa91f5", + "sha256": "0hrpljkq5djgpz9llk7hmqfym9svq3l8nhlbd27bhpv95bdp58w9" }, "stable": { "version": [ @@ -37705,6 +38267,36 @@ "sha256": "1ffpxnwl3wx244n44mbw81g00nhnykd0lnid29f4aw1av7w6nw8l" } }, + { + "ename": "flycheck-deno", + "commit": "cbf839b7120e52fdd09f9f8ccbcaa7d8a4c590c2", + "sha256": "1bsnms8ccf4qh9g0gzr8cs82azbq1c2ajk2ahdyrsv8ngr8c2r4b", + "fetcher": "github", + "repo": "flycheck/flycheck-deno", + "unstable": { + "version": [ + 20230212, + 1754 + ], + "deps": [ + "flycheck" + ], + "commit": "e7cd15a6a05be73d1f83a16d2efa6b49a105a9cd", + "sha256": "12xy90xlzgrcb4kwh9xlnav7c8kdszf9i4qrk0klkj3p0xbpj0qd" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "ea7a5330535bdb25edb1c147f4d6d426abb1e097", + "sha256": "1vvhzidnpzf25z5qn85zx7cpwaavd22vsds4q9y5mpmf8hi526l6" + } + }, { "ename": "flycheck-dialyxir", "commit": "fa49551b8f726c235e03ea377bb09a8be37b9f32", @@ -37827,6 +38419,25 @@ "sha256": "1qkzir3lzz4lc5kn55qb52cm5y7iy8w1ljq6xxzcjxfbk9980y0y" } }, + { + "ename": "flycheck-eglot", + "commit": "ead6dfff6183385b6792bae4637bcaec76d87428", + "sha256": "0awm312r8my2fy7b2zchhfsf12mv7ad24d4wx85f9p5dalgi2340", + "fetcher": "github", + "repo": "intramurz/flycheck-eglot", + "unstable": { + "version": [ + 20230202, + 1844 + ], + "deps": [ + "eglot", + "flycheck" + ], + "commit": "31905ad676d67fb2967a3b6d907312380696615f", + "sha256": "1zkwb0w5rp0b53r4plvckwild717crv51ymfmhcdqdrjlv9qpzca" + } + }, { "ename": "flycheck-eldev", "commit": "170b59e0f97ea8a27910efc1de3c82ee188a3fe5", @@ -37904,14 +38515,47 @@ "repo": "emacs-elsa/flycheck-elsa", "unstable": { "version": [ - 20220523, - 1105 + 20230217, + 1640 ], "deps": [ + "flycheck", "seq" ], - "commit": "39c486096d76344f3045e69620b277ee34b6e5e8", - "sha256": "1i7r9k28d0x4gsr4if2xx6karny8f5jrbxvi5529sh8sacl6dyfh" + "commit": "d60db9544d0c4213f2478bcea0fd0e668e31cf34", + "sha256": "1ig9dc7ch3cdxp4p24v21h7hrdph9y5jy9421bfww6agymbj8i85" + } + }, + { + "ename": "flycheck-falco-rules", + "commit": "17600e84166aea88b8447b8dfffecdda6d8723f8", + "sha256": "137svv88rha39pp5k68bf3rkm4fh9vgn48b5pi2ykkrcs29vj5gz", + "fetcher": "github", + "repo": "falcosecurity/flycheck-falco-rules", + "unstable": { + "version": [ + 20230213, + 1603 + ], + "deps": [ + "flycheck", + "let-alist" + ], + "commit": "ba359f2d5968df47a100e78758f280fe0c965f07", + "sha256": "03w6alsvp7bcb2qpgva9w67c1xdbcgfgan6kfzmf6shrni93gldk" + }, + "stable": { + "version": [ + 0, + 9, + 1 + ], + "deps": [ + "flycheck", + "let-alist" + ], + "commit": "ba359f2d5968df47a100e78758f280fe0c965f07", + "sha256": "03w6alsvp7bcb2qpgva9w67c1xdbcgfgan6kfzmf6shrni93gldk" } }, { @@ -38074,25 +38718,25 @@ "url": "https://git.umaneti.net/flycheck-grammalecte/", "unstable": { "version": [ - 20220822, - 2307 + 20221216, + 1904 ], "deps": [ "flycheck" ], - "commit": "314de13247710410f11d060a214ac4f400c02a71", - "sha256": "0xxg98mny4f5x9j9s05an668v0b4d6r6f87nmsfni8wjf3f404zy" + "commit": "68c5087c8b31cf10fb9df77478edd24200fb4108", + "sha256": "0m9bf2hflnf9z2iphzq0hgvyk204gpq6bzc1kjds1bwbx468jabi" }, "stable": { "version": [ 2, - 1 + 3 ], "deps": [ "flycheck" ], - "commit": "314de13247710410f11d060a214ac4f400c02a71", - "sha256": "0xxg98mny4f5x9j9s05an668v0b4d6r6f87nmsfni8wjf3f404zy" + "commit": "68c5087c8b31cf10fb9df77478edd24200fb4108", + "sha256": "0m9bf2hflnf9z2iphzq0hgvyk204gpq6bzc1kjds1bwbx468jabi" } }, { @@ -38103,16 +38747,16 @@ "repo": "emacs-grammarly/flycheck-grammarly", "unstable": { "version": [ - 20221116, - 1127 + 20221231, + 1654 ], "deps": [ "flycheck", "grammarly", "s" ], - "commit": "c9ed648745cb94dc3420d622f84456decd0d0aeb", - "sha256": "0mggj1jma9r3sg6qc9zjbll7a9yklsyjf8kyg3g2vha7qchwaml3" + "commit": "d4a788acc3875a1ffdd7460ab3377a887413c582", + "sha256": "1mg6x85dmawfjmxc5vcq546ykz3m3qby2l3hnaagh7srwvvz09cy" }, "stable": { "version": [ @@ -38161,8 +38805,8 @@ }, { "ename": "flycheck-haskell", - "commit": "6ca601613788ae830655e148a222625035195f55", - "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1pnggwx7b9rqg3rap8lck3cdqwn7lymrdyyfgmbsrlbw5fnldip8", "fetcher": "github", "repo": "flycheck/flycheck-haskell", "unstable": { @@ -38502,14 +39146,14 @@ "repo": "whirm/flycheck-kotlin", "unstable": { "version": [ - 20210406, - 1148 + 20230111, + 1907 ], "deps": [ "flycheck" ], - "commit": "bf1b398bdde128806a0a7479ebbe369bbaa40dae", - "sha256": "1dr2y8imd6blxkpwbpds7mzn5abqpfzl8nh5zrxykrkalq2px7f2" + "commit": "a2a6abb9a7f85c6fb15ce327459ec3c8ff780188", + "sha256": "1cpcxh40ia52bmz5jv38lk55g9rwb65wqvbr2gc4p8xapvp1g6nw" }, "stable": { "version": [ @@ -38531,26 +39175,26 @@ "repo": "emacs-languagetool/flycheck-languagetool", "unstable": { "version": [ - 20220731, - 2301 + 20221231, + 1658 ], "deps": [ "flycheck" ], - "commit": "53b3e46d47a0e70fd2e5c49fea9134ee9aa41793", - "sha256": "1di51jp20ymqkp777rsvwkqzr9vpnpi90b8bd4db5v2ji46xrkjf" + "commit": "1fe838c8678a9a101935ce4a4f3183a731e38f01", + "sha256": "0jlb3l49l555av869khf80z9y8jfab8anzag5578macwwxrl3ism" }, "stable": { "version": [ 0, - 3, + 4, 0 ], "deps": [ "flycheck" ], - "commit": "b6d0b1515418e5821241ac04143a12997c3bb240", - "sha256": "1klwi2ssjnjc5cirq201wl643w8cb32r42nmjhvxv4dgad14i659" + "commit": "8f488c0d765c3d42e84612561530c5ba925e8c9b", + "sha256": "0zynqp7r1k3ycgrk93mkwg3ycl14gny1sspgaxb1z3gsc54ya7sv" } }, { @@ -38809,14 +39453,14 @@ "unstable": { "version": [ 20210509, - 2323 + 2325 ], "deps": [ "flycheck", "package-lint" ], - "commit": "30362dddca2a5f02d5e611e8fe802b528c610e10", - "sha256": "09d7ryjxnjk3ym6hblf3pjp8ycblfwkb3liljg2j1dw5mq07ng8m" + "commit": "ecd03f83790611888d693c684d719e033f69cb40", + "sha256": "00py39n1383761wq6wp194pvyk94ydqdbxj9kl64g9jnipkp7849" }, "stable": { "version": [ @@ -38858,15 +39502,15 @@ "repo": "ksqsf/pest-mode", "unstable": { "version": [ - 20200317, - 1503 + 20200710, + 2327 ], "deps": [ "flycheck", "pest-mode" ], - "commit": "fc575223d1e4de00e03c80258c7359cb4c415517", - "sha256": "10gwd9d1c32mbi0ds5rb88ip2flgznq1lcw9mv549xcvp7zphjgj" + "commit": "43447a2c70f98edd1139005e32f437d3f142442b", + "sha256": "1ccpb1jbynlqqzhsm3h7xk2s7n9nbpnnxmixz77kxskdxj5as79a" }, "stable": { "version": [ @@ -38940,16 +39584,16 @@ "repo": "Wilfred/flycheck-pkg-config", "unstable": { "version": [ - 20200409, - 501 + 20230119, + 1721 ], "deps": [ "dash", "flycheck", "s" ], - "commit": "b76b24ea1f4800f5fb96ce9c6c4788e0e63133d3", - "sha256": "01wzzrpfgh3z28qsynxvkfm92xy98vyvkkv31qh53kxxdicnzlh0" + "commit": "c4e4028f6621187365b7362566ac2786206765a1", + "sha256": "1i0pk4nzw5jl3d67k71h6iwiw5xmqa6qns3q2x0mwdk5kylb91n9" } }, { @@ -38980,13 +39624,13 @@ "unstable": { "version": [ 20210118, - 1326 + 1327 ], "deps": [ "flycheck" ], - "commit": "5d804b08c89ec492a220d3aa8a43801431f0fa09", - "sha256": "1kc8nhd5s52mv9prp7gw24caddl257y3pw27bjymmmz84vy6pl6n" + "commit": "22787cf8223ca9ec309e30a42c20a8e706d8bfbe", + "sha256": "1dpxhljgw0k6y7973ssqfnmc7vp4fv87ajsq1bm8g4m04vj4127q" }, "stable": { "version": [ @@ -39386,16 +40030,16 @@ "repo": "liblit/flycheck-status-emoji", "unstable": { "version": [ - 20180330, - 2325 + 20180516, + 229 ], "deps": [ "cl-lib", "flycheck", "let-alist" ], - "commit": "61e93ac41847d27b8eea3a334ced2d1783687b77", - "sha256": "104zz9fihvd5klzdcaxsdmmfp0q5qisq5bbff48rfwdxnlp8dskr" + "commit": "4bd113ab42dec9544b66e0a27ed9008ce8148433", + "sha256": "0ldy9lhh6mirjz02pnrf7z235jz55k4sdysbqxjhfidsszvp9v6w" }, "stable": { "version": [ @@ -39448,26 +40092,26 @@ "repo": "GyazSquare/flycheck-swift3", "unstable": { "version": [ - 20210910, - 1244 + 20221227, + 1307 ], "deps": [ "flycheck" ], - "commit": "54193175c87a4c0bbf7ed16a3e76d6daff35c76f", - "sha256": "000fp4qzmc4kbjji03lxwafyvv32r4i7adf29j9s7v7dmdljpndl" + "commit": "14cb83c71a03bb7ae0952ee1707783219fda980e", + "sha256": "1yg1sfzp4w164rfkqvdw7qfkixmb5bdq0pidncznfa9rdxz0i9j3" }, "stable": { "version": [ 3, - 1, - 2 + 2, + 0 ], "deps": [ "flycheck" ], - "commit": "54193175c87a4c0bbf7ed16a3e76d6daff35c76f", - "sha256": "000fp4qzmc4kbjji03lxwafyvv32r4i7adf29j9s7v7dmdljpndl" + "commit": "14cb83c71a03bb7ae0952ee1707783219fda980e", + "sha256": "1yg1sfzp4w164rfkqvdw7qfkixmb5bdq0pidncznfa9rdxz0i9j3" } }, { @@ -39663,14 +40307,14 @@ "repo": "krzysztof-magosa/flycheck-yamllint", "unstable": { "version": [ - 20170325, - 1735 + 20170326, + 1309 ], "deps": [ "flycheck" ], - "commit": "110d310fae409e1869b82c34e60936bd3783dc69", - "sha256": "0xfmnwmc26wzfw1r4q70yxzm9qqvcpxx953pvssavrxfyg3bdgf4" + "commit": "aa211b1243168a4f752888c0014c5b9d2da178b1", + "sha256": "1dg2lymb53vp16isdc6k0gq1a43h7vjpksbacskyd4nwmsxaf2bm" }, "stable": { "version": [ @@ -39747,11 +40391,11 @@ "repo": "leotaku/flycheck-aspell", "unstable": { "version": [ - 20221025, - 1844 + 20230107, + 748 ], - "commit": "6efe0ae2d82ba83c563e117b290cb22ae91d2f58", - "sha256": "1y0skf7vnym6qn3q9gkzb0pzalpcsqzaa6vprr6alr73yh59vz2n" + "commit": "1c7fb66f6cb325ee1123094263a8def9bc071768", + "sha256": "0wh2n3bb4l13qqbrdihrwrwlcil80kv0nkpripj1jw89gnvgrnfz" } }, { @@ -39791,15 +40435,15 @@ "repo": "mohkale/flymake-collection", "unstable": { "version": [ - 20221113, - 1 + 20221231, + 1240 ], "deps": [ "flymake", "let-alist" ], - "commit": "274e5ec3e614e73fd0d7c3e1ffc652461bf5b5f3", - "sha256": "18mwz6i84y1wdw8zq13rmx8jsax6fkiqvlbngix7sp2vy8mqgv5c" + "commit": "a030c282e95d709bbb67a7fc115dde1f0d500ae9", + "sha256": "0pin1z7g2yw45lwp77nn3vns8xrcqyqn1hxik4spg0rxfhan7afs" }, "stable": { "version": [ @@ -39815,6 +40459,21 @@ "sha256": "1dxy1bljvd8rar0pivdrfahmgnnjlxm0mlks8mzw3l7k7b7jar6k" } }, + { + "ename": "flymake-cspell", + "commit": "21be553488cfe36423a7d15d1c7a90ccd934d4ea", + "sha256": "03i1kfmlswypzsfam1liwnhpwy2mvwm31lz9d4gwg9ka6q067k8m", + "fetcher": "github", + "repo": "fritzgrabo/flymake-cspell", + "unstable": { + "version": [ + 20230208, + 2155 + ], + "commit": "c68bf7eef99ddb2fbd780f175e869df2db5d768f", + "sha256": "05k8aiiik2ws3hdppg6kv8avq2dc7mvn08hs28brrzm3d8h6ma65" + } + }, { "ename": "flymake-css", "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", @@ -39912,11 +40571,11 @@ "repo": "purcell/flymake-easy", "unstable": { "version": [ - 20140818, - 755 + 20141022, + 1828 ], - "commit": "09deafbcb5f094de8465c2bbfe270ba0f517f515", - "sha256": "1ld0g3hrbplmw3xgg6jg032hncnlxyc3hid4vn38lkcj3y7ls61b" + "commit": "2a24f260cdc3b9c8f9263b653a475d90efa1d392", + "sha256": "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c" }, "stable": { "version": [ @@ -40103,15 +40762,15 @@ "repo": "emacs-grammarly/flymake-grammarly", "unstable": { "version": [ - 20221116, - 1127 + 20221231, + 1655 ], "deps": [ "grammarly", "s" ], - "commit": "e3ed1a8bcb80a002a29fcc82e205d010bd9f3505", - "sha256": "0nf7y37livrhj3dapwzbpal5jclc0arr2hwvhhzyck5mg1q6vi5r" + "commit": "078edd6e083067f2ad3b3beaa0098c16cebe3994", + "sha256": "1496hmwbp2jyy7mn4yrjrxsr3r662s8815vh6w6dj730d9kqr2mq" }, "stable": { "version": [ @@ -40366,14 +41025,11 @@ "repo": "emacs-languagetool/flymake-languagetool", "unstable": { "version": [ - 20221116, - 1917 + 20230122, + 1609 ], - "deps": [ - "s" - ], - "commit": "b4b4d9f041dbc887f3adfb61600e9df4e51f9917", - "sha256": "0vyqh5h5rc12hk8w801wqi1nrcq5m6r5swak9vca7fh0rihjimz6" + "commit": "ad8c724147d5a3a9f6ee59e0c7581e68fba4a2f8", + "sha256": "1h1c0anbch18i66qr6vjb0lf1ygx7y06inqy9r6wss51261l2cly" }, "stable": { "version": [ @@ -40477,8 +41133,8 @@ }, { "ename": "flymake-perlcritic", - "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", - "sha256": "1i0bc81cby2nsala2mhghzv7clhbf1gpp54vdxiq2wdanqy25vmk", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1h19mnx91g0jy6mpkzqx9szix8vibqvxy3s7q7sp9i5xpyjk21l4", "fetcher": "github", "repo": "flymake/emacs-flymake-perlcritic", "unstable": { @@ -40513,14 +41169,14 @@ "repo": "ksqsf/pest-mode", "unstable": { "version": [ - 20200317, - 1503 + 20200710, + 2327 ], "deps": [ "pest-mode" ], - "commit": "fc575223d1e4de00e03c80258c7359cb4c415517", - "sha256": "10gwd9d1c32mbi0ds5rb88ip2flgznq1lcw9mv549xcvp7zphjgj" + "commit": "43447a2c70f98edd1139005e32f437d3f142442b", + "sha256": "1ccpb1jbynlqqzhsm3h7xk2s7n9nbpnnxmixz77kxskdxj5as79a" }, "stable": { "version": [ @@ -40572,14 +41228,14 @@ "repo": "flymake/flymake-phpcs", "unstable": { "version": [ - 20140713, - 631 + 20210213, + 732 ], "deps": [ "flymake-easy" ], - "commit": "a4d383474e055e554aaf1cd617055d5d7181aa50", - "sha256": "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi" + "commit": "f947ba3066c1fa903d2ec69d67bf84413f51eb3f", + "sha256": "10qaw7dhklxqzimfsj87clb297y7rnd3bpn061bh04cwnayjn2hr" }, "stable": { "version": [ @@ -40770,6 +41426,21 @@ "sha256": "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0" } }, + { + "ename": "flymake-ruff", + "commit": "6a2eeb6245f91c35a7f0671f5fd43cdd562b57ac", + "sha256": "143c035vd6xrbx77rccs564s8mwmn5a6a6wr3wb8hgw6xc4kw3ms", + "fetcher": "github", + "repo": "erickgnavar/flymake-ruff", + "unstable": { + "version": [ + 20230128, + 1739 + ], + "commit": "1567685414c81a24303058631d6ee81fb78eee73", + "sha256": "10lhdxxphjryr8dqqx6njmb0hv3a9bhkfzrajnqfgk1zwhpnvykg" + } + }, { "ename": "flymake-sass", "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", @@ -40869,11 +41540,11 @@ "repo": "erickgnavar/flymake-sqlfluff", "unstable": { "version": [ - 20221116, - 729 + 20230129, + 2035 ], - "commit": "8ce6b40ebcb3a90e23621e2e1b85e3d06bed5e76", - "sha256": "1jfhwr4a3imi1n8akarxakdxv90d4icx1r1yjfsjj9hvlgxads4s" + "commit": "f7921a5b762eb0675b8fca7cfb00273a76eaee5b", + "sha256": "0yvf3bq04aljx93p9c3l8jgiwpmbwvkknx06zzscd1fn5n3kfava" } }, { @@ -41570,11 +42241,11 @@ "repo": "usaoc/elisp-for", "unstable": { "version": [ - 20221017, - 634 + 20221218, + 1023 ], - "commit": "7b5d13eae258c5299a6525cb32a3bb69fb7f652c", - "sha256": "1ax6wpawa6zlizbdcvgklyq7nz6jiwdmlz7ln9aq81m4qzap44ql" + "commit": "3556d3693288a552a0962ee01ad7ec71caeb0dc8", + "sha256": "1ghq4h1yk57q2rggkawiglk8ryrdqjdmjwd99j17yqzg5mnijlid" }, "stable": { "version": [ @@ -41602,8 +42273,8 @@ }, { "ename": "foreign-regexp", - "commit": "d05514013948a520cf0dcaf1dc2ef2300dd55e98", - "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "15mjvw177n8f6xxs7cg4xb7xwaagmh36isr849296mnk8mbl084i", "fetcher": "github", "repo": "k-talo/foreign-regexp.el", "unstable": { @@ -41674,8 +42345,8 @@ "repo": "magit/forge", "unstable": { "version": [ - 20221025, - 1208 + 20230216, + 1755 ], "deps": [ "closql", @@ -41689,8 +42360,8 @@ "transient", "yaml" ], - "commit": "45b06b80137e981bca268b800469dada0ef7acb0", - "sha256": "0pv5bd3x074sl23x2ryfs8rbbvrmvc7pmaiqf6dxmns9rzy14jfy" + "commit": "f4aceb35f9d87277e23ee2017e49d11ef89bb7a5", + "sha256": "0h057faq1a1hr11smq0y5vrk0r9jsyfp6b8vsdxqj496zf4zp1vv" }, "stable": { "version": [ @@ -41745,15 +42416,15 @@ "repo": "lassik/emacs-format-all-the-code", "unstable": { "version": [ - 20221008, - 1655 + 20221210, + 1608 ], "deps": [ "inheritenv", "language-id" ], - "commit": "c237c4cdf70a93c2d975b418314af33a210a5740", - "sha256": "17y2paxygi4akwndjmnzj7ngg814nq0ylxsrihkni0grxv5b76ww" + "commit": "c156ffe5f3c979ab89fd941658e840801078d091", + "sha256": "0h6sv36psl9rp1xvg5xzz4w2c7xlrz5iykivf7cfnq5g48aqsihs" }, "stable": { "version": [ @@ -41839,8 +42510,8 @@ }, { "ename": "fortpy", - "commit": "73b277e19f5f9f6605f3e9b7afac95152dac0599", - "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1napc40chs3m2lhv4ig45i3v94jmw20nycfap41zkscihv9mvf21", "fetcher": "github", "repo": "rosenbrockc/fortpy-el", "unstable": { @@ -41890,26 +42561,26 @@ "repo": "rnkn/fountain-mode", "unstable": { "version": [ - 20211223, - 405 + 20221225, + 1016 ], "deps": [ "seq" ], - "commit": "594d0b97fede90a01ed341bb3fc42ac51f31e1c4", - "sha256": "14m6vbiwapd33nmffvimr3y98mw2x1v6a4540csq4v83qjpfb1nx" + "commit": "bfbd41a126f12abb4c0f279b087816d7dd483ff9", + "sha256": "1i9x3jd0phrm4a1jgngpvnmjs5j3y4sfy5yzjv5wwbcp9b8hmidl" }, "stable": { "version": [ 3, 6, - 0 + 2 ], "deps": [ "seq" ], - "commit": "205d7caeb65766e7787d827a80cca893747a09cc", - "sha256": "14cb4r23pn98sxzh0qwjwpvm7k7q9hhpks8avydccwssm69x1s1w" + "commit": "1a0482e03e9cf05e481a57c057cf9b985c6ca4d5", + "sha256": "0mml0in6xxhfv4mdb7rl9k8m6xwmrjl5bb301p8d56sfng982pdl" } }, { @@ -42050,14 +42721,14 @@ "repo": "tarsius/frameshot", "unstable": { "version": [ - 20220509, - 2010 + 20230212, + 2017 ], "deps": [ "compat" ], - "commit": "db75e7b903d0202ba75e64a5a85eac720a30c3c2", - "sha256": "0iqc9sg5l4zjzwzpf3pnkk6qzl1n2kfjfw5dj8y1d2jp7w4741vd" + "commit": "96f2cc9a0cb672b1989022caa290218c8024a376", + "sha256": "01z4n2j8sc6fdyqglhnbq6pszkjjnikqj868p4lfnrzb3nxj4a05" }, "stable": { "version": [ @@ -42203,8 +42874,8 @@ "repo": "p3r7/friendly-shell", "unstable": { "version": [ - 20200527, - 830 + 20200828, + 1218 ], "deps": [ "cl-lib", @@ -42212,8 +42883,8 @@ "friendly-tramp-path", "with-shell-interpreter" ], - "commit": "5c0eda312d8da6de0848d56abca1b0f5840e81e6", - "sha256": "0zmrqxbclq0630sw96shf8alql21w70879flbbk26b837j8vyw16" + "commit": "1b1ba2033e59e5968380640280bd853701fbbb21", + "sha256": "0hh6y21vcpxazqsk9qdr3d120ai9qb5rkdjdh99ck2s26zvm1hjs" }, "stable": { "version": [ @@ -42272,16 +42943,16 @@ "repo": "p3r7/friendly-shell", "unstable": { "version": [ - 20200527, - 830 + 20200828, + 1218 ], "deps": [ "cl-lib", "dash", "with-shell-interpreter" ], - "commit": "5c0eda312d8da6de0848d56abca1b0f5840e81e6", - "sha256": "0zmrqxbclq0630sw96shf8alql21w70879flbbk26b837j8vyw16" + "commit": "1b1ba2033e59e5968380640280bd853701fbbb21", + "sha256": "0hh6y21vcpxazqsk9qdr3d120ai9qb5rkdjdh99ck2s26zvm1hjs" }, "stable": { "version": [ @@ -42336,11 +43007,11 @@ "repo": "pdo/frimacs", "unstable": { "version": [ - 20221113, - 1231 + 20221127, + 910 ], - "commit": "ae3870ebced2fb92f7fac1aa0051f7e46b30d55b", - "sha256": "0r18cgi4hycif9r53vn1cakajkbrqpaziz240bq5yw2wnyvmkgfx" + "commit": "2aa343d743e70fa90ae06927fa2c7dabeca04fa2", + "sha256": "1rvhxyzljpdv4h1mwi767jyz4ql61806vq6q9681ixvm9jzxs8p4" } }, { @@ -42459,11 +43130,11 @@ "repo": "fsharp/emacs-fsharp-mode", "unstable": { "version": [ - 20221106, - 2050 + 20230219, + 1511 ], - "commit": "cfd3f8827e8ec9cbf4d23653c4b05db4c01a5947", - "sha256": "0nxicqypwpksq9nc1b6v25j984ssqg8nb53wdpynsc422g2sqs0h" + "commit": "09fec6c91f9c18173f145e28c55d6f21be678231", + "sha256": "0p1y1y3g9qxkgn38fd34wkjkxplg3aphdqgisx556maig69ki789" }, "stable": { "version": [ @@ -42482,8 +43153,8 @@ "repo": "FStarLang/fstar-mode.el", "unstable": { "version": [ - 20220725, - 2139 + 20221214, + 1220 ], "deps": [ "company", @@ -42493,8 +43164,8 @@ "quick-peek", "yasnippet" ], - "commit": "60489e75c6f26417068bf861b6db2935e72c38fe", - "sha256": "17j66xilzv0dv91jzk7v224hwpm0mlyxcsz7qf0ip8379ax1jb8g" + "commit": "ab0697b9474f36942a12a4b2a75251c247c18e9e", + "sha256": "02cyd5jl3xgzyiq4bbppnx8vhvw9h7i51776p3ld7m4shck7qyhz" }, "stable": { "version": [ @@ -42518,14 +43189,14 @@ "repo": "factor/factor", "unstable": { "version": [ - 20221108, - 1757 + 20230120, + 1737 ], "deps": [ "cl-lib" ], - "commit": "8c9bb02fe3c958d657857117825a83548cdfe2f0", - "sha256": "1gjbz95nzv348qnj76pxgmc3515sv4zw59axkhbp841cfjkd091g" + "commit": "25236d56df9b39c607a6af75d4e16273201031bd", + "sha256": "0rd0hgcxafbji2gs7lwxbcchcq8qai1yrrh6rld3cfwi83qkm3jn" }, "stable": { "version": [ @@ -42707,20 +43378,20 @@ "repo": "diku-dk/futhark-mode", "unstable": { "version": [ - 20221025, - 843 + 20221223, + 1440 ], "deps": [ "cl-lib" ], - "commit": "6d89758828c6ebdce0d28c334c618bfd1d45e8d1", - "sha256": "0r91yw867h1z592rcw744616sfzqak7mrgpkc1p7qzb77d3fxqf4" + "commit": "942450534547e2081a3ce6c13b6ccfbb4d6c05f4", + "sha256": "01jnr1i2bj70jrhvyis2k0fljb1lwf1wns6xgs1ad3ndvgyi3c42" } }, { "ename": "fuz", - "commit": "2d3139563902bb1cb8aa48a517747f12a1ca1746", - "sha256": "0xmi3r7mhxc38rjmx2p0lhsn0gch21hhbr2s0gxy1h29mhgvy3sb", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "18jjk2aqvs7sjc9alxzbl3cr01swfag07mmnzmvd6ghi2y8v6px9", "fetcher": "github", "repo": "rustify-emacs/fuz.el", "unstable": { @@ -42749,11 +43420,11 @@ "repo": "auto-complete/fuzzy-el", "unstable": { "version": [ - 20211231, - 1837 + 20221231, + 1634 ], - "commit": "f63d6279a781cf9f33dd2f22826788d98d475961", - "sha256": "11dj0qg2411r2nby2nzi1i4s2v5wnz4594cl5c8gq9hws7cmp6q2" + "commit": "fc7ca5bc81f1798596bc1d254d74a5ea95edc432", + "sha256": "0i0wpsbr3d2bv9pjkdx6a5188csw2vi53rprk1j05bv0wcm81ark" }, "stable": { "version": [ @@ -42796,20 +43467,20 @@ "repo": "theBlackDragon/fvwm-mode", "unstable": { "version": [ - 20160411, - 1138 + 20230214, + 2149 ], - "commit": "6832a1c1f68bf6249c3fd6672ea8e27dc7a5c79e", - "sha256": "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20" + "commit": "574c0370f6199c9a1492923bf0d35fdd26738d24", + "sha256": "100al4f4jchg9mmq6in2dv948msx0j56qd3qzjmb5az7hy19ncnj" }, "stable": { "version": [ - 1, - 6, - 4 + 2, + 0, + 0 ], - "commit": "d48a309bb7db21f5404b6619c6ee861fe0457704", - "sha256": "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv" + "commit": "574c0370f6199c9a1492923bf0d35fdd26738d24", + "sha256": "100al4f4jchg9mmq6in2dv948msx0j56qd3qzjmb5az7hy19ncnj" } }, { @@ -42820,29 +43491,32 @@ "repo": "tarsius/fwb-cmds", "unstable": { "version": [ - 20220422, - 1610 + 20230213, + 1143 ], "deps": [ "compat" ], - "commit": "b2661943ff3e2ad8d6db2158c173ca04221790a1", - "sha256": "0vpv7qwf849qxhzv23x7l1fd2zgvs9p4nx5rd9mpbai9w5sgf7m1" + "commit": "1b375c6890de61eaccc97c92f2b46de6f9205417", + "sha256": "0wqkd8p04hklp1hysppp83rx3d32qv62ln5baf725f3xz0lilv21" }, "stable": { "version": [ - 1, 2, + 0, 0 ], - "commit": "1143188080e33afd3330f540c7e7df48898a4777", - "sha256": "032ykl67f5x1f98gm8s9jiynlvip16r4lkl64a7xn36g32a4g4x9" + "deps": [ + "compat" + ], + "commit": "1b375c6890de61eaccc97c92f2b46de6f9205417", + "sha256": "0wqkd8p04hklp1hysppp83rx3d32qv62ln5baf725f3xz0lilv21" } }, { "ename": "fxrd-mode", - "commit": "796eb6b2126ec616c0de6af6abb7598900557c12", - "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1cyniw1bzqvllcacisbg9ksmx1va348kk2lkcj0wsxn9q40kfr4j", "fetcher": "github", "repo": "msherry/fxrd-mode", "unstable": { @@ -42891,11 +43565,11 @@ "repo": "bling/fzf.el", "unstable": { "version": [ - 20220726, - 2216 + 20230114, + 403 ], - "commit": "21912ebc7e1084aa88c9d8b7715e782a3978ed23", - "sha256": "0gdqjh8996hb06bnnyhi94k69mjfrzyfgq00a9s4wwagv28sqmkj" + "commit": "1d80e76df0899e26196aea150c29fba95fc73ed6", + "sha256": "075v5ypn4clkgg9jb4jd9xrw3ldy7sz5f2vryf5kniwm8zhs85yi" }, "stable": { "version": [ @@ -42948,19 +43622,19 @@ "repo": "ShiroTakeda/gams-mode", "unstable": { "version": [ - 20220512, - 222 + 20230214, + 1359 ], - "commit": "937b2223259fb102bd6991fe46f509897e4f6cba", - "sha256": "1d11w3mgni0i75in9zi27glmx8vjyab9fqr8bp3pxp1skishx3a1" + "commit": "a50a290e5559e9f099e2bbbcecacac9e484ef4d9", + "sha256": "0k1icyhyqa71d651vdb8mb9vg37nx50l3xs13whv3mq1kcbp0hxp" }, "stable": { "version": [ 6, - 9 + 11 ], - "commit": "1964d9a52693f3aa9279eed8864bc317ee5c6dc4", - "sha256": "070qmshqn6gz4av3rzbjihlw6psx5c61kbcwdymswzfzmhg5dyn6" + "commit": "2bc1ae508b2e5c0ac377b012ca41eb6be73f9705", + "sha256": "0n1xqsk7086b6dx43djy1aliriidfksafh77f7ng4596sxnphrxz" } }, { @@ -43040,11 +43714,11 @@ "repo": "wavexx/gcode-mode.el", "unstable": { "version": [ - 20210522, - 1025 + 20221205, + 116 ], - "commit": "1f83845af4102efc5e5856b55bd5ad165b2f0cdd", - "sha256": "0lrsnl08npknif66chs3spy6pnblx3mbxxw1dii8a7zcj2s0ripv" + "commit": "3b17b5ba85e5a05dac79b15b5231ad41f0a0fce5", + "sha256": "1i515clygcknp3f1rcf5kl63cx29vmqqkmfg4gk78s1pdika06qi" } }, { @@ -43109,15 +43783,15 @@ "repo": "ahungry/geben-helm-projectile", "unstable": { "version": [ - 20160611, - 59 + 20170524, + 334 ], "deps": [ "geben", "helm-projectile" ], - "commit": "14db489efcb20c5aa9102288c94cec3c5a87c35d", - "sha256": "1nd1jhy393vkn2g65zhygxkpgna0l8gkndxr8jb6qjkkapk58k8l" + "commit": "31ce0faca5dcc71924884f03fd5a7a25d00ccd9b", + "sha256": "0a1srhwfbgkvndjfi9irg5s6snlxyqrw1vwyqg1sn8aqnbpgib04" }, "stable": { "version": [ @@ -43156,25 +43830,26 @@ "repo": "emacs-geiser/geiser", "unstable": { "version": [ - 20221115, - 2228 + 20230120, + 1738 ], "deps": [ "project" ], - "commit": "15dfe0fceea4d3508cd22a05fee18b617f84df2f", - "sha256": "10f048rkcw0rnn03dq9v5bgg61zclznnsl6hl9sqjanb16vhs5lp" + "commit": "e54d5e6dc659c252d10c4280f4c4d78d38623df5", + "sha256": "13q78d6pgmv7nmv0c4nfggbf29l624q73sycz3gr6hqng6kdlsvb" }, "stable": { "version": [ 0, - 28 + 28, + 2 ], "deps": [ "project" ], - "commit": "04dbdacfeca0190856abad859360da4bb873f9dd", - "sha256": "0dd20cq3nz4jjysaqx2aiqqaxvkfkbj2x4zm2mz3pd4rmydckj2y" + "commit": "bfc9cce54b7ac1cb036911965198b5cbe2f43f4c", + "sha256": "01sif1pw3shhdzcg9vidc2j5cqmrgjh5kynicf5mh3kmlvvsg9k6" } }, { @@ -43237,8 +43912,8 @@ }, { "ename": "geiser-chicken", - "commit": "cfc698ce9f759b5664217a4866a91605c11c13f6", - "sha256": "0pmy5gxsvp33m3dd5fnanxbjmds2vvaq649hp0nrjixykqhg9gf4", + "commit": "a2ad985f3b2b3e9192b6a8525483f43f52df9a10", + "sha256": "1hq3qk8vbspycvm9fv5s9d07gn0m55gwcvgv4ycvyf8gmi2j3xdy", "fetcher": "gitlab", "repo": "emacs-geiser/chicken", "unstable": { @@ -43328,28 +44003,28 @@ "repo": "emacs-geiser/guile", "unstable": { "version": [ - 20221115, - 2230 + 20221205, + 1425 ], "deps": [ "geiser", "transient" ], - "commit": "961c9630f90733f517a9124750e72da55b569f10", - "sha256": "1hhn4nrhwnkrks1kij27dza0zlj0z6jpw9k9nqqswb3h9qll3nvz" + "commit": "24ce15de235c105daf5ecfb818200dae1c9815ee", + "sha256": "178anfklxk7wnbwnbjnc1nhg54b2s07z66g6gybd4imacn09f1az" }, "stable": { "version": [ 0, 28, - 0 + 1 ], "deps": [ "geiser", "transient" ], - "commit": "f5e82dc0f5a076335f201885a7edbefaa1ad435f", - "sha256": "13qxg1npm0pmnml5q268k5xk1clyqldp8v200ihrqwqlc3ga7f36" + "commit": "f57bfd5039ce158de95d2ef2933e64fb16def4f6", + "sha256": "0gp8xbfm7y2gabjyys8jylfy1pkkglqas32xxrbqxfh1hv0cfh2f" } }, { @@ -43476,11 +44151,11 @@ "url": "https://git.carcosa.net/jmcbray/gemini.el.git", "unstable": { "version": [ - 20210909, - 1442 + 20221127, + 1619 ], - "commit": "60bd07b3a1e532c950c132673777ceb635c9960d", - "sha256": "1dj6bmlrqkqvykasdav9f4jw8aykqj6c0jr09r9x4sb2w0pcd9ik" + "commit": "a7dd7c6ea4e036d0d5ecc4a5d284874c400f10ba", + "sha256": "1pvlk56mhh4xh4gwzqldfk79jsjbcpivv5scd9811pv3afc30gsx" } }, { @@ -43522,8 +44197,8 @@ }, { "ename": "genrnc", - "commit": "dd2d908ba5fa96d90643091573939e54d9165aaa", - "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "18x7zmgrgwwsqc19vkqy44l9xq771wcfhsb6jxlfyp8d68b8yfys", "fetcher": "github", "repo": "aki2o/emacs-genrnc", "unstable": { @@ -43650,16 +44325,16 @@ "repo": "thisch/gerrit.el", "unstable": { "version": [ - 20220928, - 227 + 20230102, + 1714 ], "deps": [ "dash", "magit", "s" ], - "commit": "38e53dfa782d65c7f93db8368b0c49f619c1f09e", - "sha256": "0rjrv7y4zkzry2fbsi55ccrnmasd0l8cpd0rapf0sskwc1wldymi" + "commit": "76cc426d62f1b4964159706eafa8f5b50b8427ea", + "sha256": "0wzb4z4hqx7n5nn7jsgzvjqxd65w9s6fnasz9mpkh9vfvv3zngjg" } }, { @@ -43769,8 +44444,8 @@ "repo": "sigma/gh.el", "unstable": { "version": [ - 20220302, - 549 + 20221204, + 1817 ], "deps": [ "cl-lib", @@ -43778,8 +44453,8 @@ "marshal", "pcache" ], - "commit": "27ccc892e94f7e747e5b879eec71119965d9ed6e", - "sha256": "0biljpqw14kjv0njyrahfdgglaphghva0kpfjhiprfwbd0rmmi1k" + "commit": "e1423a54fc97924e75d1fde27911c3c678a7d6c3", + "sha256": "1fr4pikcjasqy41g86pjwhz3alky42m2z7ziag051xhcd8nlm51s" }, "stable": { "version": [ @@ -43819,15 +44494,15 @@ "repo": "anticomputer/gh-notify", "unstable": { "version": [ - 20211126, - 638 + 20230117, + 317 ], "deps": [ "forge", "magit" ], - "commit": "8937f64092ea3b7e2cea2d61c12fde8e0f5e7917", - "sha256": "1amqyv0xdvl1ghy2pv2kvp2lc2q250p71mq3qdf50v87png57d9p" + "commit": "e1afdd49deb8ddf1a988e8d3fa699b06dfa92f5f", + "sha256": "0vx77b54hyx1f6qq1n57x7sn2080fdb67678jiw3c152jai99kx3" }, "stable": { "version": [ @@ -43950,16 +44625,16 @@ "repo": "magit/ghub", "unstable": { "version": [ - 20220918, - 2022 + 20230212, + 2209 ], "deps": [ "compat", "let-alist", "treepy" ], - "commit": "f07790b36beb563d5b87be896efbd3b8533f2acf", - "sha256": "132b5b1jdk0r68rklmf05avnmgm39rawl2ak4cinwis5p5m0hw2n" + "commit": "47b7dc9bb299d50647cd24efebaf41dbc07d9e90", + "sha256": "0k9zx62cwcb3pribmj1s4f7v7d4rg3msnscv1y2pjf2x740a1vj9" }, "stable": { "version": [ @@ -44157,11 +44832,11 @@ "repo": "wavexx/git-assembler-mode.el", "unstable": { "version": [ - 20210207, - 1545 + 20221205, + 1014 ], - "commit": "1243bdc1a9cdc79802ece05c90731ee14e4f92c9", - "sha256": "1rc8z2r8lxzx836j7nk61snps8r0szzifg0inzfv3nb2z8bsiw0b" + "commit": "e88d69d1fd93f166d8b31e02790a1d241fea44aa", + "sha256": "1lvhgs57848jiqsv4nhr3y65jh2zx8fwjh301v7cc162l66bny56" } }, { @@ -44317,16 +44992,16 @@ "repo": "magit/magit", "unstable": { "version": [ - 20221106, - 1128 + 20230213, + 2015 ], "deps": [ "compat", "transient", "with-editor" ], - "commit": "161ab485209ecd0f304e16ca95f8a145327e7ffe", - "sha256": "0dm68s284ybcqr626d2fhfc6icyb1c0yrbmmdbwr0vdlc0zv1iha" + "commit": "565818845e7a10f5fb1dafc901b841b0fe9e2d64", + "sha256": "05rg476kzyh8d103d56l20rmx6qsiy0lrpfshs8mmvqx68q8z4ly" }, "stable": { "version": [ @@ -44610,11 +45285,11 @@ "repo": "sshaw/git-link", "unstable": { "version": [ - 20220613, - 135 + 20230216, + 300 ], - "commit": "fe2e8aa92dd8f1a9fb3f471658701487ff21f22b", - "sha256": "1pbzcvv4hd6hkbqaln4gmdqmbv46b0556d35m3zkg0hvrrspp7bi" + "commit": "d3ba912079e0ca5fd727b1f617791c6ae1e0da82", + "sha256": "14czzi9gi1zms1nnpjabn4b7cyahjj0xz8y4jxr6pn6gp20zzp0n" }, "stable": { "version": [ @@ -44663,11 +45338,14 @@ "repo": "magit/git-modes", "unstable": { "version": [ - 20220422, - 1611 + 20230212, + 2212 ], - "commit": "845d333732ad9c8d65a28f12af645c6682db6f45", - "sha256": "1616z9jvwcxs9pfsycbp0n4nss7gai9d0yx915l1mx9ksp631pf4" + "deps": [ + "compat" + ], + "commit": "f0a0154bf48dd1c0c587596cf4cfd3c90f673a05", + "sha256": "0bgjdmrdw5jfr7lsjar45m0hdb2cawv3y73czbbh8qid2ajm6shl" }, "stable": { "version": [ @@ -44921,10 +45599,10 @@ "unstable": { "version": [ 20220313, - 2033 + 2040 ], - "commit": "0f0f0b52ee55a5c9305ebf5abb7bcf480f98db0a", - "sha256": "1xyrixgmmlb25km9ya20hqh3g89y070xsjqnhgzspa3938bcyzhn" + "commit": "2123bcd08fe42094b07180632be2cd2af606ee21", + "sha256": "1n41px99cs6q53lfs2dn9h7ml6hc4yz7mbjlg30hp4l8a3j74lz3" }, "stable": { "version": [ @@ -45222,8 +45900,8 @@ }, { "ename": "gitlab", - "commit": "1d012991188956f6e06c37d504b0d06ab31487b9", - "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0ax1773qf1kpmpkfqkaxr5v69b6w7vy7gfbp53f4ff7rfiag2mp8", "fetcher": "github", "repo": "nlamirault/emacs-gitlab", "unstable": { @@ -45577,11 +46255,11 @@ "repo": "hajovonta/glue", "unstable": { "version": [ - 20221114, - 1120 + 20230112, + 2159 ], - "commit": "abfad405f240d9a89f792aae36efb3c2af43021f", - "sha256": "08iyb35mpcdca9raq636m06gdis6p3n67wqhzq612p71gpx9l4bl" + "commit": "dcdf8a69db87acea4fa61d4b4b9b1265c7e025db", + "sha256": "0n5834ghphb37780f6vs3hvh39m5a7hs7xx352bwwskrv522ik01" } }, { @@ -45810,11 +46488,11 @@ "repo": "akib/emacs-gnu-indent", "unstable": { "version": [ - 20220515, - 1719 + 20221127, + 2112 ], - "commit": "ff3e10edbdf9b919747ec2ba3434d5858f5cc9fa", - "sha256": "040vlkzhgi7mhp6m4nrqz2srh8fr8xgpgbiqm8mbcs7py41smkg0" + "commit": "f31dbe60478b6270bb57b6b05998df8eec56f801", + "sha256": "06b02s78ln9bxrh924952w2kvzgiqw422p70cf102wwmrqknlqlf" } }, { @@ -45825,20 +46503,20 @@ "repo": "emacs-gnuplot/gnuplot", "unstable": { "version": [ - 20221112, - 2049 + 20230218, + 1717 ], - "commit": "fe7ce76d797b34214178ac8e470f2fa9a63b2520", - "sha256": "06avd1bpk6n8d3yc2427f6z24f3d6dlbfhw6gg39mja06n4a2jh3" + "commit": "663a89d263d4f26b996796d01b6a3b783449e0f5", + "sha256": "0s0k18ibi4b2vn6l7rwdk79g6ck6xafxzzbja8a8y0r8ljfssfgb" }, "stable": { "version": [ 0, 8, - 0 + 1 ], - "commit": "116cad8e09024223f97e81b0a4503cef20de9bf5", - "sha256": "09y177sq24gs7wwjihw59g0m4n1rv2ws9890ynxjxawv823r0fxm" + "commit": "663a89d263d4f26b996796d01b6a3b783449e0f5", + "sha256": "0s0k18ibi4b2vn6l7rwdk79g6ck6xafxzzbja8a8y0r8ljfssfgb" } }, { @@ -45908,8 +46586,8 @@ "repo": "deusmax/gnus-notes", "unstable": { "version": [ - 20210207, - 1010 + 20221127, + 1316 ], "deps": [ "async", @@ -45920,14 +46598,14 @@ "org", "s" ], - "commit": "1457bba34b40d5197aa14dbf0856925f83025ae1", - "sha256": "01jm2maa8q0zjpqa95c84k9b9jx5rgwvvhaqbwvw8ccz883mcdjm" + "commit": "b21907ca67dedaac730f4d5dcba8fb778283b23d", + "sha256": "1wl3gjklj9i552bal6h5nwif5dm4csy5pzwq3kl005x58bfbyfic" }, "stable": { "version": [ 0, 4, - 1 + 2 ], "deps": [ "async", @@ -45938,8 +46616,8 @@ "org", "s" ], - "commit": "8cacba653f8912355d45847c5e5376eb83e6898f", - "sha256": "11d98vasn74p7ifyw8qnyzm4na8l0pnbh7a04cr2znnwqjbnzd7s" + "commit": "249e1471d586e0b3679a4b1ac4070e9f5c4516d2", + "sha256": "0jn8g4zw5f06nxfxl7iffyf4jdza3wq9zwa3mj36ir012jrn5xbm" } }, { @@ -45950,11 +46628,11 @@ "repo": "unhammer/gnus-recent", "unstable": { "version": [ - 20220902, - 658 + 20230104, + 1924 ], - "commit": "ebaa2389d20bc5fe1796f895f1faedcfc99026d0", - "sha256": "06qxc9hhbpc4k1disashc347x589f2hhjs85vrsvr73kphv05b7k" + "commit": "5a4a28710dedef939dd8f1a743c5626e40271842", + "sha256": "1a0baimrynhng3d2ywdb66vzyvrrpv4fb30b9qibwp0gn2ds6g2q" }, "stable": { "version": [ @@ -46029,14 +46707,14 @@ "unstable": { "version": [ 20140610, - 731 + 2156 ], "deps": [ "log4e", "yaxception" ], - "commit": "c2c8c5e94ac94f4c40e023452119c088ac59eac9", - "sha256": "0gf418ri69yzi9cbxdyna9kxjsniyw72xix2r94m439k1axpwa3f" + "commit": "978bdfcecc8844465b71641c2e909fcdc66b22be", + "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril" }, "stable": { "version": [ @@ -46293,14 +46971,11 @@ "repo": "s-kostyaev/go-gen-test", "unstable": { "version": [ - 20210816, - 1215 + 20230127, + 1422 ], - "deps": [ - "s" - ], - "commit": "35df36dcd555233ee1a618c0f6a58ce6db4154d9", - "sha256": "1r0cdpfrrz3lgkd7xzkw77c48w11l9maydm32rz27zpjgzgpakdp" + "commit": "f84f4177af7fcbe10ce2116d5417ad5f0485034b", + "sha256": "1bxa3870vr2hyaj4isvhzfhhs56qyrp9lngapsggxhdq1r9vwqra" } }, { @@ -46329,15 +47004,15 @@ "repo": "dominikh/go-mode.el", "unstable": { "version": [ - 20181012, - 330 + 20220114, + 2239 ], "deps": [ "cl-lib", "go-mode" ], - "commit": "120fb911f1d8038f828da85eed8aaad977dabd8c", - "sha256": "18qx1mf4fgrzm8g89c4y7zvwl3djrbbkhar242zl5ab5218dsp0s" + "commit": "3273fcece5d9ab7edd4f15b2d6bce61f4e5a0666", + "sha256": "00qzn136d8cl3szbi44xf3iiv75r6n1m7wwgldmzn4i5mpz8dbq7" }, "stable": { "version": [ @@ -46429,11 +47104,11 @@ "repo": "dominikh/go-mode.el", "unstable": { "version": [ - 20220727, - 115 + 20221228, + 1706 ], - "commit": "08aa90d52f0e7d2ad02f961b554e13329672d7cb", - "sha256": "1zdyhjg3crvcw093zw2nv3kzs583i26ba6pbs8jyhqnnysl7llfc" + "commit": "166dfb1e090233c4609a50c2ec9f57f113c1da72", + "sha256": "0vahf3gbdw8b7k28zicm1xi686b2lrzdx8nkzhwk9z25brw86jj8" }, "stable": { "version": [ @@ -46468,28 +47143,28 @@ "repo": "grafov/go-playground", "unstable": { "version": [ - 20220106, - 1618 + 20221127, + 1342 ], "deps": [ "go-mode", "gotest" ], - "commit": "d2eb9ee18a7934c8f5395bdeedf52cb0f62f8aa2", - "sha256": "02p99180nqsy78g9xwqx2rvyxxv1bq95b09vwz0k1vz8xf6lqfbf" + "commit": "e70aeb111fbb4487b464a813feb8ecad1542dc1c", + "sha256": "0r7rds41m899ikc6lnjhlkkrhljmazsddk8f050nzngdfb60p3sa" }, "stable": { "version": [ 1, - 7, - 1 + 8, + 2 ], "deps": [ "go-mode", "gotest" ], - "commit": "d2eb9ee18a7934c8f5395bdeedf52cb0f62f8aa2", - "sha256": "02p99180nqsy78g9xwqx2rvyxxv1bq95b09vwz0k1vz8xf6lqfbf" + "commit": "e70aeb111fbb4487b464a813feb8ecad1542dc1c", + "sha256": "0r7rds41m899ikc6lnjhlkkrhljmazsddk8f050nzngdfb60p3sa" } }, { @@ -46547,14 +47222,14 @@ "repo": "dominikh/go-mode.el", "unstable": { "version": [ - 20190805, - 2101 + 20220114, + 2239 ], "deps": [ "go-mode" ], - "commit": "13e9f22957df5a819b711994a4933927823fa14a", - "sha256": "007ky80h53r0kmk35cn0j6gk1rg2dwg6f4rbiszagm79hxf1dxnq" + "commit": "3273fcece5d9ab7edd4f15b2d6bce61f4e5a0666", + "sha256": "00qzn136d8cl3szbi44xf3iiv75r6n1m7wwgldmzn4i5mpz8dbq7" }, "stable": { "version": [ @@ -46601,8 +47276,8 @@ }, { "ename": "go-snippets", - "commit": "ca9f3022e7f4d5391be394cd56f6db75c9cff3b6", - "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "08cif7lra3vmkraa5j44irjqap748rm8xysrc1hh6n80fklkxb4v", "fetcher": "github", "repo": "toumorokoshi/go-snippets", "unstable": { @@ -46640,26 +47315,26 @@ "repo": "brantou/emacs-go-tag", "unstable": { "version": [ - 20180227, - 411 + 20230111, + 651 ], "deps": [ "go-mode" ], - "commit": "8dbcb7d42dccac046c7beb31bdf79bb09a0fef40", - "sha256": "1l20az4lhgbrh96sk6bpvp3w4bh29653fms4bimmiaqmhn2n14y2" + "commit": "33f2059551d5298ca228d90f525b99d1a8d70364", + "sha256": "1nmxw99xqhr9sg5lafqjs7x033br8xz9106zc96gxf07v6zgbxy2" }, "stable": { "version": [ 1, 1, - 0 + 1 ], "deps": [ "go-mode" ], - "commit": "8dbcb7d42dccac046c7beb31bdf79bb09a0fef40", - "sha256": "1l20az4lhgbrh96sk6bpvp3w4bh29653fms4bimmiaqmhn2n14y2" + "commit": "33f2059551d5298ca228d90f525b99d1a8d70364", + "sha256": "1nmxw99xqhr9sg5lafqjs7x033br8xz9106zc96gxf07v6zgbxy2" } }, { @@ -46670,19 +47345,19 @@ "repo": "lorniu/go-translate", "unstable": { "version": [ - 20221119, - 627 + 20230112, + 1532 ], - "commit": "8746d229474958dc4456ef9ba4b0a258acff8e56", - "sha256": "1znqj87xgb880aqqd10mxq5r3walhasvldmm3mvmvnywg91rrdyj" + "commit": "e8343e7d41af67f55c2da9231fb275a93382a4c8", + "sha256": "0f8d96pz676bl1b8rh2wxhdw1incaf691rkdlwzyzsar51c11dj9" }, "stable": { "version": [ 0, - 3 + 4 ], - "commit": "8de1c3b660602b6739444ceed3e48214c417fe38", - "sha256": "0b8jbcs848ck0zbl6rmyyac3mbhx58zq04l7wvi7paficg9lphj9" + "commit": "923d117ab399a0598a496d3fab84188c6f460dae", + "sha256": "1bhfd41x3i2gabvf50pdpmnvcdqg69ygslyjcg7jvf486b44gvfk" } }, { @@ -46708,20 +47383,20 @@ "repo": "emacsorphanage/god-mode", "unstable": { "version": [ - 20221109, - 707 + 20221230, + 708 ], - "commit": "49c1a1753188e5b2788b8c1f1f9fbd1264460bab", - "sha256": "0h1kfvr4zahk8ihvri1r16b2nkg3dg3524ic64c6w0jing2gr37c" + "commit": "607aff10a7b27a8aa0c1a15c2c39337ab17cfda7", + "sha256": "032c82cgf8dafc3w951f2n2a1327rxz9126ri8vz9n3fblwdizj5" }, "stable": { "version": [ 2, - 17, - 3 + 18, + 0 ], - "commit": "a72feb2fe8b1a8993c472995d83d9c4718f7a7c1", - "sha256": "1wsc04l5j5a9y5439qx85pcchxjnjgcgwbffw3l30q9zlblvc58b" + "commit": "c7754eaadaeabae2df94e23317b4a04d19b3f9e0", + "sha256": "1njln47w25ix9w0xjv02110ngr8d8ma3w7db0x4xcxhihbl65zly" } }, { @@ -46756,19 +47431,19 @@ "repo": "minad/goggles", "unstable": { "version": [ - 20221011, - 1137 + 20230218, + 1710 ], - "commit": "f0e80d3be9f5195682f8edf903ded9cdc947683a", - "sha256": "1ca5gwa2r1nya84w0dkvmplbqfyksqbgfcl595fc1z5mysg09yzh" + "commit": "b715ff51e4b80c3c5487e7be6deadb1bb1497af6", + "sha256": "0crll7r1qzpipimrahbfgk31f6rys58gzsbiwi65l0gqw49699sx" }, "stable": { "version": [ 0, - 2 + 3 ], - "commit": "6023ca87b28fa05ebad320c8b9c5887c6dd0f51b", - "sha256": "15bqjmwfdqp2np6fln6xjyw59c5iddvzsyga0lvb8raa753cdh2k" + "commit": "b715ff51e4b80c3c5487e7be6deadb1bb1497af6", + "sha256": "0crll7r1qzpipimrahbfgk31f6rys58gzsbiwi65l0gqw49699sx" } }, { @@ -46829,8 +47504,8 @@ }, { "ename": "golint", - "commit": "34f22d829257456abbc020c006b92da9c7a7860e", - "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1g3rpp8h911jrmkwhlpb6c6bsx8ig3ms1y6y7jpq1k40pb4zrxm2", "fetcher": "github", "repo": "golang/lint", "unstable": { @@ -46997,20 +47672,20 @@ }, { "ename": "google-translate", - "commit": "ec8e444027703ac04575a670b6ab806e8a290d15", - "sha256": "0rj3cybs603c8fy3yxgmhdvraiqwk4nj1pdjryqi4xaddj5glzzb", + "commit": "c7050f5197fbc7e70d13a6f290d4c61f4684c85b", + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", "fetcher": "github", "repo": "atykhonov/google-translate", "unstable": { "version": [ - 20220920, - 35 + 20220921, + 245 ], "deps": [ "popup" ], - "commit": "f893b680311fedb1dd735bf5b3be7af1ed1583be", - "sha256": "12c6yj7bjradzgl0xjvv7xg8xii9imppb6d9ij0v4q2cfw7v8ihn" + "commit": "e60dd6eeb9cdb931d9d8bfbefc29a48ef9a21bd9", + "sha256": "07w3vcinb4wzcancfmhi7ips6dr2lg6va1xlm74kvk5n8vqafp8a" }, "stable": { "version": [ @@ -47150,11 +47825,11 @@ "repo": "emacs-vs/goto-char-preview", "unstable": { "version": [ - 20220704, - 630 + 20230111, + 1525 ], - "commit": "507bd498457cf755d3500209ec0c2a4625a96584", - "sha256": "1m4bnx34wf7gh99fqp0gigvafij20awx3ya2yfcxymshk9vx73ii" + "commit": "feee79f83194155e67f5b16ca57b51b2d941b2ee", + "sha256": "19qnf1x0kysxjfx4dkl13f7cfv6s1cqmcjbnmmjvk7x8mah88qx2" }, "stable": { "version": [ @@ -47237,11 +47912,11 @@ "repo": "emacs-vs/goto-line-preview", "unstable": { "version": [ - 20220704, - 630 + 20230111, + 1531 ], - "commit": "ee1cb651c021d1cab1a9f2577fa76d54da894037", - "sha256": "15s47jpvbanymd9kn5xfzprr1yaiv7hzsq8wqs4pzxnciv3bira7" + "commit": "c6db484cf401351f7f2f57496b0466b774435947", + "sha256": "0wzc5vaw461lzwhs1d9b479ns8wgil528np6xs5rqr3czsm61k44" }, "stable": { "version": [ @@ -47261,8 +47936,8 @@ "repo": "vmware/govmomi", "unstable": { "version": [ - 20220509, - 1455 + 20221216, + 1712 ], "deps": [ "dash", @@ -47270,14 +47945,14 @@ "magit-popup", "s" ], - "commit": "72c2000c01b73c884f1f94df52765762e187b1de", - "sha256": "1jbgqwjncw4xwdjjsn738j4mmmccfb32g6iznlm97qgpyjl0sg81" + "commit": "c82a709c50c0cd1ae560dd4c8da2d5b266114c50", + "sha256": "1a9x8x45ylr3q87ryfrm3d4s5pahqvwrymvn9db194bx1wxj7mp6" }, "stable": { "version": [ 0, - 29, - 0 + 30, + 2 ], "deps": [ "dash", @@ -47285,8 +47960,8 @@ "magit-popup", "s" ], - "commit": "69ac8494c2bead55022dcd1dc18f9ca8b159ccd2", - "sha256": "04lsqq8ik8mgxhnxma24lkwn7qnjwr9djwrq0j0h3pw8bfbk4m29" + "commit": "9078b0b4399930876c766d4dff04935c523a7e18", + "sha256": "1w0rfzaa27xlns23y0aakz5wq7fpz79wvmj8wmim64p2pfggbpi6" } }, { @@ -47328,6 +48003,21 @@ "sha256": "01pnnqcxni55xr7r2lxcnsqiszm2w5iwnjcwp748p1faq6ywhi19" } }, + { + "ename": "gpt", + "commit": "0064e7b747b695a213c233480c962233d10b7bb3", + "sha256": "1yd2fiaq21bk6pnx3gdl5mrj0n0i3jbxfagdrawsfs9i3ys7m7vf", + "fetcher": "github", + "repo": "stuhlmueller/gpt.el", + "unstable": { + "version": [ + 20230204, + 433 + ], + "commit": "a5eb9ce9cced47c26ecac5fa6bee044054ef948e", + "sha256": "1vg4sc6j0i03riwzvj8pg333fihj4g2nwd3pgahjfkxps7fbmlqv" + } + }, { "ename": "grab-mac-link", "commit": "e4cc8a72a9f161f024ed9415ad281dbea5f07a18", @@ -47497,16 +48187,16 @@ "repo": "emacs-grammarly/grammarly", "unstable": { "version": [ - 20220704, - 624 + 20221231, + 1655 ], "deps": [ "request", "s", "websocket" ], - "commit": "284acc680a68ffeeed958e62a568b49b0d9e0551", - "sha256": "18f8hvjmsy517nz9r5nv6h7x1bczkg4y00fz1rmkdjn656apcgam" + "commit": "0d9fbee337cb8dd316e5dcf0bff91e44c115dd0d", + "sha256": "1ljlfnvlp7lpr6sc89xnp8jy5m0n5sfrcs43y60b0wnvxxj4w1k9" }, "stable": { "version": [ @@ -47628,11 +48318,11 @@ "repo": "vermiculus/graphql.el", "unstable": { "version": [ - 20221029, - 1808 + 20221128, + 1106 ], - "commit": "4575642c3213593abe5972510c418ebb11bf1d99", - "sha256": "1apbnxbxzk6ngigdpbjkn52cli9axwxlkv2fhksyqsqvxrg8f119" + "commit": "b57b5ca5d2d0837e1fb4a4f30c051d5f3e643f0f", + "sha256": "18k2c2b7y5qgc7qpkqjmz1nv61w470ja3vwprmy5dlkzficzqsvf" }, "stable": { "version": [ @@ -47699,11 +48389,11 @@ "repo": "ppareit/graphviz-dot-mode", "unstable": { "version": [ - 20220309, - 1336 + 20230213, + 1945 ], - "commit": "6e96a89762760935a7dff6b18393396f6498f976", - "sha256": "04p8x4lwbp2qwlsr5xlzjn3a25bg0rsnk3nqfvvz66zv0srz62mn" + "commit": "a3cbfa969051dd638a993e1962e2b965067896f6", + "sha256": "01f0p4gkbr2n57qkr4hxgwqm7rsflqp3y806ab4l66g42xn1lp5j" }, "stable": { "version": [ @@ -47930,11 +48620,11 @@ "repo": "seagle0128/grip-mode", "unstable": { "version": [ - 20221003, - 1518 + 20230206, + 323 ], - "commit": "e1e8ee952f75cdca93327b6e7dcd79244ca66bc0", - "sha256": "008iyd67l69zk4zdzzkjjjja54z81w88l71rsbp054ggsvy6qq0a" + "commit": "bdee160db6ab8c988bb0de95ad306ff8b793ec67", + "sha256": "0mnwpng1zhq4piaxnbrqpn6di4jhnh7dhf2vrgmqiw66c16vz9hx" }, "stable": { "version": [ @@ -48007,8 +48697,8 @@ }, { "ename": "groovy-mode", - "commit": "3fe318b4e51a280a55c01fa30455e4a180df8bd6", - "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1q2zxx6glqp3z0ipsy4ry5fn4wrsz0slr5i36hxfhd8d1lrfn7ca", "fetcher": "github", "repo": "Groovy-Emacs-Modes/groovy-emacs-modes", "unstable": { @@ -48044,11 +48734,11 @@ "repo": "rexim/gruber-darker-theme", "unstable": { "version": [ - 20220107, - 1815 + 20221122, + 1143 ], - "commit": "72278089c440d45c00fb8afcd53af82fd30f451b", - "sha256": "15akxpc1zgdbhzcjc1cs8w1wm4yjgnxicgmqjrcgcqc8g0zhagcf" + "commit": "6de7a37d7b18cf3f0ec51db799f4f2aa6e3e89ff", + "sha256": "1bqjn67s0kcnf86qjxz0ayaash4rbwfwqsppqyy7p9qfc00cjix2" }, "stable": { "version": [ @@ -48067,11 +48757,11 @@ "repo": "ROCKTAKEY/grugru", "unstable": { "version": [ - 20221001, - 1525 + 20230121, + 1825 ], - "commit": "d03ccd6314d474f3e6beadc69c0b6ce32af62f07", - "sha256": "1s5xig6pbkbnb0xn7rp3a02ig0pzdwxqj54f3bjda0c37ch0l1cj" + "commit": "088f26330be161cfad4835e155595ec60dcb335a", + "sha256": "094kwvm136nw3p1l2bxkbp97qnsg46g0b3mgskm323bcdggj1g12" }, "stable": { "version": [ @@ -48123,13 +48813,13 @@ "repo": "greduan/emacs-theme-gruvbox", "unstable": { "version": [ - 20220909, - 241 + 20221213, + 25 ], "deps": [ "autothemer" ], - "commit": "3177b458dcbd5db6135a8d57fd5b765131e4da6a", + "commit": "736729265bfe5e247cf1b48bcf996e56516b0d89", "sha256": "0dgjf86i8179l1nsjyc20chysqmy8yhphpd5lzv2ypx79l4z3jka" }, "stable": { @@ -48306,8 +48996,8 @@ }, { "ename": "guess-language", - "commit": "6e78cb707943fcaaba0414d7af2af717efce84d0", - "sha256": "1p8j18hskvsv4pn3cal5s91l19hgshq8hpclmp84z9hlnj9g9fpm", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1sbvvzzdb76wf9km9sp6p6yp6cc3irvajz4fz78y90iw3dka2w6q", "fetcher": "github", "repo": "tmalsburg/guess-language.el", "unstable": { @@ -48388,14 +49078,14 @@ }, { "ename": "guix", - "commit": "b3d8c73e8a946b8265487a0825d615d80aa3337d", - "sha256": "0h4jwc4h2jv09c6rngb614fc39qfy04rmvqrn1l54hn28s6q7sk9", - "fetcher": "github", - "repo": "alezost/guix.el", + "commit": "f01c0af156ac4f89ebb706c93085f46f1740f212", + "sha256": "17gd0farvxs38l0a8v20cc1d6h1ri7nmdjl7i1mnwfb410rijvhy", + "fetcher": "git", + "url": "https://git.savannah.gnu.org/git/guix/emacs-guix.git", "unstable": { "version": [ - 20210608, - 1653 + 20221011, + 1244 ], "deps": [ "bui", @@ -48404,8 +49094,8 @@ "geiser", "magit-popup" ], - "commit": "c9aef52121b458297e70bb50f49f7276b4a8d759", - "sha256": "00xdxadbi9fxpfp60zah9190rcz3w08vl1blbhmaiy7c1hd2gi39" + "commit": "cf5b7a402ea503c3dcda85a86b9a6c6dd01896e0", + "sha256": "0wxiipgv91rlk9bhspx370rykywi52rxg5m1f7680vzs3ckc7nyd" }, "stable": { "version": [ @@ -48447,11 +49137,11 @@ "repo": "Overdr0ne/gumshoe", "unstable": { "version": [ - 20220831, - 2055 + 20230115, + 2105 ], - "commit": "008e8fdec489a28e8cf807b3b511a9561c64268c", - "sha256": "1n5fdi328fvcnq5vb421d7mafkwidn4arah67difxkl6aq7g54jp" + "commit": "0ada8c575d4e94b4f3edb0092239cfa835b17726", + "sha256": "0jq43w12j6sf6qammahfyhmzcq78y2w00lmaxr2mjqdmq435vhah" } }, { @@ -48509,8 +49199,8 @@ }, { "ename": "gvpr-mode", - "commit": "ab25afcf4232082dc0e48706734f141a308912a7", - "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "07c5l9n3337nqzijkr3sz4q0mwf429i5jpyiqmnqrkdpwkbh26h3", "fetcher": "github", "repo": "rodw/gvpr-lib", "unstable": { @@ -48545,6 +49235,21 @@ "sha256": "1l5d1kh2dy3w42i8c3z63c7mzarxixxiby2g7ay2i809yxj10y1n" } }, + { + "ename": "h5dump-mode", + "commit": "5c5d429299615aaf1917f9602eda7fa6f3d1a4f9", + "sha256": "04vl82x9zi1sjjzg85q4w9pj98lj7jr0a88xr93x2g82s4p9gkfg", + "fetcher": "github", + "repo": "berquist/h5dump-mode", + "unstable": { + "version": [ + 20221128, + 1935 + ], + "commit": "3c9e4608112da91db76bf316417023bed0422ef3", + "sha256": "17qqvl99vyfcxa90wkpqd2r7b2s05nnp4jnf3lhflx8s3dzmnpzy" + } + }, { "ename": "habamax-theme", "commit": "77386484ad0b31c2818fae52cd312821c4632cb8", @@ -49018,20 +49723,20 @@ }, { "ename": "haskell-emacs-base", - "commit": "5daff329a96a6d10bca11d838bbc95d1c8bcfbd9", - "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0lfn13vgp0jpqhgsxg6qhcr408bpfhnfr0dccs7c5i9rlk8xn0cv", "fetcher": "github", "repo": "knupfer/haskell-emacs", "unstable": { "version": [ - 20150714, - 1559 + 20160904, + 2026 ], "deps": [ "haskell-emacs" ], - "commit": "7f91f65254902b8ff04fdb679bc569b2f6a51637", - "sha256": "17i9l6wgrvmp31ca4xrax31f7bjnn0vn2figycxhfaq9f6vxgkkn" + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" }, "stable": { "version": [ @@ -49054,14 +49759,14 @@ "repo": "knupfer/haskell-emacs", "unstable": { "version": [ - 20150713, - 1416 + 20160904, + 2026 ], "deps": [ "haskell-emacs" ], - "commit": "cc240612740fc3fd6e3c3d8cdfe486a89954f5d1", - "sha256": "09g6b1ad7qi9k58ymgmssgapwapxcwf30qhmfl2w8sl045ngzlkk" + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" }, "stable": { "version": [ @@ -49101,8 +49806,8 @@ }, { "ename": "haskell-snippets", - "commit": "b5534e58ea66fd90ba4a69262f0b303c7fb85af4", - "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1pif4wv1d9gjhkxg57c5byg58gdlf0cpd8a4jjbkwlqqz1z7zgf5", "fetcher": "github", "repo": "haskell/haskell-snippets", "unstable": { @@ -49138,11 +49843,11 @@ "url": "https://git.spwhitton.name/haskell-tab-indent", "unstable": { "version": [ - 20200513, - 1950 + 20200514, + 1424 ], - "commit": "e332562b67b2611ef3f97d6a0bc395c6aeb70c7b", - "sha256": "0g06rs9lmpawbk02yiyq7gxrsfb6ps7vq0ghija9h97n47arxczb" + "commit": "1127f46eca40a48be9cd2380df2cfc5f0b694e63", + "sha256": "13c2z1i7icpwv60njn83qbla9i0qlq3m0yz88ach1mlvmsdfj9jz" }, "stable": { "version": [ @@ -49184,26 +49889,28 @@ "repo": "purplg/hass", "unstable": { "version": [ - 20220813, - 1717 + 20230116, + 2220 ], "deps": [ - "request" + "request", + "websocket" ], - "commit": "c6d9bd2e29fc2c4f37c0c72f3d136e43f34addbc", - "sha256": "0km3gcsd9vn4w9700rzfyfw4vj47sbd39xxn42lgqjw0h1bywdkw" + "commit": "033d11b07e0f8bb68b348a12d5ae13fabea56c73", + "sha256": "09jh1awga10jys9sj5szrx9jmgdjr33ahb8dqkryxykxm8527g6c" }, "stable": { "version": [ - 2, - 2, - 3 + 3, + 0, + 2 ], "deps": [ - "request" + "request", + "websocket" ], - "commit": "c6d9bd2e29fc2c4f37c0c72f3d136e43f34addbc", - "sha256": "0km3gcsd9vn4w9700rzfyfw4vj47sbd39xxn42lgqjw0h1bywdkw" + "commit": "033d11b07e0f8bb68b348a12d5ae13fabea56c73", + "sha256": "09jh1awga10jys9sj5szrx9jmgdjr33ahb8dqkryxykxm8527g6c" } }, { @@ -49386,23 +50093,38 @@ "sha256": "1bgs638nsn9hyvc9wbc2jpqm5i3hblld1mhmf0h9z0j6fjr0aapx" } }, + { + "ename": "heex-ts-mode", + "commit": "dbc1afa79eb2b9b50c9aed1a33f7eacd8cc5754d", + "sha256": "1c1d7ji2j0y99qnv2qwj5jf3vij56ja3pf0jzxxwmm9ka9scb3rj", + "fetcher": "github", + "repo": "wkirschbaum/heex-ts-mode", + "unstable": { + "version": [ + 20230216, + 554 + ], + "commit": "3eecf4dad47a4cb6d92d730021e72cefda267539", + "sha256": "19rpjhyd1k7qp3gvl3hq2ah72m7a8da0h0a93smfpkkkz3j4n5dz" + } + }, { "ename": "helm", - "commit": "38cea79ddef23a10098b5f3f8509e5be1e59536c", - "sha256": "032ypri8p6q1xz65imd89xizm4gzxkg62zaqyyv5pb2kbbv1y2b0", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "01h2k8xb4r98xxyff8cg53fzv3xc4nq7gl3qhghn03vla2l9hzpq", "fetcher": "github", "repo": "emacs-helm/helm", "unstable": { "version": [ - 20221117, - 1800 + 20230216, + 1255 ], "deps": [ "helm-core", "popup" ], - "commit": "8de5444df2bafd1b3a91acd0e00cf1e0ee81682b", - "sha256": "09dk0dz8fkigi3zbinq76310nnnw29z4pca0ypsn2z6l0l3hg7zb" + "commit": "df927fae1f0a17c5c540429b010b4639ae89fa65", + "sha256": "1spw1jxpizmnk7hr1s2j871psfqb88ipspq7k44r8gdwpzb31jxj" }, "stable": { "version": [ @@ -49718,8 +50440,8 @@ }, { "ename": "helm-bibtexkey", - "commit": "d35a2e5cb5232d16d5c98168706d8b6426fcfb44", - "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1rz9140miy9qnx2nhzhaqjggv8dp9kh0x6sr5m4a1z0j3720ql0a", "fetcher": "github", "repo": "kenbeese/helm-bibtexkey", "unstable": { @@ -50199,8 +50921,8 @@ "repo": "youngker/helm-codesearch.el", "unstable": { "version": [ - 20190412, - 1153 + 20221219, + 1219 ], "deps": [ "cl-lib", @@ -50208,13 +50930,13 @@ "helm", "s" ], - "commit": "72f1d1de746115ab7e861178b49fa3c0b6b58d90", - "sha256": "1qxpx8jmkvg59k4rx99bn9asnh4nl5rwkjvbhprdlqaicglm153q" + "commit": "bd5a7e3ece98f2940cb09be56d3e56da97d4c865", + "sha256": "12lay84wys9hwry68nyxfa0visjv6bhndc3nyhggwd44i30wvx8c" }, "stable": { "version": [ 0, - 5, + 6, 0 ], "deps": [ @@ -50223,8 +50945,8 @@ "helm", "s" ], - "commit": "a6bac6b8a063b91b444a72318b163b266742db9b", - "sha256": "0xmplh7q5wvrkfha8qc9hx7sjyc8dsms0wrvj2y7zg35siw1561l" + "commit": "bd5a7e3ece98f2940cb09be56d3e56da97d4c865", + "sha256": "12lay84wys9hwry68nyxfa0visjv6bhndc3nyhggwd44i30wvx8c" } }, { @@ -50300,14 +51022,14 @@ "repo": "emacs-helm/helm", "unstable": { "version": [ - 20221113, - 1706 + 20230217, + 602 ], "deps": [ "async" ], - "commit": "51b28e8c5ba63aa891d5d05aca08ac2688701971", - "sha256": "10xicmc6h0qlxahnf7zd70jg40i2mcz9m7vr1b28wpjgi1rmf8ix" + "commit": "dfd6403947c5cd9f32afcd6bc92a1756cc958c82", + "sha256": "03rw1j7cs7glwcnwxp69zl0csfj138csyzcg6g2yj1vsm31mx2mn" }, "stable": { "version": [ @@ -50501,14 +51223,14 @@ "repo": "masasam/emacs-helm-directory", "unstable": { "version": [ - 20170706, - 402 + 20170709, + 1103 ], "deps": [ "helm" ], - "commit": "caa013b820b5263bf1c6446debfea0766dae8ab8", - "sha256": "15ljhz7cik7qzbh69l28c9mcvls5zgk42lp5bm9kl9fg6m6aasvq" + "commit": "2c6d45404506ba744888dcdb65e9f63878f2da16", + "sha256": "1a5j4zzn249jdm4kcri64x1dxazhhk7g5dmgnhflrnbrc2kdwm8h" }, "stable": { "version": [ @@ -52200,14 +52922,14 @@ "repo": "emacs-helm/helm-mu", "unstable": { "version": [ - 20220920, - 1200 + 20230102, + 1148 ], "deps": [ "helm" ], - "commit": "b9865a3a8ba8af572fcf12d975ea04dc9437c1a2", - "sha256": "1x9z790chc4ia5ipb30fza5bjybp6xp1194z5wbb1fn7hnyxa5z4" + "commit": "2422f57ed40d998ac6f085f93b24223c91cefaf7", + "sha256": "1j6avadq1jn5bib1nr8sj08qn4f67psb39jdcn314n6r84xf4gam" } }, { @@ -52399,8 +53121,8 @@ "repo": "alphapapa/org-ql", "unstable": { "version": [ - 20220318, - 1529 + 20220527, + 703 ], "deps": [ "dash", @@ -52408,8 +53130,8 @@ "org-ql", "s" ], - "commit": "f666fe150f1bf3c3ce43d0e15f90b20d43c2e772", - "sha256": "1mpq3v8lxqllnb4afqh7p9av0p9bha8ld7741zaw4hxb1252xgm2" + "commit": "115500c8a0a3190ec6a69d1120fe81944d819125", + "sha256": "0iamqv5j43ngj1xdqr36rkgk9lqpk9bg8y531jsldnvwzrp3srpf" }, "stable": { "version": [ @@ -52769,16 +53491,16 @@ "repo": "bbatsov/helm-projectile", "unstable": { "version": [ - 20220820, - 826 + 20221215, + 613 ], "deps": [ "cl-lib", "helm", "projectile" ], - "commit": "5813f7286533990783546c9c39c184faa034d1f1", - "sha256": "1qrdms3lmr7wspqhd0ygqmyznlc6spy2lnn1n8p4v495nzdygzdh" + "commit": "35a2111d00c0c0c9d8743280d3f1243bb217118a", + "sha256": "0gd170h3v5i1886f7pvb5h5licy797djhjrigwfj2wa7i5q1avxv" }, "stable": { "version": [ @@ -53293,8 +54015,8 @@ "repo": "emacs-helm/helm-searcher", "unstable": { "version": [ - 20220704, - 634 + 20221231, + 1632 ], "deps": [ "f", @@ -53302,8 +54024,8 @@ "s", "searcher" ], - "commit": "27a6cfc7f9b3c988b4c7c6f1b3954760a9701dc0", - "sha256": "13pb0rcwp7jaj30d98lhi0jyk4dxlgk8pg64s5bnxf492hjzsk4x" + "commit": "225480fa89d73eb53478576610f48d035b77cda9", + "sha256": "0xmjccgym52fdryggr8lpamxy5d39jxr5mrl76r11n30dr46r1qi" }, "stable": { "version": [ @@ -53806,26 +54528,26 @@ "repo": "masasam/emacs-helm-tramp", "unstable": { "version": [ - 20190616, - 125 + 20221228, + 1444 ], "deps": [ "helm" ], - "commit": "924b5516270b3933e847562e8e14e3888dd24184", - "sha256": "19y97ia4zl50wd22gkb7kkhj713imd5jc92l2xnpw04b59b60di1" + "commit": "10711393c05272112e1585dca87ebeb0ea5b114d", + "sha256": "0rijcx9qsj76yf5lwmjicq94r6knaqh9v0xiq2i4gr48gf3j7irv" }, "stable": { "version": [ 1, 3, - 9 + 10 ], "deps": [ "helm" ], - "commit": "924b5516270b3933e847562e8e14e3888dd24184", - "sha256": "19y97ia4zl50wd22gkb7kkhj713imd5jc92l2xnpw04b59b60di1" + "commit": "10711393c05272112e1585dca87ebeb0ea5b114d", + "sha256": "0rijcx9qsj76yf5lwmjicq94r6knaqh9v0xiq2i4gr48gf3j7irv" } }, { @@ -54136,10 +54858,10 @@ }, { "ename": "help-find-org-mode", - "commit": "572003398d1bba572fa9f6332b25ade9306bf718", - "sha256": "149rd61bcvgrwhnhlqriw6fn6fr4pwr4ynmj2bwcp558nwf0py0b", + "commit": "7ea0e06818d5bf0f48da5e491b39891c78744d67", + "sha256": "12yqgl2sm4kys6ar9sgxc6myixr0shdraxdh41702bn2chlxvkcc", "fetcher": "github", - "repo": "EricCrosson/help-find-org-mode", + "repo": "emacsorphanage/help-find-org-mode", "unstable": { "version": [ 20181204, @@ -54166,8 +54888,8 @@ "repo": "Wilfred/helpful", "unstable": { "version": [ - 20221108, - 2042 + 20221209, + 1743 ], "deps": [ "dash", @@ -54175,8 +54897,8 @@ "f", "s" ], - "commit": "dc4e356b55212f67c7022f3aec4f5986a23d5d5e", - "sha256": "18dy3nxdnxz3wyr4hza9jcv4agsyyqf82jp6jdqcj13kncfl9gn5" + "commit": "94c25337b2de2f9da60914a7c0c6cca9584c0231", + "sha256": "09da3d3kx4c8im58kwfv59zpwda70yvwnjk01w7r6lra1ww8d3yx" }, "stable": { "version": [ @@ -54276,11 +54998,11 @@ "repo": "kuanyui/hexo.el", "unstable": { "version": [ - 20200416, - 1410 + 20221130, + 1642 ], - "commit": "d600b6c2d51959f1331c8abf3953365544322afa", - "sha256": "07w6jlq3z5y019n5kplqn38gw60ffk2yx4vchp6qgif98lhcjiyr" + "commit": "709c069ec0f9ffd8bc2f8fff18a66d80bc205f6d", + "sha256": "14jsanf2wc6k7rqiy3l2i8nzhlasknjvdmq7mh7q680ajj8hry7d" } }, { @@ -54380,17 +55102,17 @@ }, { "ename": "hiccup-cli", - "commit": "524a84be8692bd29b93e4897467e2e798be5fa53", - "sha256": "0xv6bq2ryz71lqqm1z6wg0lf1qmqwydg17zi614dsajsa5xhrjkb", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0b79709x1lj050jicwklp0bx3v0j9d5ymdzp5niqsnww5z81q0bb", "fetcher": "github", "repo": "kwrooijen/hiccup-cli", "unstable": { "version": [ - 20210208, - 652 + 20210211, + 2127 ], - "commit": "863aa81c30d747e88cf53b3922169f8196d18a97", - "sha256": "0j1zw88frqlzhr94b5550ljlm8wlqqxjb2gjysi1g1k7kqha868b" + "commit": "cfbb957a1f86bc1d28e778bfdffdeaaa2ae79286", + "sha256": "0f3b7wsq9b0xswvj4073ykkcc36kybz16bz4q068qziig22d9szb" }, "stable": { "version": [ @@ -54833,11 +55555,11 @@ "repo": "fgeller/highlight-thing.el", "unstable": { "version": [ - 20220726, - 2237 + 20230217, + 728 ], - "commit": "cdf429c41c13c22d25fe43493cc5d85cc480dba6", - "sha256": "1p3q0s96f2pgmf327zzwx11sdy24im3dy9qv53bk2nb5zysvklzm" + "commit": "ad788d7a7ee9eb287a8cca3adb21510b89270dca", + "sha256": "1p829ydpc1qhqabwi0xaa9yy4rqz9wbkphq7kdly6qiz59jasdq1" } }, { @@ -54884,19 +55606,19 @@ "repo": "dantecatalfamo/himalaya-emacs", "unstable": { "version": [ - 20221007, - 1816 + 20230209, + 1545 ], - "commit": "1735b55e4dd60c63fe3900e959655f1f8b961590", - "sha256": "19w5vjx0zlfvfldblb7fjd4vzhbsi9y0plj1a6avplk8jypjdr7r" + "commit": "712bb410afd4cd43d3a8e9bcf2b1930dcde7000c", + "sha256": "136fdjb033dx1k94580ygglldhii6smcf7hvqawb4x1z6i80p8jq" }, "stable": { "version": [ 0, - 1 + 3 ], - "commit": "1735b55e4dd60c63fe3900e959655f1f8b961590", - "sha256": "19w5vjx0zlfvfldblb7fjd4vzhbsi9y0plj1a6avplk8jypjdr7r" + "commit": "712bb410afd4cd43d3a8e9bcf2b1930dcde7000c", + "sha256": "136fdjb033dx1k94580ygglldhii6smcf7hvqawb4x1z6i80p8jq" } }, { @@ -54907,14 +55629,14 @@ "repo": "mihaimaruseac/hindent", "unstable": { "version": [ - 20210201, - 148 + 20220625, + 444 ], "deps": [ "cl-lib" ], - "commit": "89b8f857a1e706f723de27063a8d9f870efa0169", - "sha256": "1yvrkwv3cdbz9y526zqsc9764x27l7ih5vcyh8lqmy4w93akh151" + "commit": "68d5211b2737c2ba31bbceed9b1abbb36bb83e39", + "sha256": "0qkrgar7blirhx85p0m4pjvwwh5rcs9ypy49hyg9bah1dgrnm88b" }, "stable": { "version": [ @@ -55119,11 +55841,11 @@ "repo": "ideasman42/emacs-hl-block-mode", "unstable": { "version": [ - 20220731, - 2352 + 20230201, + 130 ], - "commit": "a9e8e8cfd83972a448bdbb0a9967989d0aa1d05a", - "sha256": "0bdn9d28g2nmbxq0jhjrcpxadl18q0z231ciyqw2cvcc60i4n4rq" + "commit": "352686955b6e73c6353c640c7d3bc09487c9de69", + "sha256": "1xqrd6z015ka42b1j1kakym3qvv1m5ip450fiffkv8gmfnxi7mkj" } }, { @@ -55170,11 +55892,11 @@ "repo": "ideasman42/emacs-hl-indent-scope", "unstable": { "version": [ - 20221016, - 508 + 20230116, + 2310 ], - "commit": "fa2f0f28ad869e83ae3c77d8d936dde5a1e45f24", - "sha256": "1lygcap8fk25cqqnvsdrkhhvca22c62vf02xq75ccx2aic9dnshh" + "commit": "5e806bfedd01bf82e4fda27e4b9809662318c287", + "sha256": "1xj2xaxff7qan8mmndzr88kx0b80bva1myy37si5jw2d6k3z8scf" } }, { @@ -55185,11 +55907,11 @@ "repo": "ideasman42/emacs-hl-prog-extra", "unstable": { "version": [ - 20220731, - 2353 + 20230201, + 140 ], - "commit": "6d419cc36936f3bb3c9c63a6f77cc88a80b0db9c", - "sha256": "19k1g8g0z9sllqjq2arp2fdcpn9xs8d73d7nx7bn12s1kpa7viv6" + "commit": "a573977f9734b1786a4691c9fb8e5031159027f6", + "sha256": "0wnf62vlpa46nb0ziabn3c95i59x7b0sxjwkmkhmcgzqfa8g86jd" } }, { @@ -55222,14 +55944,14 @@ "repo": "tarsius/hl-todo", "unstable": { "version": [ - 20221011, - 1032 + 20230212, + 2213 ], "deps": [ "compat" ], - "commit": "c699c9beb2f878ad3803c91bd0bd7c1a5e1c9690", - "sha256": "1bmvcr72ch94kdqnzysx98kswlv9r6al6kwv7bxrkbq922shqf11" + "commit": "13034b2709b22631772ef24d08f8a16bfa06bc34", + "sha256": "1dmzw1nin7h9ns7md9lgkfcdxja1vlxh03mp9ggn2n79cv6abjkf" }, "stable": { "version": [ @@ -55395,14 +56117,14 @@ "repo": "Boruch-Baum/emacs-home-end", "unstable": { "version": [ - 20180817, - 855 + 20190109, + 541 ], "deps": [ "keypress-multi-event" ], - "commit": "211914c5e7b25f35f02626575a9b10536f81ba1d", - "sha256": "1ppjm0sb4svarnqcv6j581sqnjjsps27ghx63759v9wkylqyi995" + "commit": "30676ceec0d4ad84038cd0d65ee45ae810ab185c", + "sha256": "0czvnk74988p6gqz5jz83gkvvqdrdmzn4qz6cc8dmbyxk1zg6l8y" }, "stable": { "version": [ @@ -55642,20 +56364,20 @@ }, { "ename": "howm", - "commit": "570bde6b4b89eb74eaf47dda64004cd575f9d953", - "sha256": "0jc585z0whcph644k2iic41xvjgzln3w2kdibrmr8lpcifbfr5qk", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1i2lcgxcqbpdi5mh2684m0sqyvmw59pmd9rpx1kmpy17a9972b87", "fetcher": "git", "url": "https://scm.osdn.net/gitroot/howm/howm.git", "unstable": { "version": [ - 20220815, - 1125 + 20230218, + 818 ], "deps": [ "cl-lib" ], - "commit": "9982e74e212014bc8ed67bbe780eb6ca55dc5298", - "sha256": "05dfd8sqvv51miwkr82hym5z7byiiv38zsx47b7sqr8kkqj9jcf5" + "commit": "ffc1e7da1f02f750094a9f0fe8a0aa837743193b", + "sha256": "1hhphdczwqiwb96d4wi0bxv4cjph4sb4pgb4wjihy2805b0dj9ar" } }, { @@ -55684,14 +56406,14 @@ "repo": "Wilfred/ht.el", "unstable": { "version": [ - 20221031, - 705 + 20230214, + 1632 ], "deps": [ "dash" ], - "commit": "ef768ccdeb8159814628ab0e2714e7dc8d9674fa", - "sha256": "1ckkjb9nl9vfphj6c2zdc5jjsv44b00l8p8kn6dzihazjcip7f4m" + "commit": "3c1677f1bf2ded2ab07edffb7d17def5d2b5b6f6", + "sha256": "0nbmdh0ba89hr617kk0ak78blj7birrxi8rpn9ps38a5x41l46a4" }, "stable": { "version": [ @@ -55728,11 +56450,11 @@ "repo": "rejeep/html-script-src.el", "unstable": { "version": [ - 20120403, - 1815 + 20130807, + 918 ], - "commit": "0efeed7ab948e48128e6f1a7ddff17ef2951e1c2", - "sha256": "11zffiy5s0zqwi8hxwa87j2k8n2lm54v8knnbwa5zafhqpb53znm" + "commit": "ed5e686ab604c81222c7e50b27c5d874c5687db7", + "sha256": "0rrm1azjgclidb8js8qvkhgnlmz9ivbjw69p6z25h5p0rxfx3jnj" }, "stable": { "version": [ @@ -55752,15 +56474,15 @@ "repo": "plexus/html-to-hiccup", "unstable": { "version": [ - 20211129, - 944 + 20230120, + 1416 ], "deps": [ "dash", "s" ], - "commit": "97ecc8cce11f577ad4406da0367aa5eeec1bd8c6", - "sha256": "0i96m9wpgwlxp8b6lw7a8lsjbxb7q9m12p8yra33q7q3ilav4g8p" + "commit": "12f12fe3165eebbcf17e6209693c8e7251ffa04c", + "sha256": "0k25rd75j37dl19h1w03i1sbjdhwczpw5bb9ynarr6xxfk73iaaj" } }, { @@ -55807,8 +56529,8 @@ }, { "ename": "htmlize", - "commit": "075aa00a0757c6cd1ad392f0300bf5f1b937648d", - "sha256": "16nvvsi4nxi0zzk5a6mwmp43p0ls20zdx9r18mxz6bsaw6jangh2", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0wmsgvqyag03qq6rqiqkg2vmzv3rql7h7k090280lp1khgs4xyhk", "fetcher": "github", "repo": "hniksic/emacs-htmlize", "unstable": { @@ -55894,11 +56616,11 @@ "repo": "hassy/http-twiddle", "unstable": { "version": [ - 20160801, - 1911 + 20221203, + 1351 ], - "commit": "46da2dbc40209925aa88ab19014ca982bcf9ac70", - "sha256": "03fdpl64lgwlz8yc29ia9scbh0s5xh7g7jbyfvvp6hcy2f0yiyx7" + "commit": "c07e8620183ec710623db35e26dd839b84c56007", + "sha256": "1r8lb9qzrvpkh8qjba7pjmq4jw2na6grjckydm3s2m65lq618vjg" } }, { @@ -56270,11 +56992,11 @@ "repo": "vifon/hyperlist-mode", "unstable": { "version": [ - 20200515, - 2209 + 20230119, + 28 ], - "commit": "00af994deda061fa95ad0046510eb6a2672c99aa", - "sha256": "1l99h6m1h01iz0fq5nn56lxx8wnvci7jm0iwqyyjrgll808z1ji7" + "commit": "480dbf33ca72e7b5fade952aaf0d5a5eb43acb1d", + "sha256": "0rjlhqrr4plgx8fw8sbj8mv05w9gdc0ac34igm6lxgb4amkrvs00" } }, { @@ -56424,6 +57146,30 @@ "sha256": "0hvpcckhlxab5f7w4s6iw5lhdbjrqn0l8gayg1w42rn6gssr3rap" } }, + { + "ename": "ibrowse", + "commit": "f40df0797df7ac0721debf139418f91dc7e82333", + "sha256": "185z9yqf6qp4q93mzmgz8mr3azbhwgs4gzqrqlv75fk332rpdl96", + "fetcher": "sourcehut", + "repo": "ngraves/ibrowse.el", + "unstable": { + "version": [ + 20230123, + 737 + ], + "commit": "b42685528d7bb2ca968fbf536d8745838e633828", + "sha256": "0q3imid9byaay0lqvv5n2klwk680w8x3qzdb279rdr08bb36w5ya" + }, + "stable": { + "version": [ + 0, + 1, + 8 + ], + "commit": "b42685528d7bb2ca968fbf536d8745838e633828", + "sha256": "0q3imid9byaay0lqvv5n2klwk680w8x3qzdb279rdr08bb36w5ya" + } + }, { "ename": "ibuffer-git", "commit": "d341da1b9bac782c75ab931fd53a9525a85c702e", @@ -56532,11 +57278,11 @@ "repo": "svend/ibuffer-tramp", "unstable": { "version": [ - 20151118, - 1739 + 20180127, + 2122 ], - "commit": "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4", - "sha256": "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq" + "commit": "bcad0bda3a67f55d1be936bf8fa9ef735fe1e3f3", + "sha256": "1ry7nbhqhjy6gkxd10s97nbm6flk5nm0l5q8071fprx8xxphqj8f" }, "stable": { "version": [ @@ -56556,14 +57302,11 @@ "repo": "purcell/ibuffer-vc", "unstable": { "version": [ - 20221025, - 1411 + 20221215, + 1752 ], - "deps": [ - "cl-lib" - ], - "commit": "813d2dec32bd7ecbb1ecd781c2a63046f71d0dd3", - "sha256": "04h6p5vfxm3pgkjc29wvb58csg7wh31gj9wp4x8i8hpma5gkm07l" + "commit": "9204001d1c5ca39409485c1574fd315b0e137a92", + "sha256": "1xf9brpimdpalrwfd8h9233ssw6b2s6wszissw1836f6x76cx5lj" }, "stable": { "version": [ @@ -56653,15 +57396,15 @@ "repo": "plandes/icsql", "unstable": { "version": [ - 20210612, - 1340 + 20210630, + 1606 ], "deps": [ "buffer-manage", "choice-program" ], - "commit": "5ca5bd6b1bf307953b5fe7be1967c38cc879ad8a", - "sha256": "0xv4lridnzqalgaqg99a715fv15rknznjy3fw4b1jpkjl49rb398" + "commit": "4521e9d2debef7687bfd26a664479f0c46688a36", + "sha256": "0s65kilx1jrjhm80sc4fj3x0mr3x4m3vjllm6qxj8ml8sh3pkai3" }, "stable": { "version": [ @@ -56762,11 +57505,11 @@ "repo": "ideasman42/emacs-idle-highlight-mode", "unstable": { "version": [ - 20220731, - 2354 + 20230208, + 359 ], - "commit": "b3eed5553fe8d7b28bd95b5093e4174d859695ca", - "sha256": "1wp6mcj7j7hdwhdg29d6csma2v02g1w5z5kv5aa9lwmb3w7pfdq6" + "commit": "215d6612b4f8f412c14f9f456106bfa4c5df3d2f", + "sha256": "1wxfry0z7k9xx5yrns127yj5vfbsh2ldm6ajlqz4bxx476zwwwdk" } }, { @@ -56807,11 +57550,11 @@ "repo": "katspaugh/ido-at-point", "unstable": { "version": [ - 20151021, - 757 + 20151113, + 1508 ], - "commit": "6b267f202dc3d3d924c904fbd894e9a209f231de", - "sha256": "1bj8k5fq6x3s5qmr02bnkcls7sndmg4wjjjrsd3fr6yl8c4jcy3k" + "commit": "e5907bbe8a3d148d07698b76bd994dc3076e16ee", + "sha256": "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp" }, "stable": { "version": [ @@ -57180,15 +57923,15 @@ "repo": "idris-hackers/idris-mode", "unstable": { "version": [ - 20221118, - 1026 + 20230210, + 2150 ], "deps": [ "cl-lib", "prop-menu" ], - "commit": "67e06eccbd063078df9671169c60ed5bb941d9cf", - "sha256": "1hc6f24l8z8nz0sg5dz14wrxsi40x5dzx9a4plldcfdh743lsvp6" + "commit": "788f53520db8042fb6dbc56779a9439da0dd6693", + "sha256": "00apzc6n80hwf0g64mzq3pm9jbqw3k3i8ffr0hfjdp1c0777cwiy" }, "stable": { "version": [ @@ -57434,14 +58177,14 @@ "repo": "tarsius/imake", "unstable": { "version": [ - 20221022, - 2233 + 20230212, + 2016 ], "deps": [ "compat" ], - "commit": "d9b5cb5c0a5483e663cc3c345df7659ddf08b61e", - "sha256": "0b53y83w1ksy96h10vnbn0f3is4g5nb3dxmh0v8plrchkwxb0pq3" + "commit": "e8c0f88fa56e3b73307f50a21ab664a4b1bb59eb", + "sha256": "15ldjmvrxlwl0bfwjyw7f9ms3k6asm735la3h6ywkj5231yxfn1x" }, "stable": { "version": [ @@ -57462,10 +58205,10 @@ "unstable": { "version": [ 20180318, - 2027 + 2222 ], - "commit": "5e842a8c60ba98f344edf1b1e65f5a480ed938ed", - "sha256": "16k7cxzdjbblzckp5qppw1ga0rzdh3ww2ni7ry1h43p9cfna0kcx" + "commit": "79bbbe918319bc1e8f42a0bef53dc7c77fe868ea", + "sha256": "0lqhwh8kav7f526a40rjdy2hzarzph1i3ig2dmbf02gp32sl7rg9" }, "stable": { "version": [ @@ -57627,20 +58370,20 @@ "repo": "petergardfjall/emacs-immaterial-theme", "unstable": { "version": [ - 20220519, - 635 + 20230219, + 1703 ], - "commit": "e022d1a2fdc899b4c22254ebcf8997f5690d7c60", - "sha256": "0knpyh0ci777g6h83lr4pvy7w1syf068gy1p409rg3ssnwjnkxnl" + "commit": "20417eaf6f349b3707e515d5d7817896243a8ad1", + "sha256": "1xymssi0kyipgy9dyda931795xpvr1afnisaccl9yq53rzibwxfx" }, "stable": { "version": [ 0, 9, - 0 + 1 ], - "commit": "ca82a1700cf7834b55ada36e53811f6effde6283", - "sha256": "1c9d895g4dw0jp1ipm1mlhs2ln5f61ng83rv294jh32nrl3wrs81" + "commit": "2b2fe48234e73b447e3578fd211627ac4e78d070", + "sha256": "0r6m8jdn0lknhrivba27c7y54lysiab5nq5lm2i6bybzvc13ism5" } }, { @@ -57684,8 +58427,8 @@ }, { "ename": "impatient-mode", - "commit": "aaa64c4d43139075d77f4518de94bcbe475d21fc", - "sha256": "07z5ds3zgzkxvxwaalp9i5x2rl5sq4jjk8ygk1rfmsl52l5y1z6j", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "11z0b8992k14jnpshbprsnhhgq1nsrpz3mxak9gz0wh6hi449f7j", "fetcher": "github", "repo": "skeeto/impatient-mode", "unstable": { @@ -57842,11 +58585,11 @@ "repo": "flashcode/impostman", "unstable": { "version": [ - 20220818, - 1845 + 20230111, + 2012 ], - "commit": "16ee00e35e9ee82bb06c6feafb148d98165f822f", - "sha256": "1ghwrg7w9b3xhfj2yjxzd9ysbgrb81pkg6gqhiq3n2zsia18i87p" + "commit": "936575500f733c2428ba878f9400f3eef8c9645e", + "sha256": "16zd5bk7s1h9yrrsk0ngpzb4cfyj4gkmq70m0ijsc94az7m9rlx3" }, "stable": { "version": [ @@ -58135,11 +58878,11 @@ "repo": "J3RN/inf-elixir", "unstable": { "version": [ - 20221013, - 2100 + 20221120, + 2028 ], - "commit": "0eaea59f20889b3d0048719377e5a05a2e7fea1a", - "sha256": "1swiw3yih4xbgrh4dx7sqxrz4d7jjkhnjfirjdcds0c6mjg0cvzp" + "commit": "6fbb0867b586ad1bf8adc09cc55f33dfa72db833", + "sha256": "0gwg2hjz0s6gkyifvni3mghrp7174prwrl46sbxx5pi9s435djpm" }, "stable": { "version": [ @@ -58174,11 +58917,11 @@ "repo": "nonsequitur/inf-ruby", "unstable": { "version": [ - 20221016, - 2238 + 20230122, + 246 ], - "commit": "c6192178941b46754fdb50405f344481c8ef2fd1", - "sha256": "1rmhqwhyp7756z0zl313clv4wkv1zxvyhlznqjpjwqajcjbz1ib4" + "commit": "0ce7f4049edcae188b4643b3163e5301f9ef09cc", + "sha256": "0ygm4y0iwvh1mz883x9727jlw0pnf0xgl4b1xysbvsyg6gplf0xv" }, "stable": { "version": [ @@ -58459,11 +59202,20 @@ "repo": "Lindydancer/ini-mode", "unstable": { "version": [ - 20170424, - 909 + 20230211, + 1512 ], - "commit": "2194cfa2fd13196a37350ec20b3f00dcf6162b7c", - "sha256": "0s3dcqywrbggrcn9j5nibhcl4xbnhdndz5sibcp26qswd18jyrdk" + "commit": "5472abc94e564edc6b469c48d2324519a044a77c", + "sha256": "1k2xscd9dhxd4znsxn3ryvds8g9yrd82bz4jdx5p2km9czpjrj88" + }, + "stable": { + "version": [ + 0, + 0, + 7 + ], + "commit": "5472abc94e564edc6b469c48d2324519a044a77c", + "sha256": "1k2xscd9dhxd4znsxn3ryvds8g9yrd82bz4jdx5p2km9czpjrj88" } }, { @@ -58571,11 +59323,11 @@ "repo": "ideasman42/emacs-theme-inkpot", "unstable": { "version": [ - 20221029, - 2301 + 20230110, + 950 ], - "commit": "7b723a7c9c6381d09cc1c267fb067c055cfeab72", - "sha256": "1wrb6m7i180pxa2mg3737vhamzmrrwki0ii44iakp5588qyn7y3c" + "commit": "fa0746d927ad205b2f17589e67703c18f42aacf4", + "sha256": "1q8mqz8635fgg1jsp0gypngjicymnfw1ba50hvvzd4nigg107xhz" } }, { @@ -58712,11 +59464,11 @@ "repo": "lassik/emacs-insert-random", "unstable": { "version": [ - 20220622, - 1653 + 20230212, + 1710 ], - "commit": "049567eeca639017ac2db786cefaf38af7273654", - "sha256": "0ml5sig9c9q3s51wk32njwnfnz6s8jpbmj43ni1l33dlvyc10jl7" + "commit": "a13827fd68457f939e46f95a662752f6f344107c", + "sha256": "1jlbi6hv7f5aar5mf5zqa3pr6m7qss9hfsi5glgjg26m7633pv7d" } }, { @@ -59113,8 +59865,8 @@ }, { "ename": "irony", - "commit": "d2b6a8d57b192325dcd30fddc9ff8dd1516ad680", - "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "commit": "c1cca9d0b5a701d542f37f21748eb4be00af3b4a", + "sha256": "06x7b26vkdfjw6jk27s45hgaff7p4xjdmpncdgcgjvwyy2wbw1j6", "fetcher": "github", "repo": "Sarcasm/irony-mode", "unstable": { @@ -59310,14 +60062,14 @@ "repo": "pythonic-emacs/isortify", "unstable": { "version": [ - 20190315, - 2004 + 20221121, + 1816 ], "deps": [ "pythonic" ], - "commit": "4d8ecfcadf58ea51368e66ecf6f2a95a95953fcf", - "sha256": "0gslib1r9d9dqd9r89dfg8npkybjw2bjdrbs0z2qcnfa82x4fq4z" + "commit": "2751fb23eea4a40437e7d9bca77cbc9c06b44f3d", + "sha256": "09j042cl7mvhbp1r1fzxl17qc9z5ba0s6h5nwjx1yph7x1f7gmcf" } }, { @@ -59423,8 +60175,8 @@ }, { "ename": "ivariants", - "commit": "ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38", - "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1krll431c0jzy1g7w16b70lqa49is5pp9axaagn9nfv9l3hck8a6", "fetcher": "github", "repo": "kawabata/emacs-ivariants", "unstable": { @@ -59909,16 +60661,16 @@ "repo": "ROCKTAKEY/ivy-migemo", "unstable": { "version": [ - 20220309, - 605 + 20230121, + 1934 ], "deps": [ "ivy", "migemo", "nadvice" ], - "commit": "f31a2b314b81e328ce0222d8796b808230ddaa0e", - "sha256": "07l6x4aysxzrwlva7df5mdmb8kir1w9jpk7jqc5823zd00dmd6hf" + "commit": "6022b24e72f073a7b5599f2dea611da3a1282378", + "sha256": "1qg60wgykxzhngzg7lw1fdmji8qrdigak9w40qrhsh70vlyssha5" }, "stable": { "version": [ @@ -60066,27 +60818,27 @@ "repo": "radian-software/prescient.el", "unstable": { "version": [ - 20221112, - 344 + 20221216, + 112 ], "deps": [ "ivy", "prescient" ], - "commit": "c28bca2213efd2666b0328c29f2c26e9b603cc9a", - "sha256": "0156sbs4b535mcwm44qjr8lx48svmjvdqh8c8hr6d0l709f27yq3" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" }, "stable": { "version": [ 6, - 0 + 1 ], "deps": [ "ivy", "prescient" ], - "commit": "c28bca2213efd2666b0328c29f2c26e9b603cc9a", - "sha256": "0156sbs4b535mcwm44qjr8lx48svmjvdqh8c8hr6d0l709f27yq3" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" } }, { @@ -60374,13 +61126,13 @@ "unstable": { "version": [ 20131027, - 1629 + 1657 ], "deps": [ "grapnel" ], - "commit": "47632caf925fbb3cc8633834d2d619032d039336", - "sha256": "1j6axmi6fxcl2ja4660ygxchggm2dzjngi0k3g6pimawykvgxs3n" + "commit": "498dac674f4f1910d39087b1457c5da5465a0614", + "sha256": "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a" }, "stable": { "version": [ @@ -60437,6 +61189,29 @@ "sha256": "08q0hbm4pvp8sf261w1ihqa93sg8blfybfkhq7wrnvgs6kasgwvq" } }, + { + "ename": "jack", + "commit": "87a205d634c117b81f3e982ee75ebb9a0cbd0d08", + "sha256": "1f0a7nsmigw5qk7s6r80n3a7gi8bq2khsd96i3j58xd12mvnp38m", + "fetcher": "github", + "repo": "tonyaldon/jack", + "unstable": { + "version": [ + 20221122, + 632 + ], + "commit": "3b4ea97fcc107d0ffd201ea695129af52f390113", + "sha256": "1cizszj62ic41zc97glf2mdvm1kd95vdfg2dip3n2p2g0nlk2hjf" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "7e4b1a1c732fdc8ccda4bb78c0aa8697bdf43491", + "sha256": "0w89qgjry3gp3mclnpglma1pvq8cdxbk074153v38scpw3ankp2h" + } + }, { "ename": "jack-connect", "commit": "c0f5c5f8051f3046baebb08f41b0ca0bf0d73c85", @@ -60753,8 +61528,8 @@ }, { "ename": "jdee", - "commit": "a6d2c98f3bf2075e33d95c7befe205df802e798d", - "sha256": "15n76w0ygjmsa2bym59bkmbbh0kpqx6nacp4zz32hlg48kgz1dx4", + "commit": "5d8c2c6662dc3cd0140bc039a1dca9c3e38673f4", + "sha256": "0a0p01w1azqxjalmij2prqapwrzq9wf3iwrhbkrjp2464z3mbb2f", "fetcher": "github", "repo": "jdee-emacs/jdee", "unstable": { @@ -60962,14 +61737,14 @@ "repo": "john2x/jenkinsfile-mode", "unstable": { "version": [ - 20220428, - 1113 + 20221124, + 30 ], "deps": [ "groovy-mode" ], - "commit": "fa5545be1329df3067dcfd81749bbd99df070d6b", - "sha256": "1cg1k3c4k21im499i09yajqhh20igmd2riyia8y65swvvksnzyrc" + "commit": "1d90c1ff8edc7ea88844af92a206e7c5f083b568", + "sha256": "0l51r96vyk8wq8d6jmbchna2ckv47qzm290k4mpybxp85phvajzj" } }, { @@ -61010,6 +61785,36 @@ "sha256": "16cfikwzysng8wm1ihs5dhv59dx5rz85fx9d57dba87gcs0bsvdf" } }, + { + "ename": "jet", + "commit": "964d3110aee413dacb5b303229eba62da5a0b2df", + "sha256": "12hpl5m2qhzdcivdd1xff4dh9fyqpn2y8v9n6khv4qh7d6x014gq", + "fetcher": "github", + "repo": "ericdallo/jet.el", + "unstable": { + "version": [ + 20230213, + 1615 + ], + "deps": [ + "transient" + ], + "commit": "90fcdec479d2b1755a1410ae65d53d421f7683c9", + "sha256": "05xc3pxr0wa3asrlkga7kdw8k81lgd7l42pqd222692apvd2j33g" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "transient" + ], + "commit": "90fcdec479d2b1755a1410ae65d53d421f7683c9", + "sha256": "05xc3pxr0wa3asrlkga7kdw8k81lgd7l42pqd222692apvd2j33g" + } + }, { "ename": "jetbrains", "commit": "00dd4626e261d9831fc62d866d50b7257ee418c4", @@ -61172,11 +61977,11 @@ "repo": "ideasman42/emacs-jit-lock-stealth-progress", "unstable": { "version": [ - 20220905, - 41 + 20230117, + 117 ], - "commit": "ebcff242ab90e7562f9873c946a9b067459da779", - "sha256": "178hy00mjaanxry23prnpl3fzzx6v7pl6ma6qrszry7wiyavh7pf" + "commit": "0a6881b887f846f224c939c598bf0807bde2018e", + "sha256": "1m57j6m9f1x79bgffgh86f9ffpmvk06vph2shk0ap1is4qbbckqx" } }, { @@ -61202,11 +62007,11 @@ "repo": "Michael-Allan/Java_Mode_Tamed", "unstable": { "version": [ - 20221117, - 1441 + 20230220, + 341 ], - "commit": "be47c70024dff044322b281ebbcea38de6d5b50b", - "sha256": "0n1hhq7vmj9a7lww8vfwq96lmsdsj5hngb18gid2qav7kf32dlw3" + "commit": "4f14058229855c0a92bab19d76a295dfdcb35f10", + "sha256": "08fgd6l5k6fh3pjc2vgbj919g6d3cvvbsblxki5mix94g0g1bvyh" } }, { @@ -61237,10 +62042,10 @@ "unstable": { "version": [ 20221119, - 901 + 1653 ], - "commit": "c902ad94c2d043f620a44e4c9b1bd7f4d6f22229", - "sha256": "0xp149ibvjxr04pnlfl75gfcjwa91wxvk59dr6fa6761j6phc98j" + "commit": "baaffdfd22a19afb1997ec3715d063186b80d3f5", + "sha256": "0kjzgz8kzvyh7kqjcd9r2cfrhldv90v3yjkpd41vnzbb29b46d4h" }, "stable": { "version": [ @@ -61381,8 +62186,8 @@ 20180807, 1352 ], - "commit": "59caa137c4beec4dec4a7d7ebf8bcb6af44d72f0", - "sha256": "10xxg8lc4g9wdl4lz7kx6la23agpbq4ls1mn5d4y364j8nfcxf9g" + "commit": "29d245b4d126a5fc5153a4d8f17396be4165b4a6", + "sha256": "1d0q59rk44jf87ppnn5bwr14p2vgcnfdr7pf6hdqkhb8gzr8bh7c" }, "stable": { "version": [ @@ -61417,11 +62222,11 @@ "repo": "redguardtoo/js-comint", "unstable": { "version": [ - 20200117, - 615 + 20221201, + 1150 ], - "commit": "0dedaf4753fbe8cdbab14aa85f05d7673cbee8b6", - "sha256": "09wfafrklkybfg44skn1lg2hvcj4gfdv908dq87w1r4wv6ibkvka" + "commit": "30e521ada5806ab780f68e09529715acb88f32cd", + "sha256": "1khxry9rvmcwh1mzqlxa5alfcwh2cqi2afz8b6yya3ahxfal5i5q" }, "stable": { "version": [ @@ -61474,16 +62279,16 @@ "repo": "jakoblind/js-import", "unstable": { "version": [ - 20210105, - 829 + 20230131, + 1900 ], "deps": [ "dash", "f", "projectile" ], - "commit": "941091b3ab074c482a5920194d61f50e9b50d503", - "sha256": "1p18lg3apmhcmvkwldnygy35s1kjj68sgv81lyyf0csvc0pxbcpk" + "commit": "9f8b6bc4f080c7146ce7ee5dd5a6572aeb6f1cc7", + "sha256": "1nlcfqy4wciai7g9zdjy4lx50dipv6yq74fladgsw7yq98hpg501" } }, { @@ -61903,10 +62708,10 @@ "unstable": { "version": [ 20220205, - 1503 + 1504 ], - "commit": "dcbe7cc6eadf5b6ef0cadb6ec5111af2b541e73a", - "sha256": "1mr0k7gyw82gsrr26pvz08zfwvb29caf8gyv3kvnqh6pcnla05sb" + "commit": "349e1f4722474bf1f75dbc8eb9d9c59d790b8083", + "sha256": "11911dk8nkacml6p29m5kpcxhjyas5ymarjsi802s426gpn8wj94" }, "stable": { "version": [ @@ -61950,11 +62755,11 @@ "repo": "iwahbe/jsonian", "unstable": { "version": [ - 20221119, - 518 + 20230117, + 2212 ], - "commit": "1e8103c281bf7781bf3246d2049165d8966710c6", - "sha256": "0xv5lsl21h0jg5iryg89j6qf4c97v2rw7rh5ja8bbch3s21bv69c" + "commit": "d0583a890a8e43845935c31de9f069192011451e", + "sha256": "1ccp7fm9cdq51p00b70plyxwfqp0j4241airxa0hd868m4vi08pz" } }, { @@ -62080,11 +62885,11 @@ "repo": "JuliaEditorSupport/julia-emacs", "unstable": { "version": [ - 20220418, - 809 + 20230119, + 1840 ], - "commit": "adf4029be778c5983c436873b8a78bc72a6b09f8", - "sha256": "0z6vx541vskgzb1dmlcijbch4z84lrz5fm2ay0n15sypvxfp2yks" + "commit": "7aafa8e77df64a47fa4729a0c1ea572b5bc8e30e", + "sha256": "1agk2jf76ardqxm28nw341jb92sl6ylkr8yfibsp5vaid9dlq6bp" }, "stable": { "version": [ @@ -62103,14 +62908,14 @@ "repo": "tpapp/julia-repl", "unstable": { "version": [ - 20221026, - 833 + 20230112, + 1929 ], "deps": [ "s" ], - "commit": "6625e95c3d0561c6966a13c2565d35d2ae6c07ca", - "sha256": "0iymb4zmgcxpyxdrpw5icqmmw711p85c2s593kqf3wxcbx8acv45" + "commit": "57a15dfafed680ad7d81f779d414e8cb6717417c", + "sha256": "1bpp7216j1a3agwfsidikf65mmym0xyhq2yn6s9ipsk25n6vac1s" }, "stable": { "version": [ @@ -62182,6 +62987,24 @@ "sha256": "04nh37izz04lxkvkxhsig8khbrrgdl4p6pkjsv5bxymnp84zwlw7" } }, + { + "ename": "julia-ts-mode", + "commit": "fd6521584f31c6d349aead6647b58fddbc1529c9", + "sha256": "1m6hm69pc1m47bk09cwlv544bkqy552nqg95w3shch18kslgli8n", + "fetcher": "github", + "repo": "ronisbr/julia-ts-mode", + "unstable": { + "version": [ + 20230124, + 1427 + ], + "deps": [ + "julia-mode" + ], + "commit": "d78307d95a2a97abc54c918eb8feffa62b26673b", + "sha256": "0psvglckx4ryav0bjadn7s0zbxiddq7z03bkr0fkhr2gsdga69zq" + } + }, { "ename": "julia-vterm", "commit": "401185621fd57899b314a205ea1ffd9765e570c8", @@ -62238,16 +63061,16 @@ "repo": "eschulte/jump.el", "unstable": { "version": [ - 20161127, - 128 + 20210110, + 2237 ], "deps": [ "cl-lib", "findr", "inflections" ], - "commit": "9519c675e8a650f6afade7d870e925d0fb50f112", - "sha256": "1bm1mgd632gq3cl4zrq66vnqq9ynvc01iy6szp464ccnm3cmqdzr" + "commit": "55caa66a7cc6e0b1a76143fd40eff38416928941", + "sha256": "03fh7i6blnbc0zbmp83fk095hr3q4fdvrvfxad74zghcbc2nk7b7" }, "stable": { "version": [ @@ -62343,8 +63166,8 @@ "repo": "nnicandro/emacs-jupyter", "unstable": { "version": [ - 20220419, - 1852 + 20230214, + 215 ], "deps": [ "cl-lib", @@ -62352,8 +63175,8 @@ "websocket", "zmq" ], - "commit": "7d20c0aee2f9c896215f35232905b23532ef04c5", - "sha256": "0lrg43xas5dx1qlhzk7irq5hwgpfpxkv27zgcrcy0sbhd9y8dad6" + "commit": "eebeef1293287075f65d27f5442bb151bf27d92a", + "sha256": "188xkmvl8qz2bkvgy57w8xpnfbif7adrnj0jyqhgl5xhxv40l0gz" }, "stable": { "version": [ @@ -62403,29 +63226,29 @@ "repo": "psibi/justl.el", "unstable": { "version": [ - 20220903, - 901 + 20221222, + 1650 ], "deps": [ "f", "s", "transient" ], - "commit": "c1995b1a2ea09d7a2af69edcc2a47f5b6d217d5f", - "sha256": "0qa8q5asnjwl4b3ljgpl3ckahfrr1vbmbqha4paq5b63aiblgm2g" + "commit": "141daaa4b0dc07fe25423609dcd14441a9f2613e", + "sha256": "01z86a5bfpgsczy4xbzl6wwg5wwcjnjb7za7xsdv8lvam1s4868n" }, "stable": { "version": [ 0, - 10 + 11 ], "deps": [ "f", "s", "transient" ], - "commit": "c1995b1a2ea09d7a2af69edcc2a47f5b6d217d5f", - "sha256": "0qa8q5asnjwl4b3ljgpl3ckahfrr1vbmbqha4paq5b63aiblgm2g" + "commit": "141daaa4b0dc07fe25423609dcd14441a9f2613e", + "sha256": "01z86a5bfpgsczy4xbzl6wwg5wwcjnjb7za7xsdv8lvam1s4868n" } }, { @@ -62460,8 +63283,8 @@ }, { "ename": "k8s-mode", - "commit": "44085c3f730315a5fc2a9a003ffa16d5df9f9a52", - "sha256": "14m4s0l61a2h38pdq6iczva24cl3mqdkw99k1q0drisdrvy57f33", + "commit": "949da8f16687bad96f53714ccbde895587d439ff", + "sha256": "1xxz2y3wnlqy70d3d68icrblz7832yqhdlzc5h027c61j9p1pg07", "fetcher": "github", "repo": "TxGVNN/emacs-k8s-mode", "unstable": { @@ -62496,14 +63319,11 @@ "repo": "mhayashi1120/Emacs-kaesar", "unstable": { "version": [ - 20160128, - 1008 + 20230212, + 743 ], - "deps": [ - "cl-lib" - ], - "commit": "d087075cb1a46c2c85cd075220e09b2eaef9b86e", - "sha256": "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9" + "commit": "d62b18e888d69d27b0b74cf47224a1ac204dfb0b", + "sha256": "060zskrrr0m9bfccskl06knlly3zwy1s9dzyzn9l4n8rr487fqqq" }, "stable": { "version": [ @@ -62526,14 +63346,14 @@ "repo": "mhayashi1120/Emacs-kaesar", "unstable": { "version": [ - 20160128, - 1008 + 20230212, + 743 ], "deps": [ "kaesar" ], - "commit": "d087075cb1a46c2c85cd075220e09b2eaef9b86e", - "sha256": "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9" + "commit": "d62b18e888d69d27b0b74cf47224a1ac204dfb0b", + "sha256": "060zskrrr0m9bfccskl06knlly3zwy1s9dzyzn9l4n8rr487fqqq" }, "stable": { "version": [ @@ -62556,15 +63376,14 @@ "repo": "mhayashi1120/Emacs-kaesar", "unstable": { "version": [ - 20160128, - 1008 + 20230212, + 755 ], "deps": [ - "cl-lib", "kaesar" ], - "commit": "d087075cb1a46c2c85cd075220e09b2eaef9b86e", - "sha256": "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9" + "commit": "48b7160a817cb1e430726e1d2243d921c3f0508f", + "sha256": "0kxd9pl5d4nlbwpvyv0mnp2hd14z65b1mfksr24s1gih5df8ii2l" }, "stable": { "version": [ @@ -62617,16 +63436,16 @@ "repo": "jmorag/kakoune.el", "unstable": { "version": [ - 20210220, - 1858 + 20230206, + 2037 ], "deps": [ "expand-region", "multiple-cursors", "ryo-modal" ], - "commit": "c39f278811945dbf0958ca8cf81d7b03c39efbcf", - "sha256": "0ajh4nk8brwi41rsbd9dn5gbf7i2mkaxm3aal09r2wgmgxigsiqp" + "commit": "b39c5605e896c55ea246f755c46171bd6d0768a8", + "sha256": "00581hhj6rw2p4d3kjfifd1xylacjsgjcg29f2svd412xlmhkm2j" } }, { @@ -62693,11 +63512,11 @@ "url": "https://hg.sr.ht/~arnebab/kanban.el", "unstable": { "version": [ - 20170418, - 810 + 20230206, + 2131 ], - "commit": "dd11d722b20ae720f29b8aa93a3b1cad87650b33", - "sha256": "07g0spi9jf48vap76f9rgl61sg3jqy03qdxnmchzwlia8wvcsscb" + "commit": "9b588f94efb5a784c9bc10ad66f424b253c5fe5e", + "sha256": "18ywrhj74v7vlcfz84ld90qs9axc2p61x05q27hv2fhzmv3pc72b" } }, { @@ -62751,21 +63570,21 @@ }, { "ename": "kaolin-themes", - "commit": "043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4", - "sha256": "1pd2v54d578f1wbwvqzplkdz1qvy8w8s6na511b0v5y9sksgm2xw", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0f498cqs1an5d9spfl0581ycbv1kw4skqpjnvjbnlspldcqcqrx9", "fetcher": "github", "repo": "ogdenwebb/emacs-kaolin-themes", "unstable": { "version": [ - 20221025, - 812 + 20230126, + 2302 ], "deps": [ "autothemer", "cl-lib" ], - "commit": "c24665044f1bced33b6df4e36e55495f05050c78", - "sha256": "0qryc82d5s314bm1ijxn7hk5fpm1qclr2hc630sh3ppkgayrlp48" + "commit": "e69a183c1173f7f9ee19ad06ab109ade3811ae77", + "sha256": "0csiglvggxqliakgx94dmy5bifgj72dal6w6shrg1q1abq2ra995" }, "stable": { "version": [ @@ -62884,10 +63703,10 @@ "unstable": { "version": [ 20211030, - 948 + 958 ], - "commit": "c45e0854041b94e5ad8bc512474b0e3e286f72fc", - "sha256": "0mp0msh8ppdy6x1lbi1f772b5xr9v3i6pscsdd5wfgafkq2wlsvl" + "commit": "f432bb60f9f3bd027025140d723906dcabeefaef", + "sha256": "0wrzbcd070l8yjqxg7mmglc3kfgy420y3wnykky198y83xsv3qy2" }, "stable": { "version": [ @@ -62929,6 +63748,48 @@ "sha256": "1sw4hd8x1kmnry79177bbn2k6q2y8n0mpgs1mx7qdqmj5r5z1cfc" } }, + { + "ename": "kele", + "commit": "cebfd6d6356a70955f518c785ec9258305de9415", + "sha256": "1s0jgh5ajx93wgs5ycdfay8bh46bw2ycys2fvj5zqwmb0anhadqn", + "fetcher": "github", + "repo": "jinnovation/kele.el", + "unstable": { + "version": [ + 20230205, + 1814 + ], + "deps": [ + "async", + "dash", + "f", + "ht", + "plz", + "s", + "yaml" + ], + "commit": "8faeb28bcef6d4a3d314364f1b7252e7e6f916a8", + "sha256": "03an3n9hnaz8sz34gmdyl5hav1cms3i73ywzsn1y9idybbmdy3k9" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "async", + "dash", + "f", + "ht", + "plz", + "s", + "yaml" + ], + "commit": "8faeb28bcef6d4a3d314364f1b7252e7e6f916a8", + "sha256": "03an3n9hnaz8sz34gmdyl5hav1cms3i73ywzsn1y9idybbmdy3k9" + } + }, { "ename": "kerl", "commit": "166afdc776689b0da93576dbeaa71ff6dfb627db", @@ -62952,11 +63813,11 @@ "repo": "Boruch-Baum/emacs-key-assist", "unstable": { "version": [ - 20210722, - 758 + 20230122, + 718 ], - "commit": "8e5cd089e0b2fedec57c55eeff74cdb6121441aa", - "sha256": "0lg8v6lsa62zhnlrz47hlda65ra6yfqijgz4jcl5vxcx2hgks8g8" + "commit": "41a958ca6b038586bfdcf01045bb8b9d379248fe", + "sha256": "099g9y3ky8hmgrq68idcjwa3452jdkggblgz397824kj13d7z02b" }, "stable": { "version": [ @@ -63096,14 +63957,14 @@ "repo": "tarsius/keycast", "unstable": { "version": [ - 20220422, - 1611 + 20230212, + 2016 ], "deps": [ "compat" ], - "commit": "0c37db482ca98e729430121209d70dd093082a5e", - "sha256": "1i4l145k9jrl8dv5wkcg3nbm6s0as1myz8vzh4k9rdi2ra6lkajr" + "commit": "cabb3fac1ccf2980ff3bcdbc1648d2a15ebe7cb1", + "sha256": "0zvq7i3v3ycki695ah7iim134qmg8m9dcblj3srrr1k8kp63ywq0" }, "stable": { "version": [ @@ -63196,26 +64057,26 @@ "repo": "tarsius/keymap-utils", "unstable": { "version": [ - 20220918, - 2243 + 20230213, + 1152 ], "deps": [ "compat" ], - "commit": "e4ef3c5fb46b1f749c9d838d2eba709e164402e2", - "sha256": "19vf6rmydf0ayns9cllj2skq79xjfdn343csijmy3vb6hp3zq869" + "commit": "1806ff73b0a68e84234d65c7d08a18cf3f0d29e5", + "sha256": "1amcipkd4k8kfrlnq5sqzgwwhd42kx6aw5fnallidahz8pw79s7g" }, "stable": { "version": [ - 3, - 2, + 4, + 0, 0 ], "deps": [ - "cl-lib" + "compat" ], - "commit": "753fa7b5bdb761a1eb9a7b09db50c0bee3ae5241", - "sha256": "0604l1rxvxq88i2pnb4q0jaf9i3pmf3756nkrivvaj1l4v6nswlk" + "commit": "1806ff73b0a68e84234d65c7d08a18cf3f0d29e5", + "sha256": "1amcipkd4k8kfrlnq5sqzgwwhd42kx6aw5fnallidahz8pw79s7g" } }, { @@ -63331,11 +64192,11 @@ "repo": "emacs-grammarly/keytar", "unstable": { "version": [ - 20220704, - 626 + 20221231, + 1655 ], - "commit": "9d232decb1dee73b1b60480eb9c7ab6750ea90e1", - "sha256": "05wxrpp6758anp88n25fizc9qwjcf0df7b1mdfi7a4hljzq15z0n" + "commit": "51c8f2f1f207cc67af4e67731ee056860e107811", + "sha256": "067gmril73ri1zsakh284vxaw8sqmyr9vflmsh7a3033p4gabw4w" }, "stable": { "version": [ @@ -63388,20 +64249,20 @@ "repo": "hperrey/khalel", "unstable": { "version": [ - 20221008, - 1456 + 20230122, + 1139 ], - "commit": "fce18763a07769f2dbbb84eb20490aabbf612b66", - "sha256": "1w951a7czw5f62d9336lvrrsw57pym27vscfby1pz6n6ld44ybsl" + "commit": "fbd4b4d6ae8f152140674e843ed7d82d223d52fe", + "sha256": "025c12im3yvxb37a5y5x7zwdwll50lzx5nzsh54ipacrzhc0fyn5" }, "stable": { "version": [ 0, 1, - 8 + 9 ], - "commit": "bc919e40ce9afbc1cc160d86c27f73b1cb9f5b50", - "sha256": "1w951a7czw5f62d9336lvrrsw57pym27vscfby1pz6n6ld44ybsl" + "commit": "fbd4b4d6ae8f152140674e843ed7d82d223d52fe", + "sha256": "025c12im3yvxb37a5y5x7zwdwll50lzx5nzsh54ipacrzhc0fyn5" } }, { @@ -63434,6 +64295,36 @@ "sha256": "1pa7kl3d0hmgybbvsffhinn10qmqrkkzccprqcmwhc246yb4abqa" } }, + { + "ename": "khoj", + "commit": "2d2fb91173b05871a0bf56d09f264ca44ae27c06", + "sha256": "0jcjn8va5hqx7pgpz42g3djbrfji3b8nmp2mc1v2zss124nx715w", + "fetcher": "github", + "repo": "debanjum/khoj", + "unstable": { + "version": [ + 20230218, + 231 + ], + "deps": [ + "transient" + ], + "commit": "61b6ee2857b92721fc2c7e1329ae476a8d41f040", + "sha256": "16rcjgyaqkncfxy8zihn339rj1dxc55pcr4h1m1z1hpq7dnk895a" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "transient" + ], + "commit": "47c2cc63e166543447d9604d5c462b90e7342fc3", + "sha256": "1ngnvf788bgfamcp0d3chim1ka04pb0629xkv30z6bg96p88lhpn" + } + }, { "ename": "kibit-helper", "commit": "f7fee551ca9ed226f1285dffe87027e1e1047f65", @@ -63464,6 +64355,21 @@ "sha256": "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv" } }, + { + "ename": "kill-file-path", + "commit": "bbb76c99758c378c1cf26046a4e25e0933dfd947", + "sha256": "0gif8qrrgqj0vgffznqwxwia9c750nkpnwdszcavn2xfyrj67vf8", + "fetcher": "github", + "repo": "chyla/kill-file-path", + "unstable": { + "version": [ + 20221205, + 1119 + ], + "commit": "88de62d038d7e6e0e0a217c4773a1871549c7c3d", + "sha256": "0dry8wlci74qwpaaw8fic54hack71qhsybgbqvv48ly6a811rcpi" + } + }, { "ename": "kill-or-bury-alive", "commit": "25016ed09b6333bd79b989a8f6b7b03cd92e08b3", @@ -63587,11 +64493,11 @@ "repo": "kivy/kivy", "unstable": { "version": [ - 20210318, - 2106 + 20220306, + 810 ], - "commit": "db86b06b9b72e514c122e3f54a0bce74adad44c5", - "sha256": "1v14gsk1fal8xqpy8myk02n7s0f0yzpcmgf8a0mizh858y1sbxxv" + "commit": "023bd79b90f9831b45bb8eb449346648aa5fe5f8", + "sha256": "0q0hn1q5l1pg3ma2x922m93vpfax7x9cmm8psy3qw7b5pf4cillk" }, "stable": { "version": [ @@ -63656,11 +64562,11 @@ "repo": "WammKD/emacs-klere-theme", "unstable": { "version": [ - 20221101, - 805 + 20230214, + 213 ], - "commit": "6f63bbf71653ec94ccc3693141f031eb6902b25f", - "sha256": "131az3gfpspzg8xlhmcryzkz83nfxzh1jcd4aa0fzcixxz59kqcl" + "commit": "61d2cd649a1cf57ce61063f76b395f21f358372e", + "sha256": "006130dd83h5d3qxj7x8j64pxq05mq0rcyx68i5n2lfwj94k6sv5" } }, { @@ -63687,10 +64593,10 @@ "unstable": { "version": [ 20160208, - 2304 + 2305 ], - "commit": "ab8cf84ad8031ff85b983c528ebb7117dc784aad", - "sha256": "19qky551arnb7gl7w0yp54kkdls03m9wn9bxnr7hm5nv1bml2y64" + "commit": "c381a9735f3ea86ebc9667e35cdfeab0b67fefb7", + "sha256": "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k" }, "stable": { "version": [ @@ -63792,11 +64698,26 @@ "repo": "Emacs-Kotlin-Mode-Maintainers/kotlin-mode", "unstable": { "version": [ - 20220527, - 1646 + 20230123, + 1859 ], - "commit": "99499e1500034b5fd5fdce9bfef367d90c61b5ce", - "sha256": "067m5idlnfz01aiynmnxh3x3vv4c2nkkldskv7g1cssxqaxagnxj" + "commit": "fddd747e5b4736e8b27a147960f369b86179ddff", + "sha256": "0wbv3pjanmf97wchhg1w8ahvpxn8kgpnl45pmwqg019xj9yfpgpb" + } + }, + { + "ename": "kotlin-ts-mode", + "commit": "33ccef52aa0d6df974c1128ab2ba8febb9187877", + "sha256": "088b87mmcalkjqz1m1p53v3d9jldvrsbc0rcfvypsid9gpaisv25", + "fetcher": "gitlab", + "repo": "bricka/emacs-kotlin-ts-mode", + "unstable": { + "version": [ + 20230119, + 1153 + ], + "commit": "28eb29a99a5f334e7e7c0e2f2ada23159f114bc5", + "sha256": "19q4gvrccc1yfwg46wb82fs5qj6ml9qkgjf8sb00nwbnb0jb48k7" } }, { @@ -63858,6 +64779,30 @@ "sha256": "192s6hz71i0d8bwxn2pdl9yggs2l5fd6jxlxmry8fpk04qg3lqrg" } }, + { + "ename": "ksp-mode", + "commit": "b979d0d2f3007d166d595ecf7140d78585efdd6c", + "sha256": "169grixvkchz8h8jp3ns1jnqi861la7rgsm58kbmdf6pigi729zy", + "fetcher": "github", + "repo": "youngker/ksp-mode.el", + "unstable": { + "version": [ + 20221220, + 1136 + ], + "commit": "89b91b8ed6753867e30aa494e5d80325dfe25569", + "sha256": "1pw40a7acs0xxabmyfn359b2zcgmb5c1fv98q1x0276ws0hh0jzw" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "89b91b8ed6753867e30aa494e5d80325dfe25569", + "sha256": "1pw40a7acs0xxabmyfn359b2zcgmb5c1fv98q1x0276ws0hh0jzw" + } + }, { "ename": "kubectx-mode", "commit": "e1a9badd46f8900a1d6355cb2c703788ed66e8fb", @@ -63905,8 +64850,8 @@ "repo": "abrochard/kubel", "unstable": { "version": [ - 20221112, - 240 + 20221123, + 241 ], "deps": [ "dash", @@ -63914,8 +64859,8 @@ "transient", "yaml-mode" ], - "commit": "ca6c3f84cefaf1287e432f2f3b4bdf630edd3bac", - "sha256": "0y3f1c4fbzy0yb5n986bzmgkkaxhgw06wxjvla4mkln6hccnxdia" + "commit": "5962d566db17ddfa25ac3120b4591df1d741e979", + "sha256": "1mi5xp573ww0agscjd4qxvnxgsrqgk23f7kiy406p4cm2h2s7cfl" }, "stable": { "version": [ @@ -63940,15 +64885,15 @@ "repo": "abrochard/kubel", "unstable": { "version": [ - 20220318, - 2124 + 20220909, + 2028 ], "deps": [ "evil", "kubel" ], - "commit": "79b0624293a76c19ddc5f6e0f9848af7aa3fd91f", - "sha256": "115hdaav9ik55s4vjm15q7y20wh4w15m6z5v1hz0v0854hvzhgsl" + "commit": "1b405d8756ffc7c8f1e11450d6f07ffde38fe351", + "sha256": "1a724p9xcl1x50bxrhyyriza3wmcm1q9ljflf9ba5fgl2vrvcw5h" }, "stable": { "version": [ @@ -63971,8 +64916,8 @@ "repo": "kubernetes-el/kubernetes-el", "unstable": { "version": [ - 20220715, - 1717 + 20221229, + 1519 ], "deps": [ "dash", @@ -63983,8 +64928,8 @@ "transient", "with-editor" ], - "commit": "8163fd38015cbde0485f6eaab41450132bf6e19d", - "sha256": "06p5qz4h5ar86vv4nzpw08x18fjvs2zg5brx55h80hjdgr89b771" + "commit": "099004511670c7fd52a619c5758047bb3172ba36", + "sha256": "113c490gp69pkq9rnw5s7vfkr8pw14q7lv205gwx8awg129frnpn" }, "stable": { "version": [ @@ -64081,26 +65026,26 @@ "repo": "emacsfodder/kurecolor", "unstable": { "version": [ - 20220830, - 1620 + 20221213, + 124 ], "deps": [ "s" ], - "commit": "553e852e19b01015f84846568d96cde9ef670ba2", - "sha256": "18csg7y73bwvdimsj1kjzkzbsh925yd2p3jjh2wcixqykxlqx3kr" + "commit": "ac67ceba85839ab1ced96fad605bf023b697263f", + "sha256": "0xi330md4av8qczm5973ps2qvmx4fc0z28547viq5as3v897psn2" }, "stable": { "version": [ 1, - 6, - 2 + 7, + 1 ], "deps": [ "s" ], - "commit": "553e852e19b01015f84846568d96cde9ef670ba2", - "sha256": "18csg7y73bwvdimsj1kjzkzbsh925yd2p3jjh2wcixqykxlqx3kr" + "commit": "ac67ceba85839ab1ced96fad605bf023b697263f", + "sha256": "0xi330md4av8qczm5973ps2qvmx4fc0z28547viq5as3v897psn2" } }, { @@ -64157,36 +65102,6 @@ "sha256": "1zs0wn0ff5hbv4rgqa7137s3269dqi7fg9bam56rw5qrr72lq5a2" } }, - { - "ename": "l", - "commit": "a3645b08cb46e3d91081da7baa982b5283918447", - "sha256": "0ggbgbpskdbywyqh0mpyfq5jlcwlqpv8fbi7jcdmyzmsyfjwhbgd", - "fetcher": "sourcehut", - "repo": "tarsius/l", - "unstable": { - "version": [ - 20220422, - 1612 - ], - "deps": [ - "seq" - ], - "commit": "e7c4cbd930fed4a4a183e473ad2598610de00e21", - "sha256": "0m0ck78d8pkm5hd9gicc33x3gcqjcnvlafny6cncl38kc33gv47a" - }, - "stable": { - "version": [ - 0, - 3, - 0 - ], - "deps": [ - "seq" - ], - "commit": "5e2c05478868e9e5fac909ac1bee535ffc5c6695", - "sha256": "11fmcqn9xpq8hqwf914yd715xrbfyymki95iq5y3r4x42gl30q7s" - } - }, { "ename": "laas", "commit": "db04bf3e4da0a51cbbab7db4c6070f1d06053c90", @@ -64243,11 +65158,11 @@ "repo": "ksjogo/labburn-theme", "unstable": { "version": [ - 20200822, - 2153 + 20221208, + 1611 ], - "commit": "4ef2892f56c973907361bc91495d14204744f678", - "sha256": "1kpin7r1a1la9s4khrn6rwhgkbib9j7lgyqk9b48fzjhp1h25mgq" + "commit": "bd0de2fdcf285d981f32e3e5ebc56fe3c9b589a5", + "sha256": "0nj61wqszm6wi4hvvc640iy1b65k8cwfggcys49p30f6f6jk6hlm" }, "stable": { "version": [ @@ -64267,19 +65182,20 @@ "repo": "zakudriver/lacquer", "unstable": { "version": [ - 20220811, - 649 + 20230206, + 756 ], - "commit": "70650105be1b4c1ade34c0a1c3263d80b2388593", - "sha256": "0rzdc2v9gfj3mh2dvpb90ikvyk67cbmd6snadpraawypajgr7vyc" + "commit": "8a4e7dc1827862ad025f2af5354ca377cc660939", + "sha256": "05h8ycdmqds016m17hz86v4xnlsy060lmfrjddy3cazwzgs1a4s1" }, "stable": { "version": [ 1, + 2, 2 ], - "commit": "70650105be1b4c1ade34c0a1c3263d80b2388593", - "sha256": "0rzdc2v9gfj3mh2dvpb90ikvyk67cbmd6snadpraawypajgr7vyc" + "commit": "ebdb531f5b7cb691751e468942e28921a9dcc98f", + "sha256": "1xfvf21g2p2zh5g5wih37nrk6z8fpxsy4hw8sfsmrk2fx2cw5sj2" } }, { @@ -64305,30 +65221,30 @@ "repo": "Deducteam/lambdapi", "unstable": { "version": [ - 20220909, - 1444 + 20221228, + 1622 ], "deps": [ "eglot", "highlight", "math-symbol-lists" ], - "commit": "8752043f903acc7f4c54bc9ea18b9cec83beee70", - "sha256": "1y28dbw1n4mw0abdb628111h1z7mz2jc2jnyskpw9hv4mbnaq5b9" + "commit": "1f4e1a024bb0b0f3a0fdd8b5428e737adf1a68d7", + "sha256": "086mqschzr420kad5x7ibjwz3b7ckfkkqv7486pn5pmbkqrb2iwg" }, "stable": { "version": [ 2, - 2, - 1 + 3, + 0 ], "deps": [ "eglot", "highlight", "math-symbol-lists" ], - "commit": "33348d8325916da440a4e96490fd20b0f6d313c5", - "sha256": "0aqqrmg5hj0323412l3qb566j1bcgff39ll7bzy4ghlrz14n6rm7" + "commit": "4939b93c2721c8aa4dc88a7b8190dd43e3badfdc", + "sha256": "0zw7r60r2plg73g9n42yn46zbrx4gzjyf3rqwpkvqvinx43bp4dz" } }, { @@ -64381,32 +65297,26 @@ }, { "ename": "langtool", - "commit": "ad320d60e2c95881f31628c19ad3b9ece7e3d165", - "sha256": "1vsxdkq8qdjn446rf7gjcnr1hwaasqrp0ibv4nsvnib7n85ldl7s", + "commit": "a3bddbf96a3bdcfb9bc32720eb371f2b4a5a570d", + "sha256": "0s9420v9q3ab9glmvbflc9hmcx3mv1v4yi4vibbp1jd67cw7l0fs", "fetcher": "github", "repo": "mhayashi1120/Emacs-langtool", "unstable": { "version": [ - 20200529, - 230 + 20230207, + 950 ], - "deps": [ - "cl-lib" - ], - "commit": "8276eccc5587bc12fd205ee58a7a982f0a136e41", - "sha256": "1pkfazn6qy6n4rg1rvw7b79b7nsp7xqdadhpah4xjvqxd6apqasz" + "commit": "fc6c046af1c5e4e55331414387865f65afb1bd3c", + "sha256": "0vzs3hkhmvdrbii1hmg87brddpjfmqfqykf7a2hnwmdbkihiwwk9" }, "stable": { "version": [ 2, - 2, - 1 + 3, + 7 ], - "deps": [ - "cl-lib" - ], - "commit": "0fe79567244ca719448c55a89082505596a2359a", - "sha256": "1pkfazn6qy6n4rg1rvw7b79b7nsp7xqdadhpah4xjvqxd6apqasz" + "commit": "fc6c046af1c5e4e55331414387865f65afb1bd3c", + "sha256": "0vzs3hkhmvdrbii1hmg87brddpjfmqfqykf7a2hnwmdbkihiwwk9" } }, { @@ -64427,6 +65337,38 @@ "sha256": "02mnyhvyf41nfkp42biislxz1l7w57k3ld3ixjqa7lqfc4nyygn0" } }, + { + "ename": "langtool-popup", + "commit": "a3bddbf96a3bdcfb9bc32720eb371f2b4a5a570d", + "sha256": "09d73saz5wz1g8w6pzfrdwr3i6w48h8gpy6rss4ipf2lyaf0mfm4", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-langtool", + "unstable": { + "version": [ + 20230207, + 319 + ], + "deps": [ + "langtool", + "popup" + ], + "commit": "25b23a2dc592cdfe498740af87d975f7ef23a854", + "sha256": "0hbvkynasz54scd1avsskxav9nlb3z571wrmz2z10kyx3z6rnr9a" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "langtool", + "popup" + ], + "commit": "e0666f000c11571f96582f0a1dd75d6e29e74703", + "sha256": "1jjiq22wn7npgzmszy3hpi8a1wqij4s74p73vqav7c15w1a8pfrm" + } + }, { "ename": "language-detection", "commit": "ed2b68d0a11e5db0e7f2f5cbb2eb93c298bcb765", @@ -64453,11 +65395,11 @@ "repo": "lassik/emacs-language-id", "unstable": { "version": [ - 20221025, - 541 + 20230214, + 710 ], - "commit": "40ceb1f23d4419e8fdb2808c2c71dd46e541c4c4", - "sha256": "15719hkfnkn15bal2ppcxqaddhqhxg3wb9i8kzac5g81mfs79agb" + "commit": "302533245972d9bc7722328742247d2b2b225e01", + "sha256": "0c38d7vvm3gx2fdi1qm6kzl3x58fksfk2qnzf32np5vy2vwi8ira" }, "stable": { "version": [ @@ -64476,26 +65418,20 @@ "repo": "PillFall/languagetool.el", "unstable": { "version": [ - 20220514, - 309 + 20230122, + 121 ], - "deps": [ - "request" - ], - "commit": "503d18bd3c074fe8f495cfa6a34ccca1ef6961ce", - "sha256": "0zid9ip540qknnj9sdky2jrxp5l5kym76dr3wgff3ika6g7y75p6" + "commit": "57af28a0c370866945988461a259b6551a1c4074", + "sha256": "094ndmybj0g2v75zc21644q0b4kpkff8lhj2bw0rg8q8lg5ha5kp" }, "stable": { "version": [ 1, - 1, + 2, 0 ], - "deps": [ - "request" - ], - "commit": "503d18bd3c074fe8f495cfa6a34ccca1ef6961ce", - "sha256": "0zid9ip540qknnj9sdky2jrxp5l5kym76dr3wgff3ika6g7y75p6" + "commit": "57af28a0c370866945988461a259b6551a1c4074", + "sha256": "094ndmybj0g2v75zc21644q0b4kpkff8lhj2bw0rg8q8lg5ha5kp" } }, { @@ -64562,14 +65498,14 @@ "repo": "slotThe/change-env", "unstable": { "version": [ - 20220710, - 933 + 20230219, + 1800 ], "deps": [ "auctex" ], - "commit": "4e6f75f678b207b3bb5031c8b2e31f8d577df445", - "sha256": "1bggvbs9q9yq1p8v188h2hgnhg405n8zjxg8az6h30kpkw8nz04g" + "commit": "19d422cbe5944b13dccb7606f86b8520ed709e8f", + "sha256": "1y272zkac4kkrqz70pg2j9y13sf60did4l94yfjwmx44qpn48yd1" } }, { @@ -64657,10 +65593,42 @@ "sha256": "1m4f5p53275k8i9p0y105kkrp9nx1bwn6726my9s5dwnjhr5dnp2" } }, + { + "ename": "latex-table-wizard", + "commit": "798041b4fe72da6a57224e909cd8a0312318d9e2", + "sha256": "0fiin25f4w3cs7mjkk34hw8g28hh8pg1psaj3dbfsxq6d8lavwfy", + "fetcher": "github", + "repo": "enricoflor/latex-table-wizard", + "unstable": { + "version": [ + 20230103, + 2241 + ], + "deps": [ + "auctex", + "transient" + ], + "commit": "61fb455a1e6a28b93512e63c609ca7ad7dd5bec5", + "sha256": "07fvyjm0invlw190iiy6v1zj772vr7y6lkqmhyng175xvhy3i62p" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "deps": [ + "auctex", + "transient" + ], + "commit": "61fb455a1e6a28b93512e63c609ca7ad7dd5bec5", + "sha256": "07fvyjm0invlw190iiy6v1zj772vr7y6lkqmhyng175xvhy3i62p" + } + }, { "ename": "latex-unicode-math-mode", - "commit": "9c021dfad8928c1a352e0ef5526eefa6c0a9cb37", - "sha256": "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1z1f5fz08rghlfyczkyjp2yh5xijmkgy0r41vfb0lz4zxc12rmk0", "fetcher": "github", "repo": "Christoph-D/latex-unicode-math-mode", "unstable": { @@ -64713,8 +65681,8 @@ }, { "ename": "launch-mode", - "commit": "876755fff14914b10a26d15f0c7ff32be7c51aa3", - "sha256": "1za0h16z84ls7da17qzqady0simzy5pk1mlw3mb0nhlg2cfmn060", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0686fb547lqzf9ngw3ln0lgh06qjamg4mvdbv9smwqkiqwm19l04", "fetcher": "github", "repo": "iory/launch-mode", "unstable": { @@ -64794,10 +65762,10 @@ "unstable": { "version": [ 20160816, - 540 + 630 ], - "commit": "e5b0b6ca6c5feeb2502d66a760ddf5bb590d04c4", - "sha256": "0i58qz4l5rzwp9kx4r9f818ly21ys71zh1zjxppp220p3yydljfq" + "commit": "be0768e9aa6f9b8e76f2230f4f7f4d152a766b9a", + "sha256": "0mgcqqhjadm8ckp6x37f9j4xcs61g73m9v8qr4zbw115yci2d0xk" }, "stable": { "version": [ @@ -64846,14 +65814,14 @@ "repo": "AnselmC/le-thesaurus.el", "unstable": { "version": [ - 20220920, - 1924 + 20230112, + 1604 ], "deps": [ "request" ], - "commit": "4dbe929aeaef7d38e75d52844cf9022244fc94ae", - "sha256": "1wbbp4ypph2kvgslwmcnigs6aag0sz3d9wx7dzkn5avj19ym78ci" + "commit": "83e8df8957a3b8167cc2bf97849a1eca555ce9a6", + "sha256": "00phb69hn8w5zl47k5l8gqlxqjm5ig7rz0v4g47hx7xlnhcsfvj4" } }, { @@ -65012,8 +65980,8 @@ }, { "ename": "lean-mode", - "commit": "42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde", - "sha256": "0rdraxsirkrzbinjwg4qam15iy3qiixqgwsckngzw8d9a4s9l6sj", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0rwb4ca079myvipzq938mry5d0fvq5p7cj40fnjfx1cflwwfxbj8", "fetcher": "github", "repo": "leanprover/lean-mode", "unstable": { @@ -65118,17 +66086,17 @@ }, { "ename": "ledger-mode", - "commit": "1549048b6f57fbe9d1f7fcda74b78a7294327b7b", - "sha256": "10asbcb5syv3b75bngsab3c84dp2xmc0q7s29im6kf4mzv5zcfcf", + "commit": "ae67bc440aa7bb9e7e97edbd0eaf06ceb4d9e661", + "sha256": "1239j3r9cvaklh25v2kq0z9vp3bm6cx9al4jh7pxri6dl21vcixy", "fetcher": "github", "repo": "ledger/ledger-mode", "unstable": { "version": [ - 20220623, - 1125 + 20230106, + 1610 ], - "commit": "8bad528d43007e0310b5e72e6e021b502b30495c", - "sha256": "11s33ajzjhqjqxilwn06v79vndl3x61z35c0cr5s641h5lxlj442" + "commit": "4b32f701736b37f99048be79583b0bde7cc14c85", + "sha256": "17653pz69nmzg7452zq7pcj31dk86vssj94i9al28lgfv02h07l2" }, "stable": { "version": [ @@ -65231,17 +66199,15 @@ "repo": "phillord/lentic", "unstable": { "version": [ - 20210727, - 1247 + 20221201, + 47 ], "deps": [ "dash", - "f", - "m-buffer", - "s" + "m-buffer" ], - "commit": "36861bdf9c1d88492648da553f66529e3a879880", - "sha256": "0cj19czxmrxw1id1ym1ai3k7sv9shl3lz4fqj8qyg73j4kj1gbn0" + "commit": "6af878392e127e75409ae0f4bc08837a8f591d88", + "sha256": "134rk1kcfkqnzhn51c0vvkj4839d5lbn0g61bqfpkgsvfpn05wh4" }, "stable": { "version": [ @@ -65361,20 +66327,20 @@ "repo": "fniessen/emacs-leuven-theme", "unstable": { "version": [ - 20220922, - 1545 + 20221228, + 2143 ], - "commit": "1dbd4bda6045080d5a293d56e686af5b4f7fdd9d", - "sha256": "112vd01kd8gr2ybw9x83qcaf283z05cdazz3b7k20jlck633qxi8" + "commit": "2bbffb0555f49fd67a92a48415caca894109cbb6", + "sha256": "086q97268s2j9cc98v0i44vl08iskqkav7hywz26girf5ca9dfsr" }, "stable": { "version": [ 1, 1, - 2 + 3 ], - "commit": "c72db2d5aeb5ed8e4ca066c803ae8d30e7540f79", - "sha256": "1mv5lv98b3351cwkiw51bq8xx4hmnvk93sx6lkdmq0sciw2qz22i" + "commit": "2bbffb0555f49fd67a92a48415caca894109cbb6", + "sha256": "086q97268s2j9cc98v0i44vl08iskqkav7hywz26girf5ca9dfsr" } }, { @@ -65458,11 +66424,11 @@ "stable": { "version": [ 2, - 0, + 1, 1 ], - "commit": "c09b9aebaa659f5c2d0c152d8401fd6924144ce9", - "sha256": "0a5cfnk3021idvv4bv2lvnksjy9d0yyd13bnj793ks86j5f3hdv5" + "commit": "b969afb9b5928d33dcaef636ed9020e620858190", + "sha256": "14bffvmyq6czfhvmcw332a7y4cyr27f75kzk46qlhlqs6l3rahqx" } }, { @@ -65503,14 +66469,14 @@ "repo": "DamienCassou/libelcouch", "unstable": { "version": [ - 20200923, - 1836 + 20230129, + 1000 ], "deps": [ "request" ], - "commit": "5ae35266c9a2eb33f0c708bc8c0687339cee9133", - "sha256": "0vk7m8napg3ss4d9cgsrhkycb5k07q440lspxihy047556l6q3cm" + "commit": "595697f4199519dd018fe489e885f237c54b0675", + "sha256": "0a3mykx9xmbl8scpz08349lyxi0ism8bv01a4aw770649vnqz86j" }, "stable": { "version": [ @@ -65533,11 +66499,11 @@ "repo": "merrickluo/liberime", "unstable": { "version": [ - 20220928, - 845 + 20230113, + 556 ], - "commit": "2217883b0ca3b308de4e2c670a0ac8c767fd633e", - "sha256": "0s0fsjs52x4v1h04j711fd2w7dmx55dc1chfd0s3czf1r5vr7hc3" + "commit": "cc9eb9812fd6f68e78ed6a0c0a85da7a18765753", + "sha256": "11c2wj00wwbdxqkzl60sd77cp43rja5v8hrvhrvhg75v62kawva2" }, "stable": { "version": [ @@ -65595,20 +66561,20 @@ "repo": "mpdel/libmpdel", "unstable": { "version": [ - 20220706, - 1952 + 20221229, + 916 ], - "commit": "c27c08949a742a888eb9921a8528882b2aec6137", - "sha256": "1lp3ld38x0s982zvpgj1hfky3wsdfwjii1yp5j7rq5n6si97aw7i" + "commit": "e7d35ba9254ead1516133f182a01f6161ae26388", + "sha256": "03bavca89cf7dsjmg7hb48qnvca41ndiij33iw5yjjhbq1zyj8r4" }, "stable": { "version": [ - 1, - 3, - 1 + 2, + 0, + 0 ], - "commit": "8cf3512a437251863d56ba4933a8dd53988b1d6d", - "sha256": "0fsg2si7afrnsz91i0ziza6nbc4ds9kpnr2z71wf6896zb1afhfx" + "commit": "e7d35ba9254ead1516133f182a01f6161ae26388", + "sha256": "03bavca89cf7dsjmg7hb48qnvca41ndiij33iw5yjjhbq1zyj8r4" } }, { @@ -65715,6 +66681,24 @@ "sha256": "106p73km11kzins0bx01n6ypz8if20g56ljx0dnnq0fi6hsn87d7" } }, + { + "ename": "ligature-pragmatapro", + "commit": "c0dfe32d78143bd9cee66db92aad6c3caa29fe4a", + "sha256": "1by34q3nc4dkc96snks25gyyx4ix53lfnnxp43wsb0b0xc8i6hf4", + "fetcher": "gitlab", + "repo": "wavexx/ligature-pragmatapro.el", + "unstable": { + "version": [ + 20221127, + 2252 + ], + "deps": [ + "ligature" + ], + "commit": "85f7b15a5cf5f2ee843bc0469e03602a0251c275", + "sha256": "1818lwncgx6iayvxpdmlwv1irbj1vdcmwipf464pvz7dmgfnz8hh" + } + }, { "ename": "light-soap-theme", "commit": "053be1123bb934d80b4d6db0e7e39b59771be035", @@ -65738,11 +66722,11 @@ "repo": "ligolang/ligo", "unstable": { "version": [ - 20221031, - 1737 + 20230130, + 541 ], - "commit": "d3c28b3f98a12af5f68abe729d378a597b26ecd9", - "sha256": "0fa01mgsj21cvd7isgy0fli5qpczbzy8dd2bdn5f6m23b9z1j1hy" + "commit": "fa63e64ff3de4de78f74c2d270c0c0f000abec8f", + "sha256": "1gxpdr7ssdzmax4g7fcn15l3rr4m4zm2gv695iywa5x48k4syzn8" }, "stable": { "version": [ @@ -65762,8 +66746,8 @@ "repo": "emacs-vs/line-reminder", "unstable": { "version": [ - 20221017, - 747 + 20230104, + 1211 ], "deps": [ "fringe-helper", @@ -65771,8 +66755,8 @@ "indicators", "ov" ], - "commit": "501b4739e422ca4859f47b9226e2ea292ecb6800", - "sha256": "1kgkjr5gh0agibc0jbj2z7bab9cnjrwkxsdfs2b7p3jkcmfdd2qg" + "commit": "41a22589ebc3843f6736669a4517014800f09e16", + "sha256": "052viq2qjm8x1ah1hkba0pqafdmbm63dlp1mw3l5kzjrn8rv308m" }, "stable": { "version": [ @@ -66148,8 +67132,8 @@ "repo": "abo-abo/lispy", "unstable": { "version": [ - 20221114, - 2013 + 20221225, + 1927 ], "deps": [ "ace-window", @@ -66158,8 +67142,8 @@ "swiper", "zoutline" ], - "commit": "f35eadf8c1be43a395e196463314b17ea3b4e16f", - "sha256": "01k73h33njx01v0rylrrgxw5q4dzkiiygn68gilx1lkndcg17kyx" + "commit": "097dd66e662c3eee90d112d88bac5345d26e508f", + "sha256": "1cf0nk0c9k78y3gbz6y4bqqdjscs46kb56xkd0lp641gawsa0kls" }, "stable": { "version": [ @@ -66255,11 +67239,11 @@ "repo": "purcell/list-unicode-display", "unstable": { "version": [ - 20181121, - 2316 + 20230216, + 958 ], - "commit": "62fbf84dbf0b9a4cbbbeede69d5392fe2774391b", - "sha256": "0397inzyqssy8j1yz1j5mgjnwyx559f82hy4w8kz1hv3mhih8lp0" + "commit": "57b4384ebe0c5d10890ee0dfcf66d0b16e5f5060", + "sha256": "0182irm3vai6ngl2xlqpj94qzx673rygzik36amrcw2ji9ssf4f9" }, "stable": { "version": [ @@ -66305,11 +67289,11 @@ "repo": "publicimageltd/lister", "unstable": { "version": [ - 20220802, - 2128 + 20230204, + 1357 ], - "commit": "f3e9748b3417184c36e301a381ec20ef4a88e511", - "sha256": "04y51ifjdnkczsvmv70py15p41gc8mhg6f568k3xwdg1791qhwr5" + "commit": "b256c254f670ebaf50134655fbe430025fff41ab", + "sha256": "151wn6g49w15bjnqbnq12ig7f9zdi5d1j21yadp0jvb9jjzk6jg1" }, "stable": { "version": [ @@ -66329,11 +67313,11 @@ "repo": "HectorAE/lit-mode", "unstable": { "version": [ - 20141123, - 1736 + 20141205, + 441 ], - "commit": "bfecbe898223393f34340ca379977be753ee497a", - "sha256": "1sjyb5v3s9z128ifjqx7a1dsgds2iz185y82581qxakl7ylmn15k" + "commit": "c61c403afc8333a5649c5421ab1a6341dc1c7d92", + "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd" }, "stable": { "version": [ @@ -66449,14 +67433,14 @@ "repo": "sulami/literate-calc-mode.el", "unstable": { "version": [ - 20220215, - 1814 + 20230127, + 153 ], "deps": [ "s" ], - "commit": "f5133e65d8ffdab918cdfc269ac0c067a0de5e9b", - "sha256": "0gvha2fl5macpwsp4fpa9nv14sg0yqr90s3v92f6imx89ll0rcya" + "commit": "900bdd12c0a6e6874f60b0df99a72fd329873ea1", + "sha256": "1kbx1i977pyv5ckg6d5c5p806nlrl6y06jmcjwi90yri8l0bia5y" } }, { @@ -66608,20 +67592,20 @@ "repo": "donkirkby/live-py-plugin", "unstable": { "version": [ - 20221118, - 341 + 20221203, + 38 ], - "commit": "388cb12be5f1e225449cf34bf8c0b18b718d932c", - "sha256": "1fbkz6j545sy33xqkg9kgkr83147yg7g1f7brr796hmc474f5h1k" + "commit": "c02c7a5002d817d6e9cd4d7a1551c0ee412a65f1", + "sha256": "0m5v46s4n4wq730pdzhmf26r4lxj23sg24l7yzf40dhsa7pfgh4p" }, "stable": { "version": [ 4, - 8, + 9, 1 ], - "commit": "b10020b0414f15990f4139c363910b58c7ca0852", - "sha256": "0lch1m9xw5xq71sllkhiaxls8rbq9gdj24pyi66p7g6026n5fc21" + "commit": "c02c7a5002d817d6e9cd4d7a1551c0ee412a65f1", + "sha256": "0m5v46s4n4wq730pdzhmf26r4lxj23sg24l7yzf40dhsa7pfgh4p" } }, { @@ -66722,14 +67706,14 @@ "repo": "tarsius/llama", "unstable": { "version": [ - 20220428, - 1405 + 20230107, + 1517 ], "deps": [ "seq" ], - "commit": "5d1da6dc68a1f76f52b7acc808ee430b72fb98ae", - "sha256": "18wzgwyqinsy75cg0hcgxicd40a8n65n6lyparf66aljlm9bq0qm" + "commit": "f76fd445966e3671bb59ba7a0a575f3b2ff59c33", + "sha256": "0pvg2fhidi5br97ppd58jqkpb583yra0wwqmjkng0cqa0x3i002a" }, "stable": { "version": [ @@ -66775,14 +67759,14 @@ "repo": "daviderestivo/load-bash-alias", "unstable": { "version": [ - 20220108, - 2103 + 20230107, + 1737 ], "deps": [ "seq" ], - "commit": "968f037eff48ceca15fd135738051c48ab14cfd6", - "sha256": "03xsgjihp0y62jc6q8fihxvh3siwsvs5kj36wfxp0hpc753ib31g" + "commit": "68cfd70c339c5213c513f7b802b6b50598c9a159", + "sha256": "1gmwrg82vdwdh04zp5nigrn8k8ba2rg61x5rg2lf31q03r7fv2ry" } }, { @@ -66808,11 +67792,11 @@ "repo": "rocky/emacs-load-relative", "unstable": { "version": [ - 20201130, - 2202 + 20230214, + 1032 ], - "commit": "ff2a827144353d29d70392fd95c14c15df207011", - "sha256": "1g8awvbn4f3g611svi58n9sk188skkn7a9jng6nbxbi9diiy3vvz" + "commit": "b7987c265a64435299d6b02f960ed2c894c4a145", + "sha256": "1jmi1j8fkvwfawd9q8b6yhqbg8frckjxsgf9jwgiqw9cvakz6wbf" }, "stable": { "version": [ @@ -66847,11 +67831,11 @@ "repo": "rocky/emacs-loc-changes", "unstable": { "version": [ - 20200722, - 1111 + 20230214, + 1036 ], - "commit": "2db42905675e1740305f9884613bc48582601b8a", - "sha256": "0dqk8m7j14c0n5sh7jgjwlrlqxxncfi3x9sagv0hx4sc6900mmnd" + "commit": "622371e432f50626aaac82f8ee2841f71685b0fb", + "sha256": "1kfgmpnj26h8y063rqs39k4c98yy840mkj2pblm7vm0s1fhddj1f" }, "stable": { "version": [ @@ -66939,11 +67923,11 @@ "repo": "dykstrom/log4j-mode", "unstable": { "version": [ - 20221112, - 1509 + 20230219, + 1433 ], - "commit": "a878589fbbd291d0aa27f56c582ab900a03ca063", - "sha256": "04jw2zfbzw8qblkmxg5c4dm31i5kk8d9r3l1bqa1bld8s7pdxnp4" + "commit": "5c31af49bfbb2f387fa505ba4aeb2004b249af2c", + "sha256": "05y2qvagcc4r3q594gvlabd37ljw51482wdhw8d49ls624fdcwyl" }, "stable": { "version": [ @@ -67111,28 +68095,27 @@ "repo": "doublep/logview", "unstable": { "version": [ - 20220916, - 2058 + 20221206, + 1843 ], "deps": [ "datetime", "extmap" ], - "commit": "3b0b544b69759f4c119d4460f98263b6e739e7de", - "sha256": "04sr8byk7q04vrk673kk9fk1lxawin5ysqkp7mhnxc1ib9535lp9" + "commit": "9bf89f7e628f947f3c0c47fe557bb1878843644a", + "sha256": "0j7qma1lff809d3yynd283jnml0s4nhiq76scxprv9waf3pp39sj" }, "stable": { "version": [ 0, - 15, - 1 + 16 ], "deps": [ "datetime", "extmap" ], - "commit": "617d5d20662c0ab5e2e120609b11cb7b7ced0220", - "sha256": "1khri5632pjirj191x3ps94s4pyrwapf1pbrkmqqp0d26b50d3s2" + "commit": "155df70c7e4aa496f34a85e480c794f679651bfa", + "sha256": "0vw6brs76z7fkvlazakwhhgdcydjc099j150c7503kwi2hmmp0p8" } }, { @@ -67244,11 +68227,11 @@ "repo": "0x60df/loophole", "unstable": { "version": [ - 20221111, - 1517 + 20221126, + 1556 ], - "commit": "a4f161f9ab582ac7cd92e8621530f3a30a59372e", - "sha256": "0kxgkrw7bfk484qa3plh7y0acj8z8byrf2pfq7n8f0k1mcfd71wa" + "commit": "dadc3fadc68b13501c4dbe89109f30deb0d3441a", + "sha256": "1qjifn3rzqs0k7j2mfc98vkni7mzszc4pqd0i5zz9xald61di1dc" }, "stable": { "version": [ @@ -67268,28 +68251,29 @@ "repo": "okamsn/loopy", "unstable": { "version": [ - 20220821, - 1746 + 20230129, + 151 ], "deps": [ + "compat", "map", "seq" ], - "commit": "bb817524a6cc623e1496fb53c044b738c7dc69ab", - "sha256": "143grcv2md8fcj8hdg0w2br76wafzxc7xp10jscs8p83q1wij9xn" + "commit": "85b817f000d922c8e98865bb621b7432dfc0e938", + "sha256": "05vg4w5j9zs4g2z0i0884p8grnh9pahhicp8dva28cg3jmxny625" }, "stable": { "version": [ 0, - 10, - 1 + 11, + 0 ], "deps": [ "map", "seq" ], - "commit": "cd49433244ef450a1dd10a65a7839076d61bdcf1", - "sha256": "0mdr09vqy4xrqb2l4g3j8n99zvqajw1jxxvvm9zv03zkwvcink1c" + "commit": "771c1d1edd4dfec96b576b1d2b551e4aae066dc9", + "sha256": "1z1bi1ms5508iv5w1jmmlml2fay21dhgl2lzbv2is5mnkkv0s6di" } }, { @@ -67300,28 +68284,28 @@ "repo": "okamsn/loopy", "unstable": { "version": [ - 20220330, - 127 + 20221125, + 2001 ], "deps": [ "dash", "loopy" ], - "commit": "cd49433244ef450a1dd10a65a7839076d61bdcf1", - "sha256": "0mdr09vqy4xrqb2l4g3j8n99zvqajw1jxxvvm9zv03zkwvcink1c" + "commit": "771c1d1edd4dfec96b576b1d2b551e4aae066dc9", + "sha256": "1z1bi1ms5508iv5w1jmmlml2fay21dhgl2lzbv2is5mnkkv0s6di" }, "stable": { "version": [ 0, - 10, - 1 + 11, + 0 ], "deps": [ "dash", "loopy" ], - "commit": "cd49433244ef450a1dd10a65a7839076d61bdcf1", - "sha256": "0mdr09vqy4xrqb2l4g3j8n99zvqajw1jxxvvm9zv03zkwvcink1c" + "commit": "771c1d1edd4dfec96b576b1d2b551e4aae066dc9", + "sha256": "1z1bi1ms5508iv5w1jmmlml2fay21dhgl2lzbv2is5mnkkv0s6di" } }, { @@ -67332,11 +68316,11 @@ "repo": "jschaf/emacs-lorem-ipsum", "unstable": { "version": [ - 20190819, - 2042 + 20221214, + 1857 ], - "commit": "da75c155da327c7a7aedb80f5cfe409984787049", - "sha256": "04h97vnd758gsdfg30wkrhnh4hz7k63xbrw178dxfcwsylq32wi0" + "commit": "4e87a899868e908a7a9e1812831d76c8d072f885", + "sha256": "10l0dmnp1kjyca5jqbf4j98xchcbf9grlv0nv3ygf167vps40il6" } }, { @@ -67407,8 +68391,8 @@ "repo": "emacs-lsp/lsp-dart", "unstable": { "version": [ - 20221108, - 1242 + 20221226, + 1829 ], "deps": [ "dap-mode", @@ -67420,8 +68404,8 @@ "lsp-mode", "lsp-treemacs" ], - "commit": "cc6c51b1e7887736c08260dbbcd28215c019a67a", - "sha256": "1cq730i2nnj1xyxr2f9kc0y2w7abmnhn6ga05f57wzy2bnx5vhi5" + "commit": "3db9f93c83052d6a8976c92d67d2b24473930760", + "sha256": "0sfcdmzsnasgickp9ikmkzvi3czads3ik7msyaldyj0al2cf2mqg" }, "stable": { "version": [ @@ -67451,18 +68435,19 @@ "repo": "emacs-lsp/lsp-docker", "unstable": { "version": [ - 20221025, - 1659 + 20221226, + 1000 ], "deps": [ "dash", "f", "ht", "lsp-mode", + "s", "yaml" ], - "commit": "3ffd7729cdd748586734135e36713517e14a1578", - "sha256": "0jvflkqgrvy5nadw0vdygcdfss1hnl11j4fi47wk0hnhlanvlj67" + "commit": "1e1f33ed729c220485c16e6597738d8e416f31b7", + "sha256": "1s1j34y70lf2lxa6ywd2xg2j3411nxlmq4ixrbk9374kp5ml98xq" } }, { @@ -67505,8 +68490,8 @@ "repo": "emacs-grammarly/lsp-grammarly", "unstable": { "version": [ - 20220916, - 441 + 20221231, + 1655 ], "deps": [ "grammarly", @@ -67515,8 +68500,8 @@ "request", "s" ], - "commit": "eab5292037478c32e7d658fb5cba8b8fb6d72a7c", - "sha256": "1sx47y9w8cqdrw54acply48wibsmc963i896ncmf8z7mfly7cb9x" + "commit": "6d111728f9d062d723bb88bd462b6eafe5cafe3f", + "sha256": "05gqsz3jdvh1ni11jkvzy6qghz9nwr25yr21dabqcmc2zxld0j6n" }, "stable": { "version": [ @@ -67543,14 +68528,15 @@ "repo": "emacs-lsp/lsp-haskell", "unstable": { "version": [ - 20220809, - 2129 + 20230104, + 1508 ], "deps": [ + "haskell-mode", "lsp-mode" ], - "commit": "485c1148ce4d27030bb95b21c7289809294e7d31", - "sha256": "0ygyvam8h59bhx785rwf4hs30d95xk5kb48inr1gs4313qc2lil2" + "commit": "3249cde75fb411f95fe173c222b848182fd0b752", + "sha256": "06n16v278wzzh1iq4lp0k508dnynrz5c0qbv86hksm7sa4a4w4s7" } }, { @@ -67612,8 +68598,8 @@ "repo": "emacs-lsp/lsp-java", "unstable": { "version": [ - 20220825, - 450 + 20221227, + 1331 ], "deps": [ "dap-mode", @@ -67625,8 +68611,8 @@ "request", "treemacs" ], - "commit": "13b92b097f91f9296ca65a1dc3eda992315c67ea", - "sha256": "1dzcrlwdsnvm1l0jiwqn2q48nzx792dhrvab5jhfqlva4ivw5h0x" + "commit": "dbe448a886e2f4fb5d3a616f4499adbe643ba7a5", + "sha256": "1brp8giavxh71frf920h7r4qa8ndf046aaf4kgrpzgw39ywyka68" }, "stable": { "version": [ @@ -67737,26 +68723,26 @@ "repo": "ROCKTAKEY/lsp-latex", "unstable": { "version": [ - 20221020, - 159 + 20230121, + 1846 ], "deps": [ "lsp-mode" ], - "commit": "ee4df225b59992946c19d8523e940944f76661c4", - "sha256": "06xzx79b39ykr4afmcpgqhw71mkpn6rk37kf7h392ras9mf17vvc" + "commit": "de080d83f5759ead46dd7a26bb73b7c3a940ef40", + "sha256": "18k93vwq95zyhfp8jj6ppsks95rcqs39p3lhwshgwq9k2i33v1zi" }, "stable": { "version": [ 3, - 0, + 1, 0 ], "deps": [ "lsp-mode" ], - "commit": "94c4536579c18e17e87f2441810968a153c3bea1", - "sha256": "1myzjgx2hq70aa9vb0vmgh2jdd25c5b7x580ccb9c0p40rzjjpbr" + "commit": "de080d83f5759ead46dd7a26bb73b7c3a940ef40", + "sha256": "18k93vwq95zyhfp8jj6ppsks95rcqs39p3lhwshgwq9k2i33v1zi" } }, { @@ -67767,14 +68753,14 @@ "repo": "emacs-languagetool/lsp-ltex", "unstable": { "version": [ - 20220916, - 442 + 20221231, + 1658 ], "deps": [ "lsp-mode" ], - "commit": "ab485b8dca64922c024cb1a7ee95231d68883bca", - "sha256": "1b9z01snd1avpvn3zff4bmca96yhs6xgsqrz0jjdmkh64xvnr4l0" + "commit": "d1a599c8ec3748c2b81899d5831b6e7158255479", + "sha256": "1y6l7wi216s6vpahp3wsmjrfafny2gsf043hx9rwiijwq324ilq3" }, "stable": { "version": [ @@ -67843,19 +68829,20 @@ "repo": "emacs-lsp/lsp-mode", "unstable": { "version": [ - 20221118, - 815 + 20230220, + 326 ], "deps": [ "dash", + "eldoc", "f", "ht", "lv", "markdown-mode", "spinner" ], - "commit": "b4e8aac32d28dfe0f73e0981387c5b20249f385c", - "sha256": "0pim03m7czfy6jphzmw9y38jxhagmffy02d0q95glwxxiz7m6h6r" + "commit": "771342f03986fe8d77696ae9b08e72741006843e", + "sha256": "1hm4h7gf7fxz5axvfb6p26pad2fsskfblhhx23is5kahg73skf18" }, "stable": { "version": [ @@ -68002,16 +68989,16 @@ "repo": "emacs-lsp/lsp-pyright", "unstable": { "version": [ - 20220614, - 1545 + 20221201, + 1501 ], "deps": [ "dash", "ht", "lsp-mode" ], - "commit": "b7d6e5bbf2141d2a1efb469ad3451ecc12ddb1cd", - "sha256": "1z6yhv8ks48wi0m03nb0x5wx2f1fiq4d312amcca7j9mkwf41lqs" + "commit": "4cd2adbb32287278d9d9da59a3212a53ecdf8036", + "sha256": "0ys76xd1bg9r0hkgq1h3aq6wxsjxqplxmk7cfwazzh9nwmgp9s22" }, "stable": { "version": [ @@ -68117,16 +69104,16 @@ "repo": "emacs-lsp/lsp-sonarlint", "unstable": { "version": [ - 20210820, - 2044 + 20220510, + 1802 ], "deps": [ "dash", "ht", "lsp-mode" ], - "commit": "3af97828f9c08d782fb2086e3a73bda5759e6788", - "sha256": "1d1yfgvdyas6vbg992f5s4sayaxjxs33gh13z629x67hx6p22n3r" + "commit": "a429be2aea7797369a3c751ef54e3554733117be", + "sha256": "11rgfn9sdwxsncc4xrchiqn9dbqi3zirjvbz91kc5rvjv436077b" }, "stable": { "version": [ @@ -68169,15 +69156,15 @@ "repo": "merrickluo/lsp-tailwindcss", "unstable": { "version": [ - 20221102, - 1343 + 20230215, + 1425 ], "deps": [ "f", "lsp-mode" ], - "commit": "6e5addff47bac15f99d8efcff2191818dd71d7b4", - "sha256": "0y2j1rp66h2vxf1q553a74mr7a9m6a7c7hrvzwx1wv19wz7ayb1n" + "commit": "563c1dddb26c82b82dcac0b436594b17375a1480", + "sha256": "137fd4xrzr2ggh872qv9rm4lbi4gs0g1nhxw7fr4gd2gfbbkljcl" }, "stable": { "version": [ @@ -68236,16 +69223,16 @@ "repo": "emacs-lsp/lsp-ui", "unstable": { "version": [ - 20220924, - 850 + 20230116, + 2024 ], "deps": [ "dash", "lsp-mode", "markdown-mode" ], - "commit": "3cd7cc61273341023b863dcf45906ac9142fd1aa", - "sha256": "10x4wf046b12kiayd1bhh95kvynpl2wynyrza6zp4c1qnn7mn5gb" + "commit": "295d8984da06a745b0a36c56e28ce915bc389adb", + "sha256": "1s3vc0rpwwck1g61gh55nq6sqaf7rq16yqg5ayj45z3gd4gd29xf" }, "stable": { "version": [ @@ -68270,11 +69257,11 @@ "repo": "immerrr/lua-mode", "unstable": { "version": [ - 20220801, - 503 + 20221218, + 605 ], - "commit": "d17a00ca50aee197cd017d573b83367eb241cc44", - "sha256": "0jib46v4g5f6p5whj45fmhr5q0a9472gzp3ys6az13q9qp6y149d" + "commit": "ad639c62e38a110d8d822c4f914af3e20b40ccc4", + "sha256": "1p653jbijnjfcgv66k2gjzcg6flqhzfyab8l7b0sf89zwbmkil3r" }, "stable": { "version": [ @@ -68310,11 +69297,11 @@ "repo": "lurk-lang/lurk-emacs", "unstable": { "version": [ - 20221114, - 2218 + 20230120, + 2226 ], - "commit": "568fdce7b80a3d71d09369318b18f86de2372105", - "sha256": "03d2xlyw9bqd9wpxxim63c43jpdnjnxi2xyp16359zhxs2np9src" + "commit": "59a3f956944a5ddd43cfd57deeff6b647fc46554", + "sha256": "1g64jc7fy5229jv8x25rj4fj344kfbrnrvc9wxgsxv7lfvb770kv" } }, { @@ -68418,26 +69405,26 @@ "repo": "montag451/lxc-tramp", "unstable": { "version": [ - 20200414, - 1445 + 20230119, + 1251 ], "deps": [ "cl-lib" ], - "commit": "1585e55a5deb89e2f4e30a0ad9e0f121d1e0ebcb", - "sha256": "1zs4wcbxqx8275j2q1118ipqw7532cd6cdy2whw22ck4z5w47vfg" + "commit": "57559701334bb5635b82a252bd00298d06d794fe", + "sha256": "0pv45p6yvsivchqkfg6wirf2vcdfmzymjyqr8n201k2c75qjkgdx" }, "stable": { "version": [ 1, - 0, - 0 + 1, + 1 ], "deps": [ "cl-lib" ], - "commit": "1585e55a5deb89e2f4e30a0ad9e0f121d1e0ebcb", - "sha256": "1zs4wcbxqx8275j2q1118ipqw7532cd6cdy2whw22ck4z5w47vfg" + "commit": "57559701334bb5635b82a252bd00298d06d794fe", + "sha256": "0pv45p6yvsivchqkfg6wirf2vcdfmzymjyqr8n201k2c75qjkgdx" } }, { @@ -68595,14 +69582,14 @@ "repo": "amake/macports.el", "unstable": { "version": [ - 20221113, - 1020 + 20230215, + 142 ], "deps": [ "transient" ], - "commit": "78898be20e3fffef67b3f1eb812347df89cd151f", - "sha256": "1312gd7f02frc26c899cpdbdsxafqgw459i1lwxnnssck48m30vz" + "commit": "e7b16e8b78db6d7fcc17eb05fa3a2a4ed439f2f2", + "sha256": "1kzxq9qcsn63lqx22d21zd4c8wm80d4nhqfsvh5m3p88as9ff29q" } }, { @@ -68765,20 +69752,20 @@ "repo": "roadrunner1776/magik", "unstable": { "version": [ - 20220926, - 1228 + 20230103, + 1503 ], - "commit": "0ae427be02275054ec08cd6fc5259f38473120b3", - "sha256": "068wylr06qq2mgpn786lb2jb4cfp28h8aqiqzdhnq1sdcrqmxb1c" + "commit": "a2ddc7cad487e6165c2e2ac26acec62b1f7bbeca", + "sha256": "007lprnl9ylzk0246yh885nikhbwxxrghismsqrwiiair758hrv6" }, "stable": { "version": [ 0, - 0, - 3 + 1, + 0 ], - "commit": "d280836c77fd263ee404273d7c21f47395a657f9", - "sha256": "0ibasyhqc6zgvzvkfyfvx7g6f18z4n7hy2lqjvyckh40cqpzpwj0" + "commit": "05290e30f57379adc73cfd932b728d792039a42f", + "sha256": "0lym5wgb3jbs3bzc77y4i2d6577kyw10973l2h3apbhfnj69gpfj" } }, { @@ -68789,8 +69776,8 @@ "repo": "magit/magit", "unstable": { "version": [ - 20221113, - 2221 + 20230219, + 1247 ], "deps": [ "compat", @@ -68800,8 +69787,8 @@ "transient", "with-editor" ], - "commit": "05b0d99d714350d51676b86da9f5daa2f6b7fa3e", - "sha256": "043y2fzvm7b9626qyaljab5zcgwflalw5vi9sln72q3pyx8zk8rw" + "commit": "451cbe5c24f2af7ed505f1422af6ad4e8f05205b", + "sha256": "1f5r2aphsnv1m2wi75kk2gw2q584akdr6k9bqbzc9lj1nqv85llf" }, "stable": { "version": [ @@ -68880,14 +69867,14 @@ "repo": "ideasman42/emacs-magit-commit-mark", "unstable": { "version": [ - 20220809, - 625 + 20230214, + 1821 ], "deps": [ "magit" ], - "commit": "9367f7e4038792073f090b2c881cdbde1ab47f40", - "sha256": "16cn28730q52fwfhv1x9z7ky9qngf4jr761qdn8pxi6b8x92c6xf" + "commit": "6ed61986ae28c01d0f8c4f2bcff8ab70707488df", + "sha256": "1fhz29rsyggfqjb140v96i52p7vmxqs0wcxiqjhpjmim4ks3kq31" } }, { @@ -69225,14 +70212,14 @@ "repo": "dickmao/magit-patch-changelog", "unstable": { "version": [ - 20220313, - 1229 + 20221209, + 123 ], "deps": [ "magit" ], - "commit": "96936d2bd92c8bbf87f65bc293f3246014bc2764", - "sha256": "1k0674f9c0h468nl791nrvngymgbdljnsrwapnki5b3zvaxglckc" + "commit": "fd259cf6ce270a21df2f00b1e031193c8595a7a9", + "sha256": "01h07bg1w1gg33saa86ph6ma1y0vn18dbkhhxqnm3x1m1kq9ssi5" } }, { @@ -69311,15 +70298,15 @@ "repo": "magit/magit", "unstable": { "version": [ - 20220929, - 1014 + 20230213, + 2018 ], "deps": [ "compat", "dash" ], - "commit": "cfe5a1260bf19191adab837e90acc1004529a0c9", - "sha256": "04lfwy494bv1acmr9jhr4w46jrpi4hyjmg5wjsxf547vx666q6vd" + "commit": "deb10e984e16201182b0569f7df7d30ec3b8afa9", + "sha256": "0qh8170mb2bm2zmncpzd7zz11s7bvbw9pzpwf52cbai3qk90b544" }, "stable": { "version": [ @@ -69479,14 +70466,14 @@ "repo": "greenrd/magit-topgit", "unstable": { "version": [ - 20160313, - 1954 + 20161105, + 1623 ], "deps": [ "magit" ], - "commit": "243fdfa7ce62dce4efd01b6b818a2791868db2f0", - "sha256": "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2" + "commit": "11489ea798bc88d0ea5244bbf725285eedfefbef", + "sha256": "1y7ss475ibjx354m73jn5dxd98g33jcijx48b30p45rbm6ha3i8q" }, "stable": { "version": [ @@ -69977,8 +70964,8 @@ }, { "ename": "mandoku", - "commit": "1ae754064cd1f062bbdd6ecf9af03fa0c2798cf6", - "sha256": "00w246svp3lmbhq7cak2p7fmabnl6dbbsa3cx7wbiwq0f4hpjiaw", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0nhh8m9kyz1kh3c9iwv73q6m91lb9f2ra64vf430rfmn9p4ilr95", "fetcher": "github", "repo": "mandoku/mandoku", "unstable": { @@ -70121,19 +71108,25 @@ "repo": "minad/marginalia", "unstable": { "version": [ - 20221016, - 1017 + 20230217, + 2050 ], - "commit": "cc7a086cd7816ad41ff004c61c41bdd26ec3ea0b", - "sha256": "0ncdyczalvl677nim0iha003xway7rwxw8y35vcvkgsdk4vzv848" + "deps": [ + "compat" + ], + "commit": "ccf573e2145d9deb9d734432351eefc87fc1bc16", + "sha256": "0zi3q7dd9dgrhbz6ww270i43kkqs0ddk0vzs89mfvwa5pzw32d2q" }, "stable": { "version": [ - 0, - 15 + 1, + 1 ], - "commit": "cc7a086cd7816ad41ff004c61c41bdd26ec3ea0b", - "sha256": "0ncdyczalvl677nim0iha003xway7rwxw8y35vcvkgsdk4vzv848" + "deps": [ + "compat" + ], + "commit": "ccf573e2145d9deb9d734432351eefc87fc1bc16", + "sha256": "0zi3q7dd9dgrhbz6ww270i43kkqs0ddk0vzs89mfvwa5pzw32d2q" } }, { @@ -70160,13 +71153,13 @@ "unstable": { "version": [ 20201219, - 231 + 232 ], "deps": [ "choice-program" ], - "commit": "b012270ea7780ed02ddf61d884b96cdc4fc01594", - "sha256": "0wmbrv5b4y1qq28w7glxqysrqfycp9gcs6cb3cjjlil74m1lcvc9" + "commit": "a622d128afc8d2d67de897666a1e2eccba8d7818", + "sha256": "1zb0ynwficxninyw89z53qf78s1ns60nh4cyzk96m05jlcaa1s44" }, "stable": { "version": [ @@ -70241,11 +71234,11 @@ "repo": "jrblevin/markdown-mode", "unstable": { "version": [ - 20221105, - 236 + 20230212, + 1208 ], - "commit": "c338cdff80012893e64ba62a199281f430db7021", - "sha256": "0glmrn96aji78jf3nvj5w0bkwswd0kyazfnm1jszgyy7h01am9rm" + "commit": "c765b73b370f0fcaaa3cee28b2be69652e2d2c39", + "sha256": "1i9qw8pyf44zvdfc8nh5gjpiihhafvjjqwgc6z7r6jl2gn4bmyri" }, "stable": { "version": [ @@ -70487,20 +71480,20 @@ "repo": "jcs-elpa/marquee-header", "unstable": { "version": [ - 20220704, - 753 + 20221230, + 1008 ], - "commit": "14f490b8683bdce53a6272fcc28a9b4137f86a24", - "sha256": "0vkf98hbcla6gl4xvy0wln87msjh5wf9dhnyscbqavgwql6m07k9" + "commit": "1fee5bbec486d0755954f5cafda67f342dc7daa1", + "sha256": "1i5ysf6sh8ziaqwg3bk80psig6gi4psl6xqjna59hdi0xnb4nly8" }, "stable": { "version": [ 0, - 0, - 9 + 1, + 0 ], - "commit": "d8e83b837bacdd45d274be42fe2d172fd1cbbba2", - "sha256": "1iy8vg2wlrzb01nc6sx21ijg62ak94k2x2w6gy56krp7frakacrv" + "commit": "1fee5bbec486d0755954f5cafda67f342dc7daa1", + "sha256": "1i5ysf6sh8ziaqwg3bk80psig6gi4psl6xqjna59hdi0xnb4nly8" } }, { @@ -70571,16 +71564,16 @@ "repo": "martianh/mastodon.el", "unstable": { "version": [ - 20221117, - 1357 + 20230219, + 2053 ], "deps": [ "persist", "request", "ts" ], - "commit": "98276c45f29d4e45955ad7649758619453423cb4", - "sha256": "1sikn8jbq06k2z3qssrgh393hadrvmf667k6w3xd02sbas3zpk5d" + "commit": "4f9a7be4926dbf3f33a717fcbed12de78c22b331", + "sha256": "0grgilbfzn1fhmzriq5wynxm119dlav8d975inhr2gi49sg8bx1d" }, "stable": { "version": [ @@ -70640,7 +71633,7 @@ }, "stable": { "version": [ - 4, + 5, 0, 0 ], @@ -70649,8 +71642,8 @@ "json", "s" ], - "commit": "0f0b2315d23e5d18b627c9faa8f231f175b728a0", - "sha256": "003ih3nrv753rj4ssdvs6ddqzxgl63vzmrypd41xf4g5dfsbmsf0" + "commit": "dd41b03c64eca324558e6139699cacccfdd0efd2", + "sha256": "04sd9147ll28zabi1kr4qbg1z04svgfix1rxh151sz6jmars7qj0" } }, { @@ -70678,8 +71671,8 @@ }, { "ename": "math-symbols", - "commit": "d7b0799bddbbbecd12bc1589b56a6250acf76407", - "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "05m9sd93llbfl15nx0zbj03vggjfqh4i0j1rgx5nlqmrix6r3caq", "fetcher": "github", "repo": "kawabata/math-symbols", "unstable": { @@ -70699,15 +71692,28 @@ "repo": "enricoflor/math-tex-convert", "unstable": { "version": [ - 20220918, - 1850 + 20221210, + 1937 ], "deps": [ "auctex", "math-symbol-lists" ], - "commit": "91a9588f0d2d145f1695a531cc8bba8ec0adee3b", - "sha256": "1n6pizx5rnjrmr3xm98mwsq95xa50xagpg8k01k7vqwi472g7f3h" + "commit": "8b174d05e8e5269322a1ee90f94cf1ed018d4976", + "sha256": "0y8mk22jklj0bappvfjmkz8cf9j9ppsbgp770fvc6m62xf544jlx" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "auctex", + "math-symbol-lists" + ], + "commit": "8b174d05e8e5269322a1ee90f94cf1ed018d4976", + "sha256": "0y8mk22jklj0bappvfjmkz8cf9j9ppsbgp770fvc6m62xf544jlx" } }, { @@ -70718,11 +71724,11 @@ "url": "https://git.code.sf.net/p/matlab-emacs/src", "unstable": { "version": [ - 20221008, - 1623 + 20230120, + 1938 ], - "commit": "e0d127935c7a45b1178182a43ab000f41a9f73d7", - "sha256": "1nwpqbbfabcjryqg41fkdailhq2m5f55yxcz7z75s07y15xl1c5y" + "commit": "4cf540990f1f568c513162a0103b2b00c3d1ae43", + "sha256": "0ypm3kl67025wr7wfvgl9l9ig00kz0kpr9544g4dw92yq4wp5504" } }, { @@ -70795,20 +71801,20 @@ }, { "ename": "maxima", - "commit": "b46e83f2ea2c4df1ef343c79c7e249605c9639b3", - "sha256": "1vb9r501r1l4j721ybhl2pl90m2qzq0ky01dv2zipzph0gdx5q0a", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0wmnw3rwxfg2pha18b67qdk745w0hn0apsvs1p84mapkjl8cmw9l", "fetcher": "gitlab", "repo": "sasanidas/maxima", "unstable": { "version": [ 20220531, - 1751 + 1847 ], "deps": [ "s", "test-simple" ], - "commit": "8f0f64740928def955762780c801ef682dabd562", + "commit": "1334f44725bd80a265de858d652f3fde4ae401fa", "sha256": "1milqql0p9gp4dn9phn4fw1izf37wizpirvmzh5s71rwzrr6a9ix" }, "stable": { @@ -70822,7 +71828,7 @@ "test-simple" ], "commit": "1334f44725bd80a265de858d652f3fde4ae401fa", - "sha256": "1h1lqrl3p9qgkicds8v44vdry19g53rya56hdj3cz5q8xj1nisn1" + "sha256": "1milqql0p9gp4dn9phn4fw1izf37wizpirvmzh5s71rwzrr6a9ix" } }, { @@ -70833,20 +71839,20 @@ "repo": "dochang/mb-url", "unstable": { "version": [ - 20220921, - 1904 + 20221201, + 1855 ], - "commit": "74fd873981b0fdc35518e4cfdd52527b6f95cdf5", - "sha256": "1ha890bvbcc2b4nvx35idsi3q244d30jg8vkzvwcw26ic5sjr03r" + "commit": "a6e5209a3569857836c5f6e58eb33ec98a9f6700", + "sha256": "0rypc37pr2v57fqkr50aaqrp2159lxw8llmvflkxl9zk3fwnrm80" }, "stable": { "version": [ 0, - 10, + 11, 0 ], - "commit": "74fd873981b0fdc35518e4cfdd52527b6f95cdf5", - "sha256": "1ha890bvbcc2b4nvx35idsi3q244d30jg8vkzvwcw26ic5sjr03r" + "commit": "a6e5209a3569857836c5f6e58eb33ec98a9f6700", + "sha256": "0rypc37pr2v57fqkr50aaqrp2159lxw8llmvflkxl9zk3fwnrm80" } }, { @@ -71059,15 +72065,15 @@ "unstable": { "version": [ 20220101, - 501 + 505 ], "deps": [ "company", "flycheck", "yasnippet" ], - "commit": "4582818c4795cbe231665ab4c0f38ccfa650ce8b", - "sha256": "15119yjrsqy2hdga2p2y3nd0zqxy1xqjywfiwiyr28gw6v50sk3a" + "commit": "59c46cabb7eee715fe810ce59424934a1286df84", + "sha256": "1azjp340wxv25c7bg1y5m8gwmgsdfvlxxcisczz44v87v8jbjhyw" }, "stable": { "version": [ @@ -71092,11 +72098,11 @@ "repo": "baaash/melancholy-theme", "unstable": { "version": [ - 20221017, - 43 + 20230204, + 212 ], - "commit": "42b89124dd400d81b81d871d853ed8f11abfe01c", - "sha256": "1d44ry85qxfm6jkmwjgr2i74lni0f8g0r5k777s5lvfq3yirmjw6" + "commit": "c29f9c70787f75749a8f5af4b1a650eec5bbf689", + "sha256": "06hag53si17sjbqj0679jcg302nl2shivxb5wrdbiqv1f5j83sr5" } }, { @@ -71212,8 +72218,8 @@ "repo": "skangas/mentor", "unstable": { "version": [ - 20221030, - 1607 + 20230103, + 1146 ], "deps": [ "async", @@ -71221,21 +72227,22 @@ "url-scgi", "xml-rpc" ], - "commit": "291ba7fd29aabcadb584feddc0b3ae4120713209", - "sha256": "1yijc61x6c8g6azm3bj7miqzymx5n25pjx0b5850i5jddqd2sjvz" + "commit": "f51dd4f3f87c54b7cc92189924b9d873a53f5a75", + "sha256": "1jmgq8n6lf2gkxx1f2nv56dvs335zhcq4kgvmsrdiaay4v4j9pgi" }, "stable": { "version": [ 0, - 4 + 5 ], "deps": [ "async", "seq", + "url-scgi", "xml-rpc" ], - "commit": "4ce024e17bf8ae079b2cd67af475b3e636c82be1", - "sha256": "0bs5zlf8f5pil0z5bcq1p5vxrhlnlki1khfsmif56msxhsf0m6wc" + "commit": "480602f2ec5467aa2418ee98b328fb85d3b58d0c", + "sha256": "1yjlv14wab2a39bi5v1p5mkri696fq22j1fnac1k83qc3s67m4hi" } }, { @@ -71246,11 +72253,11 @@ "repo": "meow-edit/meow", "unstable": { "version": [ - 20221027, - 28 + 20230213, + 200 ], - "commit": "4ad1a11d14c8bc0ba4137900c7833fbdacf7bdb3", - "sha256": "0dnz5kd2swk7jn661nchj2sjhl7ydf4zks2vfxcyr7npgkxw78cf" + "commit": "1e69067c1647ea634c87c021c5acf4a81152f4b2", + "sha256": "125g3ya4n7whj88ja80gl8pfg3zwnkbmizkxyvs1hfwla1xr559p" }, "stable": { "version": [ @@ -71270,21 +72277,22 @@ "repo": "ocaml/merlin", "unstable": { "version": [ - 20220630, - 1249 + 20221222, + 1239 ], - "commit": "2e006714bbd000e2e4ad8d67469254ca2988def6", - "sha256": "11d6x988mjpcbkrj812w9rv0j24hnhlxkk6g5fbcji19pxqrz3xn" + "commit": "41cd949106fbf0769c97e3a56808e4d99fc42c6f", + "sha256": "17fvs379xqdr3lhpqvj36vrdp12swnaz3hgnf312bjni15gpyiyi" }, "stable": { "version": [ 4, - 6, + 7, + 1, -4, - 414 + 500 ], - "commit": "be753d9412387aedcf32aba88a1be9bcd33d97ba", - "sha256": "1cpa9x45w54l4mqqmc8z3s5gscggw37gb6z9i7wwss86fj1wgclh" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -71295,29 +72303,30 @@ "repo": "ocaml/merlin", "unstable": { "version": [ - 20210615, - 1208 + 20221123, + 1408 ], "deps": [ "auto-complete", "merlin" ], - "commit": "aa9a385e7b610b855911c4e544371725dd83511e", - "sha256": "159hsnjdkjhldn19vw43fnv2yzfb17yg3p8x41vs8wq3rw6msc7j" + "commit": "8bcab034a680f57ddf58092fda6288dc4caddd2a", + "sha256": "18pp8rjdf0lbdppnp0yxb77hpl9bvxbxkk05yf4flbpa101q74cj" }, "stable": { "version": [ 4, - 6, + 7, + 1, -4, - 414 + 500 ], "deps": [ "auto-complete", "merlin" ], - "commit": "be753d9412387aedcf32aba88a1be9bcd33d97ba", - "sha256": "1cpa9x45w54l4mqqmc8z3s5gscggw37gb6z9i7wwss86fj1wgclh" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -71328,29 +72337,30 @@ "repo": "ocaml/merlin", "unstable": { "version": [ - 20210615, - 1208 + 20221123, + 1408 ], "deps": [ "company", "merlin" ], - "commit": "aa9a385e7b610b855911c4e544371725dd83511e", - "sha256": "159hsnjdkjhldn19vw43fnv2yzfb17yg3p8x41vs8wq3rw6msc7j" + "commit": "8bcab034a680f57ddf58092fda6288dc4caddd2a", + "sha256": "18pp8rjdf0lbdppnp0yxb77hpl9bvxbxkk05yf4flbpa101q74cj" }, "stable": { "version": [ 4, - 6, + 7, + 1, -4, - 414 + 500 ], "deps": [ "company", "merlin" ], - "commit": "be753d9412387aedcf32aba88a1be9bcd33d97ba", - "sha256": "1cpa9x45w54l4mqqmc8z3s5gscggw37gb6z9i7wwss86fj1wgclh" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -71361,14 +72371,14 @@ "repo": "Khady/merlin-eldoc", "unstable": { "version": [ - 20190830, - 517 + 20230213, + 555 ], "deps": [ "merlin" ], - "commit": "db7fab1eddfe34781b7e79694f8923b285698032", - "sha256": "1c13cgmi8z69b5imd9zlagfgrsdl3qv73n24wgc4ih99w1c7sc08" + "commit": "bf8edc63d85b35e4def352fa7ce4ea39f43e1fd8", + "sha256": "01k9hnhv9wbshwkrhzmy1d6dw1dps0amjpdcjhzyzz3d97kwnjws" }, "stable": { "version": [ @@ -71390,29 +72400,30 @@ "repo": "ocaml/merlin", "unstable": { "version": [ - 20220330, - 1736 + 20221123, + 1408 ], "deps": [ "iedit", "merlin" ], - "commit": "b94e980b7d10830a83b73794a90b7b9ad04239dc", - "sha256": "0iymv5kvybfbp5q0mkvy8nx5988nd9yh5p7xrbfmk3ds62gjwa35" + "commit": "8bcab034a680f57ddf58092fda6288dc4caddd2a", + "sha256": "18pp8rjdf0lbdppnp0yxb77hpl9bvxbxkk05yf4flbpa101q74cj" }, "stable": { "version": [ 4, - 6, + 7, + 1, -4, - 414 + 500 ], "deps": [ "iedit", "merlin" ], - "commit": "be753d9412387aedcf32aba88a1be9bcd33d97ba", - "sha256": "1cpa9x45w54l4mqqmc8z3s5gscggw37gb6z9i7wwss86fj1wgclh" + "commit": "f3643eab67b5d2a89c3310282b1b605eadeb1908", + "sha256": "05a87i2dkzv800nwb6y7b2j45avg8gs3gzb5a98wrj1i5zjqwh01" } }, { @@ -71423,14 +72434,14 @@ "repo": "abrochard/mermaid-mode", "unstable": { "version": [ - 20220716, - 1705 + 20230131, + 1601 ], "deps": [ "f" ], - "commit": "a98a9e733b1da1e6a19e68c1db4367bf46283479", - "sha256": "1xhvjng4av3k9n96p3gi0v9i47ya23rz02pwzgp7xxvhflbas4ph" + "commit": "f0c9b5202d70bce783494a971d3c67d4700cff53", + "sha256": "14kfsni9x7ds7zw16kln2mkzqkrkd7vakc575s1c36c9zgvqk2nb" } }, { @@ -71464,11 +72475,11 @@ "repo": "alexmurray/message-attachment-reminder", "unstable": { "version": [ - 20200428, - 124 + 20230124, + 520 ], - "commit": "02d7e66e55729d294f92881530f58a6a7364a78c", - "sha256": "02cqbxdhncnd48nnm3ya5fwkzhq7ax2z277biv7z2nhmx52dwcds" + "commit": "975381d6e7c6771c462e73abd3398a4ed2a9b86b", + "sha256": "1frh5kksypp8lwp3hsfh6fxbm4hbylkq2ll8g9nvq84kaq9m1k84" } }, { @@ -71682,17 +72693,17 @@ }, { "ename": "mew", - "commit": "362dfc4d0fdb3e5cb39564160de62c3440ce182e", - "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0yh1z3y58mrl053biy3awrawy4k94vz3gp0bl5h4mbxwkdvpjz65", "fetcher": "github", "repo": "kazu-yamamoto/Mew", "unstable": { "version": [ - 20221117, - 1310 + 20230209, + 1231 ], - "commit": "7e4dd83a1896f44e1b6c820263c850e3b33eec50", - "sha256": "0zjnqnrz4gy1rikrgg8smg62wy3m50w0gpsq644606s24hvf7kwc" + "commit": "2f9143f5865cdbd31701be58093961b41def0edc", + "sha256": "0535p05iggc20p168lniy42c5zlvj5j7gpny4yfm75b8b8h6zk11" }, "stable": { "version": [ @@ -71726,19 +72737,20 @@ "repo": "danielsz/meyvn-el", "unstable": { "version": [ - 20220821, - 2242 + 20221206, + 2219 ], "deps": [ "cider", "dash", "geiser", + "parseclj", "parseedn", "projectile", "s" ], - "commit": "43b2061f907dda533abd3136dccdb1ce467ec6c0", - "sha256": "0jrqxk0sf6360sm7b78cbmdkhi4ihgdjsyxgw5qn8xl81n41xas1" + "commit": "493e652b8fffcbed226f69a2ea82e6f9fc51ab08", + "sha256": "1k5r4k2l31vxn7cmfl2ijzlay4klyr66ljzp3c779mz967f0sf5h" }, "stable": { "version": [ @@ -71775,8 +72787,8 @@ }, { "ename": "mhc", - "commit": "d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba", - "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0d5k7sfacf6158qfck9b10pblsrna7wl1a1r1vk4m73sq4hsk0b9", "fetcher": "github", "repo": "yoshinari-nomura/mhc", "unstable": { @@ -71803,6 +72815,30 @@ "sha256": "1786r9jfxdsnbb7icy0ndg28p8srkr6mn3zs2r7iibr2ysk3rjvp" } }, + { + "ename": "mic", + "commit": "5a37253a8a1b2f107705c2f323f104c091f39204", + "sha256": "0grjdymn8qy5lyg0l98ayz7w5rjdmzqmhc03r8690zsfh9sk8f6w", + "fetcher": "github", + "repo": "ROCKTAKEY/mic", + "unstable": { + "version": [ + 20230123, + 944 + ], + "commit": "7d0a31ace0b801cb8b58a7bb61a981b67508208d", + "sha256": "1gz6fbj7l0pm6ghv40665iaik2rw3qmbrbccb84jjky2a3d6vcch" + }, + "stable": { + "version": [ + 0, + 36, + 0 + ], + "commit": "fcb51a8171354d1d912c29095488ed8536b89bb0", + "sha256": "1j15s74klkhmmav6s1ga1kxvwq633gqix4vbddxvwkv80bwp9bvf" + } + }, { "ename": "mic-paren", "commit": "6f0e54eac31fbbce9a778fb654f07e11aaaa46ca", @@ -71961,14 +72997,14 @@ "repo": "pft/mingus", "unstable": { "version": [ - 20220825, - 1103 + 20230206, + 618 ], "deps": [ "libmpdee" ], - "commit": "aca914bfd81e18a37b2cc91f8ad219719a46c108", - "sha256": "11lfdvjjg0bdyach78dw7hi8whc0500w2339pr17dmwks4qyzdcl" + "commit": "f4d1df06f537ae88830a040eea5e23768a0ebd5b", + "sha256": "1gpiyh694qnipg33w90riwmf6717lkbabdqm6ybjbcn6d7k60b6y" } }, { @@ -72178,14 +73214,14 @@ "repo": "tarsius/minions", "unstable": { "version": [ - 20220422, - 1615 + 20230107, + 1518 ], "deps": [ "compat" ], - "commit": "b0427eea174adb494efc9fa212c22021861d3f76", - "sha256": "0jzmyf9x9nq4jw8a0b5lisam0wz6vy3f8sxn4dj3anawjivn6ml0" + "commit": "69533c47449009a9533412db69c0eecedf5aa285", + "sha256": "1kn2f0x0yary3ry1kx7v94fq5zinjgcvj8fqpnfq0qn3m34cv39f" }, "stable": { "version": [ @@ -72283,8 +73319,8 @@ 20221031, 411 ], - "commit": "df81e04668de74740e252ddb0f34569b351b92b4", - "sha256": "0lsafb7jciqll2f3mr7jnf4ydrhlvqi1pjyr5snsjk98q0yigskj" + "commit": "7bb0f9946f5833eada199e880fdc4efa6df09e0b", + "sha256": "0fwxhkkhvbwdxrg9j9pjgkh864fa8rvc6dcr46a69spyjja3rw90" }, "stable": { "version": [ @@ -72400,20 +73436,20 @@ "repo": "jdtsmith/mlscroll", "unstable": { "version": [ - 20221101, - 1715 + 20221204, + 1608 ], - "commit": "101821ad61222e318d924aaebac091650ec2a047", - "sha256": "1nh0bh8q2n02ys0jvvpgba8k188v20d4dvnnl71vfwkm2b17kpmw" + "commit": "de9f84531ca4db6e54a2ca7201638decc0ccadd4", + "sha256": "04gqvlqb00jmkxj4wv4yr3hyvyal4vp2i2x0r338144bhwcxmi71" }, "stable": { "version": [ 0, 1, - 1 + 6 ], - "commit": "5811cb564727f74eb0c8b8b075e6dc982e6ac5f6", - "sha256": "1wj71kz9zdp1rb2lmxrfrrwjg7wb4yjgsaqmhv2l4hyq97pzr0nm" + "commit": "aca5dc9b1be2e38d051c098cf5bc3412cec1ccee", + "sha256": "0k8v6wnscwm5bn6ksr0sbd9cj559ddcbqj7vhh0w67sfy9lgvriz" } }, { @@ -72453,14 +73489,14 @@ "repo": "dgutov/mmm-mode", "unstable": { "version": [ - 20221027, - 2340 + 20221228, + 1931 ], "deps": [ "cl-lib" ], - "commit": "3c2071347a48a5aa172671687b0a3972381dc7d7", - "sha256": "02gcv9rxxl278sx5kw1w1zgj0yi2rscr2dk93l58yggwc4pxnai5" + "commit": "171bf6395b8a95a2d08d41fa38cc1799025d3916", + "sha256": "1m6nqkjy04s5c4v3a952gx79dnc3ihc5w5vj6lg26ps9syzk3b0b" }, "stable": { "version": [ @@ -72585,8 +73621,8 @@ }, { "ename": "mocha-snippets", - "commit": "93c472e3d7f318373342907ca7253253ef12dab8", - "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0kv2qcxga1fpdvyd898sjg1c64gj7d83fyjs5b24zx4yysxfp04z", "fetcher": "github", "repo": "cowboyd/mocha-snippets.el", "unstable": { @@ -72722,14 +73758,14 @@ "repo": "tarsius/mode-line-debug", "unstable": { "version": [ - 20220422, - 1615 + 20230212, + 2015 ], "deps": [ "compat" ], - "commit": "4e9e4d774c69a694ff1c781ec2c9215b2f2dc643", - "sha256": "0p23hvan3snpdizlgx4221nnzgj631b0fhd6w13cq1fcrvis3a9w" + "commit": "d6148f6819e8500c907271ef82c4604ee416f941", + "sha256": "10l1gm4bma6cwmcx7b00hzd8zpaxl60lql71qrx4bcad076n3afz" }, "stable": { "version": [ @@ -72749,11 +73785,35 @@ "repo": "ideasman42/emacs-mode-line-idle", "unstable": { "version": [ - 20220731, - 2355 + 20230116, + 951 ], - "commit": "11877416ef391dffa38eb1433ce2f337405c7ddc", - "sha256": "13vaxj7hy7zp7zy2g5vfgd4mrkhw6r3bi4hfn1h1h2ijf9hln3am" + "commit": "be393eb5c60382ed297b59f69292917bfc9bf60f", + "sha256": "1n391gvk7gzcvkwlhwid0lhlbva2a4pghb7r8mrnf8pm1imzydjf" + } + }, + { + "ename": "modelica-mode", + "commit": "7c490aa852043e71eb5d3bb8e8b36160e0ac888b", + "sha256": "1jq8jsm7ap14r7vrhbicsrcq9g07yv8adl733c3fil02db6aipfm", + "fetcher": "github", + "repo": "modelica-tools/modelica-mode", + "unstable": { + "version": [ + 20230109, + 1000 + ], + "commit": "291f1bb8147693e21054722757f1e2cef4b27d12", + "sha256": "1dswgjsza688v17cmcyw5w58dywz346bq4v0msvyrm3rhv2xbwrz" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "291f1bb8147693e21054722757f1e2cef4b27d12", + "sha256": "1dswgjsza688v17cmcyw5w58dywz346bq4v0msvyrm3rhv2xbwrz" } }, { @@ -72869,20 +73929,20 @@ "repo": "protesilaos/modus-themes", "unstable": { "version": [ - 20221117, - 1155 + 20230217, + 1150 ], - "commit": "30b622807601d3c1722347717f998d6d5a0146f3", - "sha256": "0iis4lc2sxbzf5syp23zqpy451avv7k1hwjc5d3y0lrnp4ivchln" + "commit": "39ac76907ca1ffb33167c72036b35814c07e9587", + "sha256": "1k0wn3wn0xnp54zmldy1nasykhzziabad01dgqvfnciwpxirpgrb" }, "stable": { "version": [ - 3, + 4, 0, - 0 + 2 ], - "commit": "0bf4095918281f50f27ff3174482678c84c645d7", - "sha256": "1468y1ra4w4ihq68mfvddyijppj5sz143aawzg2nxdzphy9a84l2" + "commit": "ca4d92aa0dd2046a06821281b12201bcaa95bb1d", + "sha256": "05wl0310va5irc2f72d2mxq19xafxswmgc0a048mah0aam8lsv2f" } }, { @@ -72893,11 +73953,11 @@ "repo": "kuanyui/moe-theme.el", "unstable": { "version": [ - 20221107, - 255 + 20230110, + 422 ], - "commit": "b7960f079e6f2b82468b4ca2afd4edf8bbdb6fdb", - "sha256": "1g8n3k5dsaib17jksbbbyg7sm82fskxgb6zv8jysrj4zv3yll7h3" + "commit": "171d76b0c69e42a9d7b62c5c472944951cb2be6c", + "sha256": "0g4dci8r0p69vmhbp5djrjvqv7z90xw7pznzapgxy8dqmbvc14k0" }, "stable": { "version": [ @@ -73013,8 +74073,8 @@ "deps": [ "scrollable-quick-peek" ], - "commit": "e72472d3c490c8e3ffc5ca7bf8e535e15bd867a7", - "sha256": "0xzj9jqnzyzkbjfj2rfg4fzaprprqzy3xqnacfnmavr2l68vigih" + "commit": "0e949d08198c0bd003f1d5c8cdceb7e36bef22f7", + "sha256": "0fgnfslhg10q96lyxfnpa7s8dvw5gjlll7p6qji2jfz3kncwhf5l" }, "stable": { "version": [ @@ -73031,8 +74091,8 @@ }, { "ename": "monky", - "commit": "9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc", - "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "17cipbdbksr3aqd5slk8i0xf86kz7gw757mnl24dnc0j2z4a3c96", "fetcher": "github", "repo": "ananthakumaran/monky", "unstable": { @@ -73168,20 +74228,20 @@ "repo": "jessieh/mood-line", "unstable": { "version": [ - 20211003, - 2113 + 20230126, + 917 ], - "commit": "ef1c752679a8f92faa7b4828adbbb300b6942f22", - "sha256": "0z6s80j259xf8nxjxcsmp7wyvpcg5wyx58brlrbwg1aa9hl3fxga" + "commit": "58e85c815092ac93d02dab584fe537fd1be3828a", + "sha256": "0davxbpw2a15n1wcza3qszdvmyzypffz8rdkizlq6xhccdyk0rvd" }, "stable": { "version": [ - 1, 2, - 5 + 2, + 0 ], - "commit": "ef1c752679a8f92faa7b4828adbbb300b6942f22", - "sha256": "0z6s80j259xf8nxjxcsmp7wyvpcg5wyx58brlrbwg1aa9hl3fxga" + "commit": "d6369af8228921b5ffa328e671c7446a2733fe43", + "sha256": "0davxbpw2a15n1wcza3qszdvmyzypffz8rdkizlq6xhccdyk0rvd" } }, { @@ -73192,20 +74252,20 @@ "repo": "jessieh/mood-one-theme", "unstable": { "version": [ - 20220613, - 114 + 20221222, + 1214 ], - "commit": "033910aaf1bb41f384d1b5b96d55975d1378a34b", - "sha256": "0ban8p3nnxnds3yscdi4h9v3ni9l0diwd4y9cy52xp0kkl4jxayg" + "commit": "dfbc81900737d3382a340feeed24d2bcd9bdedb0", + "sha256": "0scraadlync08zsn84f66jb1s6jch3pr6asgvfm9cms8fsnfmrbs" }, "stable": { "version": [ 1, 2, - 1 + 2 ], - "commit": "42e402a89473458f55a71c5bbe785575e9a927ba", - "sha256": "1ma5138src6iglkhd2h8w9k4gqqaxvsngz08cd4v2s8dhqkcayw8" + "commit": "dfbc81900737d3382a340feeed24d2bcd9bdedb0", + "sha256": "0scraadlync08zsn84f66jb1s6jch3pr6asgvfm9cms8fsnfmrbs" } }, { @@ -73216,14 +74276,14 @@ "repo": "tarsius/moody", "unstable": { "version": [ - 20220620, - 844 + 20230212, + 2015 ], "deps": [ "compat" ], - "commit": "a798096ee4ccf66ef2aa7016c00c8531bd63d27a", - "sha256": "0xqv6wd7zyka0dn5hrk0rq6ym04qn3sfza7cqr7i4fvpdkxlv7iv" + "commit": "4c7171cbe39adcf2ab1ae5290bdb0ecfd7d669d1", + "sha256": "0kp7inp55xbchwm1s16rwq6a99731yinylv39hds24y6fbc09zpi" }, "stable": { "version": [ @@ -73340,14 +74400,14 @@ "repo": "tarsius/morlock", "unstable": { "version": [ - 20220422, - 1616 + 20230212, + 2015 ], "deps": [ "compat" ], - "commit": "9cb24413291beb1f4204765c77d65e78dcf83a3b", - "sha256": "1qffgvz3dk668907kk6y35q6j1i5qcywjspdfv37qccn51jw8fpr" + "commit": "674354d41bd2bccf0590467851796db6d4595873", + "sha256": "1kwmgvy2w3spqs4bjrh9c3va3yd2j67lgj09i3wyglnic34zjlkp" }, "stable": { "version": [ @@ -73367,8 +74427,8 @@ "repo": "themkat/mos-mode", "unstable": { "version": [ - 20221007, - 1641 + 20221209, + 1353 ], "deps": [ "dap-mode", @@ -73376,8 +74436,8 @@ "ht", "lsp-mode" ], - "commit": "396abaa4afbca895fe27bc0570491fb005fc7693", - "sha256": "02br0xi6cqpj196f581c3gsl1j81wf7gqb2ras7v5f4c1jh3icw0" + "commit": "770f49417e8ad7dbf382c8691f6f689d793b9314", + "sha256": "0g3hk4s3wirrdr2j0hivyqkw0hzbibp62abbwy2q04svr9yyw6dj" } }, { @@ -73412,10 +74472,10 @@ "unstable": { "version": [ 20200808, - 931 + 1353 ], - "commit": "40cfe032281611f69d804006d15bef46f93261b7", - "sha256": "1pb26h8yxq0nknpbdcl1as0igs2ach5kv2i17jclhj0mlqncc74f" + "commit": "90c09da92b30c6497e9141f0edfe7842440c4d53", + "sha256": "0bcqg5p7v6wi3g68c9qpv3rvi9lh6427dd0gmmnwvs1qysz28f1b" }, "stable": { "version": [ @@ -73487,6 +74547,29 @@ "sha256": "1hl7sddhs6wzn3z4h55znbix8n7jl9b85sd1b5s6x5n8wxj28gvz" } }, + { + "ename": "move-mode", + "commit": "d492e6f0532df9c1d5966e1a61160ab8535be4e4", + "sha256": "1krki5spb8r9ajzaawrgz1y8kzfljwvpx9cfhml39izq7yi03kh4", + "fetcher": "github", + "repo": "amnn/move-mode", + "unstable": { + "version": [ + 20221205, + 1433 + ], + "commit": "fa34fbe977d62c8297abc3547b9cfb25802e033c", + "sha256": "1qxnkdvn0d2ybrkwm57wn0k5y1nr6sc82i9n3s2306anyflvn868" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "87aabaac939b69bfd4cd23704e3b67f59c461358", + "sha256": "0sdb783i0rg1fgcs38xxn59z7mzkc43m9cgdx9vzb2ymzzfgg0z9" + } + }, { "ename": "move-text", "commit": "82bfd0f41e42eed1d4c2361ec1d1685edebbac1b", @@ -73519,11 +74602,11 @@ "repo": "retroj/mowedline", "unstable": { "version": [ - 20161122, - 235 + 20171218, + 237 ], - "commit": "bde4de0a4e1404127b0a48897d8cd1d1cb8a263d", - "sha256": "0wwl9f01b9sgs8n19a4i7h08xaf6zdljf2plbdpyy4gzi2iiqcc4" + "commit": "c17501b48ded8261d815ab60bf14cddf7040be72", + "sha256": "1k3b018xq2qqq30v0ik13imy9c84241kyavj5ascxhywx956v18g" }, "stable": { "version": [ @@ -73543,11 +74626,11 @@ "repo": "google/mozc", "unstable": { "version": [ - 20210306, - 1053 + 20221214, + 1435 ], - "commit": "b8dc3b676c0443853bf55c3ab5b73db54132441d", - "sha256": "0d9r2rn64wc53s6jq5nr3fas59bq6vqlnrvm45y4qs4siscw6lm1" + "commit": "cebb883f5d7d8d6dec05c6e2ed4096d0e8ff8c9f", + "sha256": "19i9ab311zk6fa7zbqaaiqkqhlx364d1zgd8zafmh5fqcwrbns7x" }, "stable": { "version": [ @@ -73673,28 +74756,62 @@ "repo": "mpdel/mpdel", "unstable": { "version": [ - 20220706, - 1952 + 20230103, + 1924 ], "deps": [ "libmpdel", "navigel" ], - "commit": "be954f3722d4f28718748eeb5dc859b04d3fefeb", - "sha256": "0aqg6lzih3v9fik370l9q1ans678zng258vnr36f9jj0wayi60z5" + "commit": "365b2661e56165c53eadd28d3e0a5f9d594412c7", + "sha256": "00ajjb9iawva3g7i1y6bz4d4ny3cv5rby6vgkwiy2xkprzxi8900" }, "stable": { "version": [ 2, - 0, + 1, 0 ], "deps": [ "libmpdel", "navigel" ], - "commit": "0a06789e9f74bf6bb23f9097dd8072fb7c545d96", - "sha256": "1wg48z0g6qqsd38r2ydba8dp7cq72cnkzshmhj6900xak6f5ywfd" + "commit": "365b2661e56165c53eadd28d3e0a5f9d594412c7", + "sha256": "00ajjb9iawva3g7i1y6bz4d4ny3cv5rby6vgkwiy2xkprzxi8900" + } + }, + { + "ename": "mpdel-embark", + "commit": "a97575c3154a1b011989f312d085cd8a68b7c09f", + "sha256": "0da3fp3b64abixai1f624lq5l4rz0l7a3d4xmhzsz5ghb8kn1rnz", + "fetcher": "github", + "repo": "mpdel/mpdel-embark", + "unstable": { + "version": [ + 20230103, + 2021 + ], + "deps": [ + "embark", + "libmpdel", + "mpdel" + ], + "commit": "31d91a62b680fb4472ec34c04ac6af80bb3cf4b8", + "sha256": "129ay53zrq4gzqf2vh41q3yp613vzi9b57jlzyl8jnbn0wfbjx65" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "embark", + "libmpdel", + "mpdel" + ], + "commit": "31d91a62b680fb4472ec34c04ac6af80bb3cf4b8", + "sha256": "129ay53zrq4gzqf2vh41q3yp613vzi9b57jlzyl8jnbn0wfbjx65" } }, { @@ -73706,13 +74823,13 @@ "unstable": { "version": [ 20210904, - 35 + 2048 ], "deps": [ "elmpd" ], - "commit": "6694fef890ae3ed4faf6a6bf671f3ef197bcc9c1", - "sha256": "1a7dg0mdcsn3cfclfgjyxdf2xn03bbxwa4y3d790f8mr2qb60vjz" + "commit": "66031a8993a2a704bdfaa9c63ec590dd0c5a2eea", + "sha256": "0n4b1klaf1jwd8bj9gqjy5p9yabgkgj9zai1cmsbnb4174h0719q" }, "stable": { "version": [ @@ -73848,8 +74965,8 @@ }, { "ename": "msvc", - "commit": "69939b85353a23f374cab996ede879ab315a323b", - "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1j88a2nnrqjhq5avs665486l3xp20fc9789zh2izmf3msrxqimns", "fetcher": "github", "repo": "yaruopooner/msvc", "unstable": { @@ -73977,19 +75094,20 @@ "repo": "Alexander-Miller/mu4e-column-faces", "unstable": { "version": [ - 20220704, - 1920 + 20221213, + 2206 ], - "commit": "c5938a4f4ed23cf543f73d24e0a6f53272bdcd4a", - "sha256": "1lzmrryyqmvshcbnf2i3jji97bvp5faxh7kybdv8ks2v2lgnjgl2" + "commit": "1bbb646ea07deb1bd2daa4c6eb36e0f65aac40b0", + "sha256": "12cb37lj8j1fd5kp3gbnzgknb57j5l8xgrnhb60ysff66m1mbrr7" }, "stable": { "version": [ 1, - 0 + 2, + 1 ], - "commit": "2f903099073a863fb9b827d3d10c439237925548", - "sha256": "03szkxv565pdkam60wxcfqv0bcxjbidww53diid6w42b9y8ks54r" + "commit": "1bbb646ea07deb1bd2daa4c6eb36e0f65aac40b0", + "sha256": "12cb37lj8j1fd5kp3gbnzgknb57j5l8xgrnhb60ysff66m1mbrr7" } }, { @@ -74015,14 +75133,14 @@ "repo": "wavexx/mu4e-jump-to-list.el", "unstable": { "version": [ - 20211030, - 2307 + 20221202, + 1023 ], "deps": [ "cl-lib" ], - "commit": "4d362a668be4ae624ee96bf7806b25505b4bdf5c", - "sha256": "0jqnmzaa2vf4gxy9yzrvhijm3s4zaip4qxgxjlb240fr9ray6rgf" + "commit": "cf19684d2333cb0cda7f6b62c7607144baa49310", + "sha256": "02kyqd4ihliahkhirqqy7a8fi7s8haf9csaq95xi2hc9zkbd2nx5" } }, { @@ -74059,14 +75177,14 @@ "url": "https://repo.or.cz/mu4e-marker-icons.git", "unstable": { "version": [ - 20220714, - 1405 + 20230107, + 1504 ], "deps": [ "all-the-icons" ], - "commit": "5e8dab1f07fca183f29e310c208ecb0086ff3222", - "sha256": "1ss36wgxjy3c9gci8xf1wyyl0156cr6p0g395b2rdb9jj1xdk96d" + "commit": "6d6a0b4a7f6bbec34bc58c6704b7c199c8f1a751", + "sha256": "07cc9973ahl2i57grqbr99f82j8191d0hm88hvrwphrmg3fw10kc" } }, { @@ -74140,6 +75258,27 @@ "sha256": "01636rhmgnjz9z81xppqlrlwwg0jcy48k9p3hh865wncp1q2jsb5" } }, + { + "ename": "mu4easy", + "commit": "10f16723cf6565a0ae0284bf178322b6148b8090", + "sha256": "1s20ygmdcxf0kzbj2an557lmcgk5qs9809l7068x9q8920g7hxld", + "fetcher": "github", + "repo": "danielfleischer/mu4easy", + "unstable": { + "version": [ + 20230207, + 2042 + ], + "deps": [ + "helm-mu", + "mu4e-alert", + "mu4e-column-faces", + "org-msg" + ], + "commit": "34565ddb9fc74675b28ce19694485cf2e91eba20", + "sha256": "134w5sgzicbn1ycf0dq1v4g4ph6jygzqvvgniygy6rgw1gs1gmx7" + } + }, { "ename": "muban", "commit": "167ddaca39085bd570bb9392408ae31e58509793", @@ -74416,14 +75555,14 @@ "repo": "magnars/multiple-cursors.el", "unstable": { "version": [ - 20220821, - 932 + 20230113, + 835 ], "deps": [ "cl-lib" ], - "commit": "1e4842d1297241a5277bfd5c7bfab9e8711da60a", - "sha256": "0qrkgbihbax422x0y0hhdx9aflplp4cbc089ry3dbzyl09s7mwfl" + "commit": "16223efc2d6dece2d43bbccc189d7a4bab6de571", + "sha256": "14girixq6xjipvxdmnnah8fczvs5asb7zv7ng5slrlcrsqi11izx" }, "stable": { "version": [ @@ -74685,19 +75824,19 @@ "repo": "NinjaTrappeur/my-repo-pins", "unstable": { "version": [ - 20221115, - 1729 + 20230120, + 1105 ], - "commit": "e6d7d6c21c53d9120e54d5f68a6277f49acbe3bc", - "sha256": "0a1d5z8ma5b8mjkaiibblcf1x2rnlbr5zc0nxjnhv2lw569iv3ql" + "commit": "e6fe3864e244e6db74b668d24857c04472b2d475", + "sha256": "1r9mw4jbpi4i7lvd0gg5li0ia16s9pcfxl71c8l9qvqp73hvr51b" }, "stable": { "version": [ 0, - 2 + 5 ], - "commit": "3a85c415b2fd6c9146de9de6cc99fe5de629cd07", - "sha256": "1ndn17jqlcgp7k7qwli67i23hvbcvgp0jyj967hfisbd553x9964" + "commit": "e6fe3864e244e6db74b668d24857c04472b2d475", + "sha256": "1r9mw4jbpi4i7lvd0gg5li0ia16s9pcfxl71c8l9qvqp73hvr51b" } }, { @@ -74723,20 +75862,26 @@ "repo": "redguardtoo/mybigword", "unstable": { "version": [ - 20220715, - 615 + 20221219, + 1033 ], - "commit": "6c35dd44369930b039a37f6174617bb6ab93be27", - "sha256": "04kljxzzja1hb2lr45vik8x7v3l32xmbyl5vq85s0p74qmm5pcxi" + "deps": [ + "avy" + ], + "commit": "b070c907455e4edd129d3471f338172a5868cc04", + "sha256": "1l9km7rgidz1ppqrkrnxqzm1c4gjhdp9sxphxv45rqlz9xxllk53" }, "stable": { "version": [ 0, - 1, - 1 + 2, + 4 ], - "commit": "4c1386252444df2ade734e02078069a06f3f0f97", - "sha256": "0gbynsf84dgsg2m6h2m2xj54ph0a7kiz9njd33j4xp7r36d268f8" + "deps": [ + "avy" + ], + "commit": "b070c907455e4edd129d3471f338172a5868cc04", + "sha256": "1l9km7rgidz1ppqrkrnxqzm1c4gjhdp9sxphxv45rqlz9xxllk53" } }, { @@ -74920,11 +76065,11 @@ "repo": "kenranunderscore/emacs-naga-theme", "unstable": { "version": [ - 20221004, - 1251 + 20230215, + 623 ], - "commit": "81ede3eb8f0fb4854ec3a9d2350f98dfd03163d4", - "sha256": "0686qrzwrjinp69hnqn76gdydxk8plgdcc3ymwbbbvzfwb466933" + "commit": "508bf3505e9bf60163b68056b89c084df97b48aa", + "sha256": "0x1n41c8bvi1ynsa9ka8wz7plk0a04c18ynyswcff3shrzayyr7d" } }, { @@ -75054,11 +76199,11 @@ "repo": "Malabarba/Nameless", "unstable": { "version": [ - 20190429, - 1202 + 20230112, + 1259 ], - "commit": "a3a1ce3ec0c5724bcbfe553d831bd4f6b3fe863a", - "sha256": "0pxfn81bc8smik0qksfjbrdjkzy0cbjzbc3ik47zl2i9blmx5krv" + "commit": "e468f3eea4518b9827419611868c897dce20453f", + "sha256": "1cyri78rlv5i9a8ryn4s0s83wd80366nsv2nkp4i6nrsxffkrrkq" }, "stable": { "version": [ @@ -75078,14 +76223,14 @@ "repo": "Malabarba/names", "unstable": { "version": [ - 20180321, - 1155 + 20221227, + 1825 ], "deps": [ "cl-lib" ], - "commit": "d8baba5360e5253938a25d3e005455b6d2d86971", - "sha256": "11wyha2q8y7bzqq3jrzix8n97ywvsibvddrahqcps1a1yqk4hzfz" + "commit": "45a272fae915148d9a74d4cb3c39917b272ee9c3", + "sha256": "1pzf5hkcvcqljl0kymjfg763nn4i5f94ywl1jrr3iwd72nqp0yp0" }, "stable": { "version": [ @@ -75462,8 +76607,8 @@ }, { "ename": "ncl-mode", - "commit": "2eea3936b8a3a7546450d1d7399e0f86d855fefd", - "sha256": "1niy0w24q6q6j7s0l9fcaqai7zz2gg1qlk2s9sxb8j79jc41y47k", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1ddirhz98j55f2c44dprkwkg32n6nmcw6f00ycs7vsbap2nx47yy", "fetcher": "github", "repo": "yyr/ncl-mode", "unstable": { @@ -75522,20 +76667,20 @@ "repo": "babashka/neil", "unstable": { "version": [ - 20220514, - 2039 + 20230217, + 957 ], - "commit": "fbbf920514f8277947ec967d2b5ac5cc081e51aa", - "sha256": "10v7imy28lwakigvqisaf8vpnifw92lsn216893rk5zjk9xlrj9w" + "commit": "abea182499897eda40088d24b647e66099ef94ed", + "sha256": "19gqiynl59n2ni748f3wz212q22hnsx7xvq122hhwha0srdq8nyr" }, "stable": { "version": [ 0, 1, - 47 + 56 ], - "commit": "4515ec26790aa93af6463bca926ad614a1bc94b6", - "sha256": "0nygv1qd7a73z401gpwmkflhm6nhfn61js34f281x8kg7l2lihby" + "commit": "abea182499897eda40088d24b647e66099ef94ed", + "sha256": "19gqiynl59n2ni748f3wz212q22hnsx7xvq122hhwha0srdq8nyr" } }, { @@ -75959,11 +77104,11 @@ "repo": "th994/nikki", "unstable": { "version": [ - 20210227, - 1707 + 20210228, + 428 ], - "commit": "894bb6060018cb523abe43a7d3b2bf5691dda5e8", - "sha256": "1sav5biq26c5xi4bc7n3n3f3a1q16n47pa1nlnmm6jyilv8fh3zi" + "commit": "b2ea20d04a061df88d72bd8dd0412a6e7876458d", + "sha256": "0a4kv2zb6wmacfjsihzr1ac6rsynay30zl2qiyzv21js6wmrwn9c" }, "stable": { "version": [ @@ -76031,26 +77176,26 @@ }, { "ename": "nimbus-theme", - "commit": "fc0e6b456b76e2379c64a86ad844362c58146dc6", - "sha256": "1hy4rc1v5wg7n6nazdq09gadirb0qvn887mmdavwjnnac45xyi18", + "commit": "9801e3d79078edc2210bbf7d8091b3273fb67408", + "sha256": "0b70hjj07dh6hgq0a63y3lp1vx67ihakxbysh9mgsf22v48khbig", "fetcher": "github", - "repo": "m-cat/nimbus-theme", + "repo": "mrcnski/nimbus-theme", "unstable": { "version": [ - 20221003, - 1934 + 20230219, + 1337 ], - "commit": "3afc9b9d5288f4125f19176888f7639c3ae64500", - "sha256": "0fbv3dpm3a50vaprs15zz92x4wygds2q52x8c11xssmnmsydnzy9" + "commit": "b28256c3a3d3d316d09e63a1fdd0817db110c3ce", + "sha256": "11cxg4n95kw1824mcaifgz2w6akhq37cy00xmrz2b94fwpnf3dml" }, "stable": { "version": [ 1, - 1, + 3, 0 ], - "commit": "5ae0bee99d005e62c3b18e793a81405a1a3ca0e5", - "sha256": "15fhim7cj7inc2kyl0xgv18a8p4lygnpkxgbq34nl567y9374vs4" + "commit": "178557148f2e132c79be25429d04c5b89f6535dd", + "sha256": "09lcyxd4nds79m8bpk5pq5p5brb8c6czzvniarn8njzj13lcy2g6" } }, { @@ -76163,24 +77308,28 @@ "repo": "NixOS/nix-mode", "unstable": { "version": [ - 20221109, - 17 + 20230210, + 1540 ], "deps": [ "magit-section", "transient" ], - "commit": "127d76202f10973e5af760fdb7804cc55cf51152", - "sha256": "1vaw5mc551ikgfqrww2v4njh16nxka9jacymga3v1mhzfw5gmqjk" + "commit": "c18a24e9ac569a221e88ba9d74d52c7b02b6eb77", + "sha256": "06prys01afi5f2n9lpasmybwg8v434yi19zm0dm4j59ziiknpn0l" }, "stable": { "version": [ 1, - 4, - 5 + 5, + 0 ], - "commit": "471a90ac96f4c94a717e5138fb0b03a167cfbf26", - "sha256": "1bqlhkxg0faddhvxx909dq46dxdxk4mdyhdpww92dmzgxdpq38sx" + "deps": [ + "magit-section", + "transient" + ], + "commit": "54e5626829168e22126b233e079f04dff3c71b90", + "sha256": "1xvrnpk7cnjm55ja6j7bdnszkzj914gmyzb12r89jh0z25r09crq" } }, { @@ -76460,14 +77609,14 @@ "repo": "emacscollective/no-littering", "unstable": { "version": [ - 20221027, - 346 + 20230212, + 2015 ], "deps": [ "compat" ], - "commit": "cb277b8a84ca5857b607b3ff6132ee3663a57953", - "sha256": "1x6jcsndmlxvj9ncrg2nam5zqvcs0a5jjjm7ij3q929rdn5fl3kc" + "commit": "97bcfebd43965751ec5d3a68f9204a654c791870", + "sha256": "1ni5y086ys4yn09n5i5b5c1byi28jnd64qql5rvbw1dfjc4azxdm" }, "stable": { "version": [ @@ -76826,15 +77975,15 @@ "repo": "tarsius/notmuch-addr", "unstable": { "version": [ - 20220422, - 1618 + 20230212, + 2014 ], "deps": [ "compat", "notmuch" ], - "commit": "d0a91745a4643fab65358d237fb1ef9ee6cff159", - "sha256": "1n99mn9mz4algz5a2cq55rbag7lgknhvbmshfdzjc2rkqlpm5mnn" + "commit": "fc00a3aac925d082b8f263e2a6d64b67535f5731", + "sha256": "18cckfdf3hbb4r33cg8gs1z4b3mpvvzcc42vd769gwfjchs0ws2m" }, "stable": { "version": [ @@ -76916,15 +78065,15 @@ "repo": "tarsius/notmuch-maildir", "unstable": { "version": [ - 20220422, - 1621 + 20230212, + 2014 ], "deps": [ "compat", "notmuch" ], - "commit": "1d2a160acd0f37a2d93909dc057cbf8f853758e8", - "sha256": "1nbb6qw5mrmxgs5nmgjg2gjnsn54dgfld26xwpqvp8pj91hbr70h" + "commit": "0d8f1534691e834f26e1899dd54df2db7f810669", + "sha256": "1x91rz8xf3i72y618ff3h1zizrsjdqv2im1ffmxrs7sq7xn52d58" }, "stable": { "version": [ @@ -76947,15 +78096,15 @@ "repo": "tarsius/notmuch-transient", "unstable": { "version": [ - 20221028, - 1344 + 20230212, + 2014 ], "deps": [ "compat", "notmuch" ], - "commit": "757ee082a2228e70151468f049eee2f14ed1e8d2", - "sha256": "0l3bpqcd10fi7ggalgxak5fy5dx70ag3acbki7w38q9100gzl3rd" + "commit": "9d1fa80be0656e712a3f86079ea0abba0542dd88", + "sha256": "1yy5hxkqjwm3l6nfnl9vky3jly36bagrsqp58yxn9ryz8b18spq9" }, "stable": { "version": [ @@ -77048,14 +78197,14 @@ "unstable": { "version": [ 20220428, - 839 + 927 ], "deps": [ "jest", "transient" ], - "commit": "d0ba171f311e84a5c3e125f982a8d2718e49b662", - "sha256": "1ijm0k2fi57l3f194h84yjxrimp00sxgl282q5ah2i3ry9wj2y4m" + "commit": "6eb0a58274870dd75bf848cf5a916a9f2c6ddae5", + "sha256": "1shl3ixvbfs84cw62dh0xzc0kacpbvrg49qnbkyvk9kn91x6k9c1" }, "stable": { "version": [ @@ -77123,13 +78272,13 @@ "unstable": { "version": [ 20140807, - 1554 + 1557 ], "deps": [ "cider" ], - "commit": "9506238562c2e0c0df744e0d81edff4c74322a7d", - "sha256": "1si5pfczk3iypdx2ydhirznx2hvp6r7sq2hy64gn3mn4r68svlfi" + "commit": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b", + "sha256": "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy" }, "stable": { "version": [ @@ -77832,11 +78981,11 @@ "repo": "mzimmerm/ob-dart", "unstable": { "version": [ - 20170106, - 1624 + 20221201, + 633 ], - "commit": "2e463d83a3fe1c9c86f2040e0d22c06dfa49ecbf", - "sha256": "0qkyyrrgs0yyqzq6ks1xcb8iwm1qfxwan1n8ichmrsbhwsc05jd3" + "commit": "f6d5664d5cc8b15e002f6899f8adedcb10ced5f1", + "sha256": "0zlr12sk2821fsjblhxgj6l5wwrb75w7asdqvc0d92jcjjhjl7r6" } }, { @@ -78163,8 +79312,8 @@ }, { "ename": "ob-ipython", - "commit": "557c36e86844c211f2d2ee097ce51ee9db92ea8b", - "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0f2zxi0wl0d8g2fqr2q3xjypnf1ins750j9pjjjpclsafgm6119q", "fetcher": "github", "repo": "gregsexton/ob-ipython", "unstable": { @@ -78274,14 +79423,14 @@ "repo": "lurk-lang/lurk-emacs", "unstable": { "version": [ - 20221107, - 1338 + 20221122, + 2058 ], "deps": [ "lurk-mode" ], - "commit": "b341ffbf5959bbbc7dd33b35e207ce8b7bfbf565", - "sha256": "1hs4msdqi1m74ypgqrzag49x868i2vxf6wybb6kcc26kb9f36pwp" + "commit": "bd7cf661ccb31bfbfab542018c361bd79064d4f4", + "sha256": "0nrh517q7czfdr637qkv2j5mifd7wrdj0fzkfvbn8pz6s8fj0av1" } }, { @@ -78349,11 +79498,11 @@ "repo": "pinetr2e/ob-napkin", "unstable": { "version": [ - 20200816, - 1245 + 20200817, + 1259 ], - "commit": "a2e7e77706a326c00eb6a441de1e920fba676ee0", - "sha256": "122zwxhxsm08k8c4sgz61299dbdbjlgl0paqxi8vshbl9fqawqfj" + "commit": "7af5e8af08da8455c489909afbd9528a61f570e7", + "sha256": "1rmfxbnl2y6yx1869sm5203k7hch481wh5dq6lik5bj00cf3knc6" }, "stable": { "version": [ @@ -78383,6 +79532,36 @@ "sha256": "0a067svyjlbnj3701mgb26g7sg9yqlh17mz7bx54vlgr6p2ag59a" } }, + { + "ename": "ob-nix", + "commit": "5e5a469f50f4f8099243450333d88722f581d61f", + "sha256": "0didm1mc0pghrh6pnskwls681zafvwdl65irfvwizy87hxpg78c4", + "fetcher": "codeberg", + "repo": "theesm/ob-nix", + "unstable": { + "version": [ + 20221224, + 334 + ], + "commit": "76d71b37fb031f25bd52ff9c98b29292ebe0424e", + "sha256": "1m9xxw8kncbifr3g9spqnp16iqmcfa1rblk01d3rwiricd9agb7n" + } + }, + { + "ename": "ob-p5js", + "commit": "7df9edede9c67c88acbd446742960cd5d75bdd3d", + "sha256": "1iglav8iii01xgv05q35xl82vljqcihfxgxcjcdr52abfbbvsn48", + "fetcher": "github", + "repo": "alejandrogallo/ob-p5js", + "unstable": { + "version": [ + 20230103, + 1356 + ], + "commit": "c9f89c8b588cdb0c021a875b8f9fc91be7e39de8", + "sha256": "0rs8c4dlxawm4sclgrc2bi6z43dhalbac91hgxa7kw6vssfgibbp" + } + }, { "ename": "ob-php", "commit": "efb4e6d8540e6ca38c3aa0997116f5995ba1ea83", @@ -78535,8 +79714,8 @@ }, { "ename": "ob-sagemath", - "commit": "a3c6e6adb1a63534275f9d3d3d0fe0f5e85c549b", - "sha256": "1xb8s4xm9wzfpdlhj5rym2lh4naz3h13v4sjqh71zxw6hy82gba3", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "099crpv8367zhzrm7wxwbwinr9k97ngh6xmhf84zq44l22y5x65n", "fetcher": "github", "repo": "sagemath/ob-sagemath", "unstable": { @@ -78736,15 +79915,15 @@ "repo": "xenodium/ob-swiftui", "unstable": { "version": [ - 20210618, - 856 + 20221231, + 1941 ], "deps": [ "org", "swift-mode" ], - "commit": "31cfe991eb171bb0d2f53cf621be1b9d91573ac3", - "sha256": "1l2n4ijf3sfgj05xzvnb1cd9k24ynh2cg36yj386bq7kadamympc" + "commit": "0b453efeb8310311d7f722a0f2dce41c14d4090e", + "sha256": "0y6yafam7zdhc89c4q76ipb8jmlw9rhvps4zp6l0wppdkyb520yf" } }, { @@ -78950,11 +80129,11 @@ "repo": "ideasman42/emacs-theme-oblivion", "unstable": { "version": [ - 20221029, - 2302 + 20230112, + 636 ], - "commit": "a86b744d3baa4b6888e36d9109675853e0b3b9b8", - "sha256": "0zjzjp3g38kcp0x5imyk09pn4qylzzxrdj6b6h27jiff08jcbi3w" + "commit": "751687dd6163593fca2b21bb06a75ac2597de055", + "sha256": "124zsjcy3bs68gdcwqb0x7qhhz6lk1pvhaq11yskgyik7ig1ydzi" } }, { @@ -78965,8 +80144,8 @@ "repo": "licht1stein/obsidian.el", "unstable": { "version": [ - 20221115, - 1143 + 20221228, + 1142 ], "deps": [ "dash", @@ -78975,14 +80154,14 @@ "s", "yaml" ], - "commit": "95bf7624e26adb29925e4609dd0aeacdb29c5bc5", - "sha256": "17ymp9z735cisb7bjdcmqmhv88n2vhzg3l7708jcj6a588i3sbf3" + "commit": "d9fdc5e2b7ee6602ac99511d670a382c5586f14c", + "sha256": "0h3503m4qygjshzmhijs9agpfgf1xyp412bp77sgpijyspln9mpn" }, "stable": { "version": [ 1, 1, - 9 + 10 ], "deps": [ "dash", @@ -78991,8 +80170,8 @@ "s", "yaml" ], - "commit": "95bf7624e26adb29925e4609dd0aeacdb29c5bc5", - "sha256": "17ymp9z735cisb7bjdcmqmhv88n2vhzg3l7708jcj6a588i3sbf3" + "commit": "d9fdc5e2b7ee6602ac99511d670a382c5586f14c", + "sha256": "0h3503m4qygjshzmhijs9agpfgf1xyp412bp77sgpijyspln9mpn" } }, { @@ -79018,11 +80197,11 @@ "repo": "ocaml-ppx/ocamlformat", "unstable": { "version": [ - 20220707, - 751 + 20220718, + 1147 ], - "commit": "384bdf4327a25a1b47f5b24dfe7d9706750396fc", - "sha256": "0ib0jf4k94qsbll2rwa3h8psg60m4n7dlfy5rvz1afk9mv2vvazv" + "commit": "86938aa4435b251af1a3b081f7fbed90f982cf62", + "sha256": "0y1j5mwwrliy6a78cmpi6j8gw425shghqg9ylyl3qw5fx4b088pp" }, "stable": { "version": [ @@ -79096,8 +80275,8 @@ }, { "ename": "ocodo-svg-modelines", - "commit": "5b9651865f4f8009c9b31fa1e5561de97a5ad8de", - "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1j9cvs9wr71jgg51f8cbx8v5qnwvm8kk6jsgkydi7lwb042xs4vn", "fetcher": "github", "repo": "ocodo/ocodo-svg-modelines", "unstable": { @@ -79209,32 +80388,32 @@ }, { "ename": "oer-reveal", - "commit": "7c4e4d7c68548415413d4ad972b2c804e7d867f8", - "sha256": "04rwyhq500c8wcgfhg2xmb246az9sc6s2y45ichxhvvhvqgxjib3", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0bhcqgq8jv7rxwllpjksibp1zi4wvb2cavgj8gsl1fv6x57w822r", "fetcher": "gitlab", "repo": "oer/oer-reveal", "unstable": { "version": [ - 20221005, - 1718 + 20221229, + 727 ], "deps": [ "org-re-reveal" ], - "commit": "a5a292c5a5f3757e01bdd13bbd57bbf7b55bda0b", - "sha256": "1b3anr0mm9ikk0sjckhm77ih5ahf40wpgjf3n7zax632a70aaq0k" + "commit": "a2dde292e464bfb9b4d8ab470bb9a6a37b5cb6b9", + "sha256": "0nr63m4wka7q48hll0fhq8ijw7dw6g7m80r81xn62yfd7j7mfwk4" }, "stable": { "version": [ 4, - 8, - 0 + 10, + 2 ], "deps": [ "org-re-reveal" ], - "commit": "a5a292c5a5f3757e01bdd13bbd57bbf7b55bda0b", - "sha256": "1b3anr0mm9ikk0sjckhm77ih5ahf40wpgjf3n7zax632a70aaq0k" + "commit": "68c3b97812a638b63e846c788041ec9cda129e53", + "sha256": "0nr63m4wka7q48hll0fhq8ijw7dw6g7m80r81xn62yfd7j7mfwk4" } }, { @@ -79267,14 +80446,14 @@ "repo": "conao3/oj.el", "unstable": { "version": [ - 20200811, - 517 + 20230212, + 148 ], "deps": [ "quickrun" ], - "commit": "2dd65324ac9833e07eaed5fb04acebafc6d5cbd2", - "sha256": "00lxjl1i6kcvj9lym2m59xb5hrx2gcdpvsvq972d8iczp2jmcfxr" + "commit": "6d586cb108c642bc166c64df113e03193f4d1495", + "sha256": "0xjm365zd6jiv3aqa2cknb7b813d6pq854qj73hkffkp6dm0yxih" } }, { @@ -79285,16 +80464,16 @@ "repo": "tarsius/ol-notmuch", "unstable": { "version": [ - 20220428, - 1337 + 20230212, + 2013 ], "deps": [ "compat", "notmuch", "org" ], - "commit": "744399e054ef3a19f66418fdb98ef9ad139cc3b5", - "sha256": "0mxhnh64arm8dlna88ml9x9grm0v4fh1zbk1pfav957fxwx9l9dm" + "commit": "ee3646627e47312a0c6ab0a5f6eba3baf8b20cb6", + "sha256": "0522szjhl61a5sgq1gnv71swnznz72m0dsws0cb061p3n4k4cnmw" }, "stable": { "version": [ @@ -79310,6 +80489,24 @@ "sha256": "1pkb333m1rryhxf26p8661y7w9fnsaarn0qkzys1pyfj09q9rsmj" } }, + { + "ename": "ol-tmsu", + "commit": "0d546d03d27303217a083f1a18f21098d5102387", + "sha256": "0cqb77impg5c51hincl65w72242qw89hjnmv6l8ink0zb4f2rr15", + "fetcher": "github", + "repo": "vifon/tmsu.el", + "unstable": { + "version": [ + 20230207, + 1457 + ], + "deps": [ + "tmsu" + ], + "commit": "9672d193a51f2848696445528de757aa21b2b686", + "sha256": "04xx7kbhfvh0m3ghgs6cngrzsz6dl5a0w3fyfqs1ypvnsgbnpv17" + } + }, { "ename": "olc", "commit": "1e21abd021d72c491ed1503146c51761e18c56c4", @@ -79620,8 +80817,8 @@ }, { "ename": "omtose-phellack-theme", - "commit": "478b1e07ed9010408c12598640ec8d154f9eb18d", - "sha256": "0aj0sw611w13xryn762ws63dfalczxixa5rv3skglmfy9axg3v3b", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0bc7cdxycginrzhimfi5nz9mp78rjdxsz42d340gmqb8h5k6ysp9", "fetcher": "github", "repo": "franksn/omtose-phellack-theme", "unstable": { @@ -79741,8 +80938,8 @@ }, { "ename": "open-in-msvs", - "commit": "09a462fac31a7ceda4ee84a8550ff1db6d11140f", - "sha256": "0cng0brxjdriyhwsbn85pfrgqg56chzk24lvkx91rzgz15fbpnv5", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0q2rscnw9hzlh37i4v2h5f3kpmkdbl6wlrxh7wz13jfn5xdj6420", "fetcher": "github", "repo": "evgeny-panasyuk/open-in-msvs.el", "unstable": { @@ -79822,8 +81019,8 @@ "cl-lib", "request" ], - "commit": "ab75048b1073fb1b1452dabae94ab55e0cfb57c4", - "sha256": "00kh8m23jzwb0wipwjdm2wad08xqrlcg00vzc4vzijgrapz0da3h" + "commit": "c384f67278046fdcd220275fdd212ab85672cbeb", + "sha256": "0gci909a2rbx5i8dyzyrcddwdic7nvpk6y6djvn521yaag4sq87h" }, "stable": { "version": [ @@ -80008,19 +81205,19 @@ "repo": "oantolin/orderless", "unstable": { "version": [ - 20221113, - 1719 + 20230219, + 1648 ], - "commit": "2debd96da6f75703ccbca6d852ad994ce84fa529", - "sha256": "0ppwlp6a105m5ic5k2xgxz4c5wwsq025vhclzgvbnk73lmmg2c0v" + "commit": "e6784026717a8a6a7dcd0bf31fd3414f148c542e", + "sha256": "0rd6ajsjqjbfkxnbfnbpacwwwka5z49l2am54rpk0w49jk8gsidm" }, "stable": { "version": [ - 0, - 7 + 1, + 0 ], - "commit": "92008e762b30cb445a2227e458cbb9a5e1b1d4e8", - "sha256": "0m9nyz80j0qnn14drbgk8vn5yr7sv0z6yiz8w95ahcw2qwlgyjs7" + "commit": "847694e78c12d903d5e3f6cb365a5d3b984db537", + "sha256": "1jmwyici90v82gqjq44n0scrwhmg05pi9yplkn4bpss80c83dxp4" } }, { @@ -80170,30 +81367,30 @@ "repo": "eyeinsky/org-anki", "unstable": { "version": [ - 20220817, - 655 + 20230117, + 727 ], "deps": [ "dash", "promise", "request" ], - "commit": "4ed63cbebb35d7427d92652df209b0450655e5ac", - "sha256": "0zsrvkp4cp65yzqhhx5bzj6bskrjwzvgnsf9nxpf0m0wdcpqxvv6" + "commit": "f10feec7bd70916808a3cd8b4c3e3c7f65764acf", + "sha256": "0k1yhicja53qnnd0498pj6lp06pd47ph0h39qjvgb95w8qzng6nn" }, "stable": { "version": [ - 1, + 3, 0, - 5 + 0 ], "deps": [ "dash", "promise", "request" ], - "commit": "4ed63cbebb35d7427d92652df209b0450655e5ac", - "sha256": "0zsrvkp4cp65yzqhhx5bzj6bskrjwzvgnsf9nxpf0m0wdcpqxvv6" + "commit": "f10feec7bd70916808a3cd8b4c3e3c7f65764acf", + "sha256": "0k1yhicja53qnnd0498pj6lp06pd47ph0h39qjvgb95w8qzng6nn" } }, { @@ -80497,14 +81694,14 @@ "repo": "Kungsgeten/org-brain", "unstable": { "version": [ - 20210706, - 1519 + 20230217, + 1908 ], "deps": [ "org" ], - "commit": "46ca9f766322cff31279ecdf02251ff24a0e9431", - "sha256": "0bj08f5mg9v0xm2awbv1fxv98jj9scvqss6fmw0lzix6s3112z25" + "commit": "2bad7732aae1a3051e2a14de2e30f970bbe43c25", + "sha256": "03g9khz168pl23q3l822ri0h2605nrq6b0vxl5278lmpcwxbqf93" } }, { @@ -80539,14 +81736,29 @@ "repo": "dengste/org-caldav", "unstable": { "version": [ - 20200510, - 2030 + 20230205, + 2235 ], "deps": [ "org" ], - "commit": "8569941a0a5a9393ba51afc8923fd7b77b73fa7a", - "sha256": "05lgxqaffnqaqnzl24frafdkskran88hl2ml05qvyjhs4jjbgw9g" + "commit": "cc1b820773ccab9e3d8f584e96c14cdbb22cdb16", + "sha256": "0ffpnpn4x8g41k3clc5i5jfdxpxr8nyq44pzq5xqwpc8472h0jk8" + } + }, + { + "ename": "org-calibre-notes", + "commit": "5596b73bc4e8a61d90fa8e306d52983d17bab2d9", + "sha256": "0xcpf8c9m6bmshds5xjxg119zz5slpwvvqywsb7r87j4w1yih4gy", + "fetcher": "github", + "repo": "bpanthi977/org-calibre-notes", + "unstable": { + "version": [ + 20221202, + 1657 + ], + "commit": "3120797ecbcb58827b91e3610e65579593d9a402", + "sha256": "0kamfmh2zkamzg72kw51p4cvj7p1bx3k8vk1dssv62r2kq7j349k" } }, { @@ -80566,8 +81778,8 @@ }, { "ename": "org-category-capture", - "commit": "6760daac1ef9d9d7ba07e2fc9668873020f901f1", - "sha256": "0l5n71h9lc8q9k0sb5ghzwb81lah4l1ykc06shfl9zw5lqqvahav", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1sl5kxnvzhd5xzfr75spyk9334n8njd253j653d9xky7ipl2fhdg", "fetcher": "github", "repo": "IvanMalison/org-projectile", "unstable": { @@ -80635,14 +81847,14 @@ "repo": "dfeich/org-clock-convenience", "unstable": { "version": [ - 20220515, - 849 + 20221124, + 2304 ], "deps": [ "org" ], - "commit": "9201db80862d144459f1316d571842f5389a47eb", - "sha256": "010wl014dh8sipfqnyasxy1rq5q726bgxm50v4fyqlqkpc6r07d2" + "commit": "9d21d3a5ba2f8656aa23b8cb557017440f1b74e8", + "sha256": "187mccgv555phchmbn8622l0why6qf7h0scwvncdzc37g8jkpdi2" } }, { @@ -80684,11 +81896,11 @@ "repo": "inickey/org-clock-reminder", "unstable": { "version": [ - 20211010, - 2139 + 20230217, + 728 ], - "commit": "9f9b88348ffbc6628f2286dcb4c064b520d0a638", - "sha256": "1dm1q2adgbdb3q0aqacd9nmqxb1dzsrc5gmz7ap2lf0g02b8nwqa" + "commit": "fd3d2ca9d5ca1a804c0e70193f89f650c69a8dc1", + "sha256": "119ad38hnj4i1wbsp9hkl5sa3s8z17aqly2y5ml37dbfid05w0ps" } }, { @@ -80761,14 +81973,14 @@ "url": "https://repo.or.cz/org-contacts.git", "unstable": { "version": [ - 20220910, - 436 + 20221221, + 431 ], "deps": [ "org" ], - "commit": "217ba04c9d638067a6ccb0829cf1885f54c1d568", - "sha256": "0f0vjdvx0hffj2xvyrya8yfl77djmzmpxdxsx58ym4lmdvwyb6x3" + "commit": "bb4032eb12c20d34555a4e670f28696cf31a7b54", + "sha256": "149s34d4j68f8crp66xmscd22svwkar1a6zifznxlyhvszg0zl27" } }, { @@ -80828,15 +82040,15 @@ "unstable": { "version": [ 20210212, - 139 + 142 ], "deps": [ "dash", "s", "seq" ], - "commit": "bb3e28841ebc4b87a34a642a40662316234601c4", - "sha256": "11x26d4qq04yxncgllvsydaxm67fycbwxa1jmppf7918j8xcc9vw" + "commit": "e6149dcfbb6302d10109dd792fd0ffae7bfe2595", + "sha256": "129zdnz97h6px0yz0f0if4gw96zxmsg24xc8vg51crsazqqz8l3b" }, "stable": { "version": [ @@ -81284,8 +82496,8 @@ "repo": "kidd/org-gcal.el", "unstable": { "version": [ - 20221119, - 0 + 20221212, + 1817 ], "deps": [ "aio", @@ -81296,14 +82508,14 @@ "request", "request-deferred" ], - "commit": "86faad251d3109a900661d40001f214cf51bc635", - "sha256": "1ygl4c6x7h1wlwhh92b75wiqf5hkmi3q5j4q9klvicn2hb1hfgaa" + "commit": "9bb3720525ad1c45823abab8ce910dd1225e7dcd", + "sha256": "0b7i1xc21vsjcvbkakkgzhidnypc5anmb9mdkh9mab09d7kxkbc7" }, "stable": { "version": [ 0, 4, - 0 + 2 ], "deps": [ "aio", @@ -81314,8 +82526,8 @@ "request", "request-deferred" ], - "commit": "86faad251d3109a900661d40001f214cf51bc635", - "sha256": "1ygl4c6x7h1wlwhh92b75wiqf5hkmi3q5j4q9klvicn2hb1hfgaa" + "commit": "3cc48a989ac859a97d25964c28874317a6e1672a", + "sha256": "11whjprc6h7knapjg29wz85mw338mvmyjwcmdai65m25pplxr25i" } }, { @@ -81409,8 +82621,8 @@ "repo": "Trevoke/org-gtd.el", "unstable": { "version": [ - 20220213, - 41 + 20230218, + 1624 ], "deps": [ "f", @@ -81419,14 +82631,14 @@ "org-edna", "transient" ], - "commit": "4e0fcf9a440e463d395f8f37efe8f1e691ed07dc", - "sha256": "0672pcklp743k8fz39hwf1zxb7f1sywdjsm8d8ha8r6h2rjbyl6k" + "commit": "59c0905c8832845a36666f45b04bcc8ba8194f39", + "sha256": "1rpq1dpmgzqrbch6wa8pabbm5mrx9bc2l5zzkvfhdqy9rwankf2k" }, "stable": { "version": [ 2, - 0, - 0 + 3, + 1 ], "deps": [ "f", @@ -81435,8 +82647,23 @@ "org-edna", "transient" ], - "commit": "4e0fcf9a440e463d395f8f37efe8f1e691ed07dc", - "sha256": "0672pcklp743k8fz39hwf1zxb7f1sywdjsm8d8ha8r6h2rjbyl6k" + "commit": "ed8528d70c17471f24f6acb9ffc466fff5bee1d4", + "sha256": "0d9r7ywr0k03s12yj6nmi4n565klmm8l9k2s0rb0p98l3yn9r34x" + } + }, + { + "ename": "org-habit-stats", + "commit": "dd9fbd4b21685225c2dedafd7eee40fa58910cb1", + "sha256": "1qr60hlv4n4wrzri3n9i516lvksg6rrn0vyaa1hqj5fm9vs7al5s", + "fetcher": "github", + "repo": "ml729/org-habit-stats", + "unstable": { + "version": [ + 20230210, + 1859 + ], + "commit": "0e28b1c1ba330d7d07064a7272104f7e793be4ce", + "sha256": "0mybc4vghyicvn1gmnhw9ljny56cbhmyk21mia5q478pin6krscl" } }, { @@ -81526,6 +82753,39 @@ "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq" } }, + { + "ename": "org-incoming", + "commit": "1f63ea5ac2c7ce864172effa33ea8387095f23f4", + "sha256": "05cxa22vj8rm4xy57scwcgkrypjbc0c5zh9127c35pmqzab3wbad", + "fetcher": "github", + "repo": "tinloaf/org-incoming", + "unstable": { + "version": [ + 20230209, + 1509 + ], + "deps": [ + "dash", + "datetime", + "s" + ], + "commit": "5c5a5cc034a0b9ed808e5cbbf4876d489a6c7d28", + "sha256": "0fr1q5i29irxdng3b3r854sap66mhdrccb7i5w6vdkgvqdnp8dwn" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "dash", + "datetime", + "s" + ], + "commit": "0eca164ebc45eb85962eef092f72151e8090d348", + "sha256": "13vdclmjfayhypw4wzzr2yahvrai64i8k9qwiq8zpdqwdc0mi3h2" + } + }, { "ename": "org-index", "commit": "35763febad20f29320d459394f810668db6c3353", @@ -81534,30 +82794,30 @@ "repo": "marcIhm/org-index", "unstable": { "version": [ - 20220801, - 928 + 20230103, + 1720 ], "deps": [ "dash", "org", "s" ], - "commit": "9ca02c4e7a38c788b70a1f5364ab505695335bd3", - "sha256": "0j7c775vx9a25qh3485xlnd3j070cq4d9yyrlq1d6j5r6i5iwhjj" + "commit": "d919b9e2ef8c0f814455b82ffea080e872b89c72", + "sha256": "0191fph92aizhvydx3viswqmq6b2cc7x5wwnwifkgmw05lra5z6s" }, "stable": { "version": [ 7, 4, - 2 + 4 ], "deps": [ "dash", "org", "s" ], - "commit": "7bc78ebf7c1c334e8cc73af44793a7eaffb66a99", - "sha256": "0g1ahvsn50kr79q9bbrmgf78j1wfcibjp0j57qv7kxiqc71s7s19" + "commit": "d919b9e2ef8c0f814455b82ffea080e872b89c72", + "sha256": "0191fph92aizhvydx3viswqmq6b2cc7x5wwnwifkgmw05lra5z6s" } }, { @@ -81620,8 +82880,8 @@ }, { "ename": "org-iv", - "commit": "e7db0c34f0f6fb9c3b9e581a74304cc9a26ed342", - "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", + "commit": "56c38111ad4b7e9f015122ff3151e15cfefff274", + "sha256": "1nphccwfl87yz72vj7xf8g4xn8zp7m9p8a35bi7cjz89hk5whx2b", "fetcher": "github", "repo": "kuangdash/org-iv", "unstable": { @@ -81638,6 +82898,25 @@ "sha256": "0s3fi8sk7jm5vr0fz20fbygm4alhpirv0j20jfi1pab14yhhf34h" } }, + { + "ename": "org-ivy-search", + "commit": "fbc5475f597b5456a35dd864936588b0444f33fa", + "sha256": "0bwbm3cf8dcv49spfq2l8jmgf8szn37ms7vlckj8akgfiii457p4", + "fetcher": "github", + "repo": "beacoder/org-ivy-search", + "unstable": { + "version": [ + 20230203, + 301 + ], + "deps": [ + "ivy", + "org" + ], + "commit": "278e98a4f2103919ede49a77d9b7c5e4ade945a7", + "sha256": "09pvyrggmscpa25vdyszfyf1zi8a4lilizkng5ci66j9pvla36ir" + } + }, { "ename": "org-jira", "commit": "e0a2fae6eecb6b4b36fe97ad99691e2c5456586f", @@ -81680,14 +82959,14 @@ "repo": "bastibe/org-journal", "unstable": { "version": [ - 20220920, - 1514 + 20230109, + 1217 ], "deps": [ "org" ], - "commit": "1ea9e3b672ed384922ede6af96598446f3691873", - "sha256": "0qkdy6vf9pallr21hz9blj1ac08i5q832rz9fr0gajizadf4g3b1" + "commit": "c84f1a771933d662695c20b73832a6415b7d3603", + "sha256": "0djypcb09iwx42mrnwq3nr381qmz0ssavwmsvzmq4rfpdj3gh5ly" }, "stable": { "version": [ @@ -81725,16 +83004,16 @@ "repo": "SqrtMinusOne/org-journal-tags", "unstable": { "version": [ - 20220815, - 1604 + 20230105, + 1937 ], "deps": [ "magit-section", "org-journal", "transient" ], - "commit": "c7db858aef69501b2878a7c2aed4ad0447842b4e", - "sha256": "142wrq9k494aks4lxbq80pkm39nqkbdpfw69mlh33skmwvsfzzsf" + "commit": "dfb3b2d583ceb7ad9fbc8ac23ab6316ae172e9fb", + "sha256": "0nfk2kb0jii0v51al115n9i13dp6mw2964d2plgbxdd7yqwhwkrj" }, "stable": { "version": [ @@ -81827,20 +83106,20 @@ }, { "ename": "org-link-beautify", - "commit": "acd9bcc86c90e507fcd76f16e7ab57d64114f8b4", - "sha256": "1k1rczs3w3cxh9fryd1qr1dnr5v2hhxad1vcyjrqvyqpbm1dqnlh", + "commit": "2cbc9e1af903ffc900be7ec0ed1050ae9ad81011", + "sha256": "1h4ppxc9giii3rg5hvpf2dm4c9w0wwd56ivmqyx0q4b9fi69lswa", "fetcher": "git", "url": "https://repo.or.cz/org-link-beautify.git", "unstable": { "version": [ - 20221117, - 1124 + 20221209, + 420 ], "deps": [ "all-the-icons" ], - "commit": "f4d9c343c75dc0bbda5375d5315cdee8c819a61e", - "sha256": "0vxw5f8fcx6n6gkmzxh0vd0gmpzjaczsa3a9ig1hxz6zw46q1vzi" + "commit": "098684c0fd8b9c9d940122faf96f62f579d98699", + "sha256": "0r0whjkwm5vdaargax7shrx91nvdsw2ma6ims0qd2psrs7x9wnav" } }, { @@ -82080,19 +83359,19 @@ "repo": "minad/org-modern", "unstable": { "version": [ - 20221020, - 749 + 20230215, + 718 ], - "commit": "59b2e3c94756b4e37b2cf7b9f81028c6d4758672", - "sha256": "1n5csrj560crc66iqpfsx60055cgzh817v169s6jqkqzrzdigzvy" + "commit": "42fdbd2d27f5a8652593577a200eeea96555d018", + "sha256": "09i85yfg8knkf3z2yrx2wzj1fqsy8f8hxz184zjdacaj4xygpzj6" }, "stable": { "version": [ 0, - 5 + 8 ], - "commit": "ed9d67d00f26148019acd67b4aac0e26360a33b1", - "sha256": "1gny2p3w6ck5sarv6vap2y1lj6h9qaxbh7r7bzszb9qj8rhapk6q" + "commit": "42fdbd2d27f5a8652593577a200eeea96555d018", + "sha256": "09i85yfg8knkf3z2yrx2wzj1fqsy8f8hxz184zjdacaj4xygpzj6" } }, { @@ -82126,6 +83405,24 @@ "sha256": "1h514knqys20nv9qknxdl5y6rgmyymyr42i07dar8hln9vj0ywqm" } }, + { + "ename": "org-mpv-notes", + "commit": "65be49ab5f7680f4b65b657d62c4de337425484e", + "sha256": "0rd91dc19b38q0s4vgsa0habg1par395b8kwyv4qb1vl64f7zblp", + "fetcher": "github", + "repo": "bpanthi977/org-mpv-notes", + "unstable": { + "version": [ + 20221202, + 1657 + ], + "deps": [ + "mpv" + ], + "commit": "8c123996044cfb87101da6c5f16634188f019cca", + "sha256": "1nr4n74c5l2azgyv3w828g6n8p3bjfrs8s6b37j87v9vscc24mic" + } + }, { "ename": "org-mru-clock", "commit": "b36bf1c1faa4d7e38254416a293e56af96214136", @@ -82134,11 +83431,11 @@ "repo": "unhammer/org-mru-clock", "unstable": { "version": [ - 20220902, - 654 + 20230104, + 1922 ], - "commit": "2d3374a1b758a04f08f75b2a5fe05e99989077c1", - "sha256": "0kcbfs334rkr337kqdds5wpjzs7g1jl36avw6mf4q5iajc8z0pvm" + "commit": "be90bc9084b384d8a728d68f69da09171ca26d3c", + "sha256": "0ssbfq12g85i41p5wp84ii6wd10sjhf96fcvdn16g3vvi2nj8f2h" }, "stable": { "version": [ @@ -82158,14 +83455,14 @@ "repo": "jeremy-compostella/org-msg", "unstable": { "version": [ - 20220809, - 1736 + 20230127, + 520 ], "deps": [ "htmlize" ], - "commit": "e0174324ac37a63ed36869c7632dd7139f1b2419", - "sha256": "1ks5hcadgzaa81ii71flnna8kbchk8x3kf7dz3h31yk95hx3jjf8" + "commit": "7b1dfb96d558f6e5626e96d4f4a5150d55cb7eb2", + "sha256": "0dvq8dg8ga6bx9kd4bk5im87nmwkac6h0pcxyvcm2pk60id8xar7" } }, { @@ -82401,8 +83698,8 @@ }, { "ename": "org-page", - "commit": "80c4f9e9f3e398dd6d230068ae2a42b060bd84cd", - "sha256": "0pf7rjdaiz9y1kr8sc3bb2bz3bzmd4msziya5h4cfkmzx6pq8a3n", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0a3ijqaiw6m8sbf3hpzfnbsgfv8ian71jfqi1a5i22phk8w86zv6", "fetcher": "github", "repo": "emacsorphanage/org-page", "unstable": { @@ -82664,8 +83961,8 @@ }, { "ename": "org-projectile-helm", - "commit": "6760daac1ef9d9d7ba07e2fc9668873020f901f1", - "sha256": "0x79j5yr9wsgzjf1dpp7d4xiji8hgyhr79vb973an5z2r02vnaf4", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1zs3f4g5pn2l1gz1yfbbldm6d8ypzn8581ppgzbw3mvhcxxz23bj", "fetcher": "github", "repo": "IvanMalison/org-projectile", "unstable": { @@ -82728,8 +84025,8 @@ "repo": "alphapapa/org-ql", "unstable": { "version": [ - 20221007, - 2334 + 20221225, + 2351 ], "deps": [ "dash", @@ -82743,8 +84040,8 @@ "transient", "ts" ], - "commit": "5f70636556bffca92d8ef8297ba3002a4ab5b52d", - "sha256": "1fyqsl8ybx3x413p04cywzj0gdwwpidqw1ja2433ij21vvmph1vj" + "commit": "29533525c39e0e243912bb3c807412e4bc3e804e", + "sha256": "01zc2mrlr197r0h2xjgzg88fy74lqbw0hv60jw08ihs0yw7n56y7" }, "stable": { "version": [ @@ -82859,28 +84156,28 @@ "repo": "oer/org-re-reveal", "unstable": { "version": [ - 20221007, - 1714 + 20221228, + 1641 ], "deps": [ "htmlize", "org" ], - "commit": "941aa4b94f4eb13cea23013126e84f335059dead", - "sha256": "1jzr7xlzinhfb0197anbkrr5zrs13f7kyznr5q3zyxdndhg6a53n" + "commit": "91cdd82c47b86990b5eb41fe34446a042194cc83", + "sha256": "1bp3kz2awy2mizs59qsa2yl7wfa0197fklnramzifz6z2zv5kbrx" }, "stable": { "version": [ 3, - 16, - 1 + 17, + 0 ], "deps": [ "htmlize", "org" ], - "commit": "941aa4b94f4eb13cea23013126e84f335059dead", - "sha256": "1jzr7xlzinhfb0197anbkrr5zrs13f7kyznr5q3zyxdndhg6a53n" + "commit": "91cdd82c47b86990b5eb41fe34446a042194cc83", + "sha256": "1bp3kz2awy2mizs59qsa2yl7wfa0197fklnramzifz6z2zv5kbrx" } }, { @@ -82985,31 +84282,34 @@ }, { "ename": "org-recur", - "commit": "cbdf8c9a3c7c289ce13542a12769a7f3d7f53d72", - "sha256": "0qlpwia2dg4l00jahc3si0mi27gv6zlvkbdx0rq37dh61dabgkiq", + "commit": "9801e3d79078edc2210bbf7d8091b3273fb67408", + "sha256": "12rh3qpjdcar2m473fi61i3l4k20sr7iq8p731k9vzm5888dl0sr", "fetcher": "github", - "repo": "m-cat/org-recur", + "repo": "mrcnski/org-recur", "unstable": { "version": [ - 20211007, - 238 + 20230124, + 1532 ], "deps": [ + "dash", "org" ], - "commit": "093c1726ffe4358d60fbb97c1bcf01b785827098", - "sha256": "004g7av1dx3i25lr0r33dd2ch4i9r5mcgjh7gjm6rj6nbyh1gqhb" + "commit": "628099883a63d219f76cd9631cc914fe6ec8a3e3", + "sha256": "0s2n62y3qc72ldzpaq2jz9335h532s566499n346nx21l4qsqdz6" }, "stable": { "version": [ 1, + 3, 3 ], "deps": [ + "dash", "org" ], - "commit": "093c1726ffe4358d60fbb97c1bcf01b785827098", - "sha256": "004g7av1dx3i25lr0r33dd2ch4i9r5mcgjh7gjm6rj6nbyh1gqhb" + "commit": "628099883a63d219f76cd9631cc914fe6ec8a3e3", + "sha256": "0s2n62y3qc72ldzpaq2jz9335h532s566499n346nx21l4qsqdz6" } }, { @@ -83035,8 +84335,8 @@ "repo": "jkitchin/org-ref", "unstable": { "version": [ - 20221015, - 1308 + 20230131, + 1743 ], "deps": [ "avy", @@ -83051,8 +84351,8 @@ "parsebib", "s" ], - "commit": "25fddfc5c4d700cba4600ae114a8c12603ae1649", - "sha256": "01rd5acrn7s5ihqzh1fqzciflj1mhdqcgykqfiwcsrm31kmzwm83" + "commit": "4c691f7b4cafbd9bf8c9608fe9d590f7c4894d67", + "sha256": "01yym610ffmf38vp3m3h9vc00y9gfx46pn83js6zwksq2rf6n96l" }, "stable": { "version": [ @@ -83128,28 +84428,28 @@ "repo": "akirak/org-reverse-datetree", "unstable": { "version": [ - 20221119, - 1134 + 20221203, + 259 ], "deps": [ "dash", "org" ], - "commit": "b6d6b7179019e87b13dfdfeef28037821ed4d01f", - "sha256": "0yibkc1mh8z15lpjws92d71d8vxr6svcbdnlxi9rpr1c108vqqkg" + "commit": "fca95cd22ed29653f3217034c71ec0ab0a7c7734", + "sha256": "15jymjfdsmbcr5l03c605kbi68afcnwandhpgkcn912add9iqczr" }, "stable": { "version": [ 0, 4, - 1 + 2 ], "deps": [ "dash", "org" ], - "commit": "f1fcb0c6391f8e38c94a18f7c2a19124196e4862", - "sha256": "07yv157ci814ndzwrynmys80w5iiq9k43qvv4hajn5x7c467vm97" + "commit": "6e5240f54423a3b98167e2fb7bbe51a1f15b7f75", + "sha256": "09xvkw2h7i702wr4k5zqcd91sc4jwqzawwqsxf13qiwdm4kfxfk8" } }, { @@ -83160,11 +84460,11 @@ "repo": "brabalan/org-review", "unstable": { "version": [ - 20220411, - 1205 + 20230119, + 1706 ], - "commit": "466f7d8f183f226f1e665cf806cb094471903d9c", - "sha256": "122l2n1qz5qps3jphimp1dd743ckbqcvnjdwc5zcdzp9x70yy3nh" + "commit": "77211e40db8a9558b866f5660c7127922b459e6c", + "sha256": "1izm9aj8cqni8sjsxmlk5bbl4nn90476pa339jfxh812v5will1y" } }, { @@ -83199,8 +84499,8 @@ "repo": "org-roam/org-roam", "unstable": { "version": [ - 20220908, - 1625 + 20221231, + 2122 ], "deps": [ "dash", @@ -83209,8 +84509,8 @@ "magit-section", "org" ], - "commit": "d95d25615e69e7cc847641800c1886366336c97e", - "sha256": "0k9wfmjpkzbzsqd4npn8vxs0xch42glnmmh28a55rzkyc2bh8n1r" + "commit": "74422df546a515bc984c2f3d3a681c09d6f43916", + "sha256": "0vhl69y6yk2zzfixjdwr8vxl2k921h0syshk5123r1nm9jp3i1s9" }, "stable": { "version": [ @@ -83237,15 +84537,15 @@ "repo": "org-roam/org-roam-bibtex", "unstable": { "version": [ - 20221104, - 2139 + 20230201, + 1834 ], "deps": [ "bibtex-completion", "org-roam" ], - "commit": "3810ddcd9d69ab27a40d5ba88b553df8db1b4884", - "sha256": "0l22sdq5gg8ih9ir6djd1yfql3yy00c24g2sjyxhswsv83q6j2k8" + "commit": "c87acc2d5685ba2608e2bd1f128e723f1de9d837", + "sha256": "15a9b8b7xqrjyqbddqb05b1fqf2xcwxqfj9hfjvkqzk9rwgz3sir" }, "stable": { "version": [ @@ -83340,11 +84640,11 @@ "repo": "tyler-dodge/org-runbook", "unstable": { "version": [ - 20220512, - 1927 + 20230120, + 140 ], - "commit": "d60aac9519e15fde8b2dc1de08e90856d5e02b42", - "sha256": "0m9j3nmki0cn8i19d8z14f5wc7c353n3j6g9k5fhd85abw5mjphx" + "commit": "be8218d66493c122a60049ff5e6bd41abfaabbd8", + "sha256": "0m0myd3akf61lng518s6i9mgy01g2xrw0lmmina40l2fc8nwzwd6" }, "stable": { "version": [ @@ -83582,15 +84882,15 @@ "repo": "akirak/org-starter", "unstable": { "version": [ - 20201202, - 144 + 20220326, + 1106 ], "deps": [ "org-starter", "swiper" ], - "commit": "9a394099e42dff255ec1609e2b1358d32c7ca4de", - "sha256": "04szyrr7vadwmh4g0qphw5m3wm3cclif1xipddwxf6ygs941x6dm" + "commit": "cd9c5c0402de941299d1c8901f26a8f24d755022", + "sha256": "07z17r2ny9m4cddr87v636vgvcfgv1j5qkvhckms0xnfh9wcs9j3" }, "stable": { "version": [ @@ -83614,11 +84914,11 @@ "repo": "bastibe/org-static-blog", "unstable": { "version": [ - 20221024, - 605 + 20230204, + 1000 ], - "commit": "f830e027986df120be4f199f4f36b8f2948f3247", - "sha256": "1vz9zjwk3m03yvx28p14jx0a075wc2b11xilldsaqvq8srijim16" + "commit": "99ee0c8261267a89708e3a9dd0e0d865e894f96e", + "sha256": "00xcyarsg2pmsr1085yrq75s7n7llc2dinzy8qlgw1xxkxb2b55r" }, "stable": { "version": [ @@ -83704,14 +85004,14 @@ "repo": "integral-dw/org-superstar-mode", "unstable": { "version": [ - 20210915, - 1934 + 20230116, + 1358 ], "deps": [ "org" ], - "commit": "03be6c0a3081c46a59b108deb8479ee24a6d86c0", - "sha256": "0w97xqvbgh57227qq750b8rxlkkdd61j9frz7wc9f9x1mya305j2" + "commit": "29dbbc48ac925f36cc1636b36b4a3ccb3588e17f", + "sha256": "0bk7c1hlkdrfhah18i13yi3819m4wv5b5lwpnyg292b4k25p39nj" }, "stable": { "version": [ @@ -83854,15 +85154,15 @@ "url": "https://repo.or.cz/org-tag-beautify.git", "unstable": { "version": [ - 20221031, - 326 + 20221211, + 941 ], "deps": [ "all-the-icons", "org-pretty-tags" ], - "commit": "1c0600d10e513aebd6a991d0acde9ccea4122909", - "sha256": "1gkc3d6xgaimlxcw3bw2zgyi290z379vlqm0md8lc1jzay7xzls7" + "commit": "5eb75d86c143c1801c71b54fe0da832affc3adc3", + "sha256": "17hq54v6f1b4cbjf9dsxq7f72ls5bal8lmhfjd27kkbhj2h5ky1w" } }, { @@ -83916,8 +85216,8 @@ }, { "ename": "org-tfl", - "commit": "d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf", - "sha256": "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "05rxa0anf1kv2akidjdvdr1kkzah37ji3ywxfxkzvx2dkjb3by1i", "fetcher": "github", "repo": "storax/org-tfl", "unstable": { @@ -84335,11 +85635,11 @@ "repo": "amno1/org-view-mode", "unstable": { "version": [ - 20220218, - 2106 + 20221208, + 327 ], - "commit": "7061ae94d20b6a047f424f35dc3d229824bfd60f", - "sha256": "1vbcx61qrplcmvara8y1nssdkxwzrqln7i5nlba0rl9b4prhwkia" + "commit": "014f96acb7093ffae93c62aabff750e63c3babc5", + "sha256": "1m9jv6nssf2nqkav8nx1748wwc8i5338bc2brxlqajcy4dcz3fbg" } }, { @@ -84351,10 +85651,10 @@ "unstable": { "version": [ 20220929, - 1407 + 1415 ], - "commit": "71d57ca126ccb5441b87aa052903fa6ad59b62f3", - "sha256": "1xl9v42isszx6svdnsnlfs5ksczyzwh14bzh5szkw041gfmy9k0r" + "commit": "afa4b6f8ff274df87eb11f1afd0321084a45a2ab", + "sha256": "125db5gyyc4xyrr0n06ch5rrai3zcxbr3rm3i3b5gyki8wjw0ydk" }, "stable": { "version": [ @@ -84427,16 +85727,16 @@ "repo": "akhramov/org-wild-notifier.el", "unstable": { "version": [ - 20221107, - 1009 + 20230211, + 2354 ], "deps": [ "alert", "async", "dash" ], - "commit": "544df8a78090411479495494f9de724c350649ac", - "sha256": "1xwx3q18kl5za2qzq596v1ibhggnrmn7b3r8sd77c7kffjd8k6ib" + "commit": "4bbf7e90886122b1320ee793a00ef6a27a797c25", + "sha256": "07fnpzsasdvpb30qbg45nby9nnxjr3jyxhdwlywayb55cbmd2b38" }, "stable": { "version": [ @@ -84512,32 +85812,32 @@ }, { "ename": "org-zettelkasten", - "commit": "ed12df24029a4154fe55588f3e8ca0670af3f5f3", - "sha256": "1fhjbg3jjcinnja96fzcsxnjxg0x4vnsw84g1q63c325sv4xv2mw", - "fetcher": "github", - "repo": "ymherklotz/emacs-zettelkasten", + "commit": "e5b341b5faae8c563c2a18010f410f3552b17c39", + "sha256": "023pdv194pfbaslvgjw2j64zsp4hrgh79ldivd0ksadd9alp296c", + "fetcher": "sourcehut", + "repo": "ymherklotz/org-zettelkasten", "unstable": { "version": [ - 20220819, - 2335 + 20230108, + 1326 ], "deps": [ "org" ], - "commit": "c1f3ca9368a43638de7a0e78a0dceaa0f8943c37", - "sha256": "0ii50lxmvgz48knfq42da9w9wpnxk120vkna5sq1f296y6sn9z35" + "commit": "8002c96d94cb89a0f5af03974f6d1eaea45e1e41", + "sha256": "1j9iqpx88gkhc6nb1fvn3ri5qzakfc77q7vvkaagsda2gphabf7i" }, "stable": { "version": [ 0, - 5, + 7, 0 ], "deps": [ "org" ], - "commit": "f470db20ad0a7e591daa73c903524ac267ae7236", - "sha256": "0xjhcc4xsfgp55mr73cv7nhl3a8ccy1khsnsvrwfbxnhxxi40pnr" + "commit": "e8a4d435e1d33344a1be192b6816a67394d91307", + "sha256": "0rx3sv3hg5f9b18nr3yiqd5zbmf778qa0fm2l5nzsgb4zlrhm6vp" } }, { @@ -84548,8 +85848,8 @@ "repo": "org2blog/org2blog", "unstable": { "version": [ - 20221118, - 536 + 20230113, + 309 ], "deps": [ "htmlize", @@ -84558,8 +85858,8 @@ "writegood-mode", "xml-rpc" ], - "commit": "0d435af91c237351f0880536cb3cf21a91041ba4", - "sha256": "1h2i63b7615kdn7d8bfhpn8c5ml17vf9lj7cyz4bhgrd8jdsrm71" + "commit": "1b2c10d1332390750e76a140b8c55f884ae1b3c4", + "sha256": "1yn7kvl5y2ykydkwblp23r50qzwcmkppzkfj2sf2zajdyrrw6qx0" }, "stable": { "version": [ @@ -84716,11 +86016,11 @@ "repo": "kostafey/organic-green-theme", "unstable": { "version": [ - 20201216, - 2240 + 20230121, + 1815 ], - "commit": "0ed99a9c0cf14be0a1f491518821f0e9b7e88b88", - "sha256": "1l70vvyv8walqjk96jgr8047fi0yiqz0lm3r0vh6xrh6phna5mcd" + "commit": "7ca93a1c42bba1bcced181bd8cc34cb57be39537", + "sha256": "1fa27522nb3jqswbii9qsi1csjqw5p6a7lsrylhw2vll8w9v4mma" } }, { @@ -84799,16 +86099,16 @@ "repo": "magit/orgit", "unstable": { "version": [ - 20220425, - 1157 + 20230212, + 2013 ], "deps": [ "compat", "magit", "org" ], - "commit": "6dc4d4bfffd6c11550952203a51346b13e120165", - "sha256": "1xpkwp3qk2jr1rphrcxdmld498prh3cds12y2a9cln27yfg8lkql" + "commit": "fc40397f7b36fa513d41f3119b7430cb236de9dd", + "sha256": "0a2fmhs18d2f3xgksw4z8zf10k35xjz105ccl1h8gj79n0jgnkpf" }, "stable": { "version": [ @@ -84832,8 +86132,8 @@ "repo": "magit/orgit-forge", "unstable": { "version": [ - 20220422, - 1625 + 20230212, + 2013 ], "deps": [ "compat", @@ -84842,8 +86142,8 @@ "org", "orgit" ], - "commit": "0ffae0b325824372e5e6b1451e5e863e170cdef3", - "sha256": "0cbxz5hsyyl8p9zzgi9kinr0x9hjmwdj9fc5flw3c1ir8gwvmcrp" + "commit": "6f424ff3a2df7d9c00c217011949c1367cc15227", + "sha256": "1zym7mnqvh8rs7qpsy1yqjhlpz0xm1f73q18dnfz6r29nkkginx5" }, "stable": { "version": [ @@ -84869,16 +86169,16 @@ "repo": "tarsius/orglink", "unstable": { "version": [ - 20220422, - 1626 + 20230212, + 2213 ], "deps": [ "compat", "org", "seq" ], - "commit": "6b2ac90af9f36e99aa2d4f56ffb237a80341beb8", - "sha256": "0qww8k9s7ra9bcjx7mw8vwm9llib8bcd98kl4nci7m2czmmr6asz" + "commit": "168d46a33476c4c8ce56818faa6183421b16d211", + "sha256": "0iyfn1px0svlr7ng7x6hh0ixyicvgi04jxd4vn6qy1524f9cga56" }, "stable": { "version": [ @@ -84941,19 +86241,20 @@ "repo": "tgbugs/orgstrap", "unstable": { "version": [ - 20220715, - 16 + 20230202, + 235 ], - "commit": "55ee428cd53c8de2a6b2a2ab32eb9f613a4617ec", - "sha256": "1f1r0mgq2bh07b7hj16qfh1s0mmyc2dfczaigjbaw8vhfc8lnvqg" + "commit": "3cf0fec936fc0dc72bd7bd970fa91d445e763af4", + "sha256": "1kljqbwjz102igpygijxnrs0cmiwn1xnyxn7fxqblfb1l7s29dkw" }, "stable": { "version": [ 1, - 5 + 5, + 3 ], - "commit": "55ee428cd53c8de2a6b2a2ab32eb9f613a4617ec", - "sha256": "1f1r0mgq2bh07b7hj16qfh1s0mmyc2dfczaigjbaw8vhfc8lnvqg" + "commit": "3cf0fec936fc0dc72bd7bd970fa91d445e763af4", + "sha256": "1kljqbwjz102igpygijxnrs0cmiwn1xnyxn7fxqblfb1l7s29dkw" } }, { @@ -84964,11 +86265,11 @@ "repo": "tbanel/orgaggregate", "unstable": { "version": [ - 20220928, - 1944 + 20230205, + 836 ], - "commit": "068973339af3714ea015501f0fcc35014f255c1a", - "sha256": "03h0g2pr1yxbvvp7bj0k00p16dp3g5h4jgqjp28d4pllcpfwspmy" + "commit": "4f9fcb4f7380b247d628b899135df23c8fc8b6f1", + "sha256": "1b17c8g3x5k94yn76cl1h40hf9hka3w3cfjyybmcnrm92mg8g1cw" } }, { @@ -84979,11 +86280,26 @@ "repo": "tbanel/orgtblasciiplot", "unstable": { "version": [ - 20200411, - 711 + 20230122, + 816 ], - "commit": "59618630205fc8c0fcc74fb34c4581d9712a5181", - "sha256": "1qx6la70cdxr556d2kna4ra76kdliaqkwm97jahd20nhs2izvpl1" + "commit": "4160128045b271bc1aef3d14dbf0c5b53ae58bd2", + "sha256": "1zhhppk05av94i77s16mrjbbc55gvcsm8sk6l7rdfrsfaislabmw" + } + }, + { + "ename": "orgtbl-fit", + "commit": "0c6b5087c69dbf444ebc6a0f56c44d7943ea673a", + "sha256": "05qhkgjv719cl96a6vhiwmfxjvvd9xs0gzkaczqfrryj76mkpk6c", + "fetcher": "github", + "repo": "tbanel/orgtblfit", + "unstable": { + "version": [ + 20230110, + 1544 + ], + "commit": "5bde4902187b2578dc39ee3a02cd7c84c4470b8a", + "sha256": "0hy6i6m38k3ad2yr22jrr5i3af9v3k0106bilqxklv8jv6i4x284" } }, { @@ -84994,14 +86310,11 @@ "repo": "tbanel/orgtbljoin", "unstable": { "version": [ - 20220928, - 1946 + 20230127, + 2133 ], - "deps": [ - "cl-lib" - ], - "commit": "8ce207b7100dc9cde071099b56cebb87924aaafd", - "sha256": "07mp1kgp9jkajs1lwwzl051gaygi8wqmnkp52pddw4xfcni9i6va" + "commit": "257bd101a142aaad2fc3993f7752fe839d1663e0", + "sha256": "15f8zrzrpl967x7pq5833vclvrpj07n936gyhpslxlpd1shjnwg7" } }, { @@ -85012,11 +86325,11 @@ "repo": "DamienCassou/orgtbl-show-header", "unstable": { "version": [ - 20141023, - 837 + 20141031, + 1547 ], - "commit": "2f13391f56cf94f8fe1dc79d6eccb662198f9b69", - "sha256": "0s3pf18n7vh67am1pjaa22gh645088dbz2rgxixr9avpfyalaycj" + "commit": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f", + "sha256": "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x" }, "stable": { "version": [ @@ -85121,8 +86434,8 @@ }, { "ename": "osa", - "commit": "df18def95ae792387da2e21f1050cfc25af772fb", - "sha256": "1knzkwvdq9wwy2x7kgl1nf0p564247l2y82ms77r0j5vfqhsfd9s", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1kdhrslsjcdndbi1cf4r53zj4imd0zw2a5ishw3xf0x0rfda2b9m", "fetcher": "github", "repo": "atomontage/osa", "unstable": { @@ -85136,8 +86449,8 @@ }, { "ename": "osa-chrome", - "commit": "b9c83566892095706033869da370a12e8eccc590", - "sha256": "1spihfihcd5iblsl1xp19ayk65mn9ik32jlqn2pg15jwhyfmvyfs", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0ha4n12298p9splvvc2j6g9l19wp7mxshhs5y28hwjyfscasxfpw", "fetcher": "github", "repo": "atomontage/osa-chrome", "unstable": { @@ -85160,19 +86473,25 @@ "repo": "minad/osm", "unstable": { "version": [ - 20221021, - 1152 + 20230215, + 720 ], - "commit": "5b24ed076c9998be627c19549d403d5b219b7b28", - "sha256": "1c0wymsrfdjsapwyhkp1a497hw96pkps7j5fkf0rd2sp9c4fln7y" + "deps": [ + "compat" + ], + "commit": "c3fbc813f2e76c71056bf6e28ae3a997f33718d1", + "sha256": "07caffh30sgmcbhxqk3wfpml3310ldvwkqbh19czq7nx4llynixc" }, "stable": { "version": [ 0, - 8 + 10 ], - "commit": "563d9646b1f8df37cefcec5d51d20249eba407da", - "sha256": "039ac364f00slx1dxxgsgfcr4x47v9ymn8arcs0fyhdhw7jnky5j" + "deps": [ + "compat" + ], + "commit": "c3fbc813f2e76c71056bf6e28ae3a997f33718d1", + "sha256": "07caffh30sgmcbhxqk3wfpml3310ldvwkqbh19czq7nx4llynixc" } }, { @@ -85299,8 +86618,8 @@ }, { "ename": "osx-org-clock-menubar", - "commit": "cade09308a6b8c998800f2ad2592ad6ea79f65ca", - "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "018g269qp9qv0ddxdhmmk7p4d5i9c800zg7h0gsvbym7kphqz05m", "fetcher": "github", "repo": "jordonbiondo/osx-org-clock-menubar", "unstable": { @@ -85424,16 +86743,16 @@ "repo": "Titan-C/cardano.el", "unstable": { "version": [ - 20220810, - 1617 + 20221229, + 1731 ], "deps": [ "bech32", "cbor", "dash" ], - "commit": "5e1bf8b8ffa4c75bece7a93feab9858f0e7d676e", - "sha256": "0n2zf8pqaylrjy9w2qdir9hch7zhmrkcxnajnrbjswn1cwk8l2mm" + "commit": "fb7d4deee41816bf6d79004b2301a1275fa87402", + "sha256": "142425jyi4r5brihds514dsjymgw01f4p19pmblp07hsl3g2zhsy" } }, { @@ -85459,14 +86778,14 @@ "repo": "tarsius/outline-minor-faces", "unstable": { "version": [ - 20220720, - 1144 + 20230212, + 2012 ], "deps": [ "compat" ], - "commit": "9cc3fed195e0a1f960a971880287856c148b4861", - "sha256": "1k3nislsc47k7sf24vyv4krj2nldcibxwq0j33bzq5sxg8q2rz8i" + "commit": "2404f29d376fb14f9f38eb09be8f0574f3ca19ac", + "sha256": "1qh5j67cn2cwpjrp5kl80j3qg3by9wq744z5xbc4rn897hz4516n" }, "stable": { "version": [ @@ -86166,20 +87485,20 @@ "repo": "DamienCassou/ox-linuxmag-fr", "unstable": { "version": [ - 20221030, - 716 + 20230215, + 2020 ], - "commit": "32e0bd1f19b4e6b80b88272f7ec00dc34e52c544", - "sha256": "1l4psldwd4jkd6nbh55m78czyicssrnrqdn2gbgqpdxjfvwzw6qn" + "commit": "2c06d5441e9e67c3ce419bc84b1d4612f64ff40b", + "sha256": "0azg5c7q3dl8v8162x9nmanh55f9drfkclmrhawmnjbk0m2sj8la" }, "stable": { "version": [ 0, - 2, + 3, 0 ], - "commit": "32e0bd1f19b4e6b80b88272f7ec00dc34e52c544", - "sha256": "1l4psldwd4jkd6nbh55m78czyicssrnrqdn2gbgqpdxjfvwzw6qn" + "commit": "2c06d5441e9e67c3ce419bc84b1d4612f64ff40b", + "sha256": "0azg5c7q3dl8v8162x9nmanh55f9drfkclmrhawmnjbk0m2sj8la" } }, { @@ -86261,29 +87580,29 @@ "repo": "emacsorphanage/ox-pandoc", "unstable": { "version": [ - 20220705, - 1036 + 20230128, + 1219 ], "deps": [ "dash", "ht", "org" ], - "commit": "1beb7c04d1879d72a2e95aaaa59d7ef4e75b7c9d", - "sha256": "0118kphc2z8j6bf9imivvdsyn96h52vhv5s6y291yd5n5kjppga4" + "commit": "66c32cca4f6047dd7e0f77f10bd565a2d83d4729", + "sha256": "0ciihyhmn32kl2iicr90xrzx5nrlcqniq38qpxq0vj6kxwm2gxg3" }, "stable": { "version": [ - 1, - 150707 + 2, + 0 ], "deps": [ "dash", "ht", "org" ], - "commit": "035f1d60a0139349232c382cfd23a96902b7003d", - "sha256": "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29" + "commit": "824d3707bb51e31249a7550a3e759e5fbb5207e5", + "sha256": "0sh8l18lc2hngbmb1vv99xb8cp4sfy90j9cbf7b09l82jmnlqmk1" } }, { @@ -86312,11 +87631,11 @@ "repo": "0x60df/ox-qmd", "unstable": { "version": [ - 20210826, - 1425 + 20221127, + 702 ], - "commit": "8a6e14416ba8865bb6e254754fefd8570b4ff403", - "sha256": "0sf9v0nzq97k3mv5mp5hkl866bl7cfia0rbkx59yl9g1fslpk218" + "commit": "026e4bd227589b3500294a56c2eca43b3405f992", + "sha256": "0s0wnssc2ky4w7hjp3s4c8acw8c1g6rx356ddzx8ih8f8khl868q" } }, { @@ -86356,14 +87675,14 @@ "repo": "yjwen/org-reveal", "unstable": { "version": [ - 20220627, - 1539 + 20221127, + 814 ], "deps": [ "org" ], - "commit": "8567d2b1118bde343980b878af9a38f14d85ffcd", - "sha256": "0prxa7rijhxha3z4y1vyy7y0pr8wzavj7gq1aqaw42rvlpnbdv84" + "commit": "f55c851bf6aeb1bb2a7f6cf0f2b7bd0e79c4a5a0", + "sha256": "1ck8v9qwk434w4ib9bmlmpqmiv8k1is5bcr5h7pnswgmgma68dka" } }, { @@ -86414,6 +87733,24 @@ "sha256": "0a1gp9s92m7scxdf2sc4dqh6ixyv1x7cf190z5d2lz8yz3aw9hkw" } }, + { + "ename": "ox-rss", + "commit": "0cc83cda4df36ceb9584d02c36392b6c1fcce4d0", + "sha256": "0ngc4v5gg7py623nxl56wm6qrijryvsrbasjgxpn74cx3lblw8m4", + "fetcher": "github", + "repo": "BenedictHW/ox-rss", + "unstable": { + "version": [ + 20230129, + 1538 + ], + "deps": [ + "org" + ], + "commit": "81e2eea65e0654e9022f3f732b6cf9dc942423d1", + "sha256": "076v8bri7zdqpgij7hxsyplpgaay463w6fvrcl5ylcd7nzgq2v83" + } + }, { "ename": "ox-rst", "commit": "85770d6e235217e98dda9d8b9f027a4ba3ebba96", @@ -86459,14 +87796,14 @@ "repo": "lorniu/ox-spectacle", "unstable": { "version": [ - 20181211, - 953 + 20230210, + 113 ], "deps": [ "org" ], - "commit": "9d3ec9a6326289074d8620e97d65e3105307ff51", - "sha256": "1gm8wwpsq10cfppzl104g3x2g9bha1209p2n8mj9azv71b9mszqx" + "commit": "0bca84ff6d3c49e4ca1bf5c3922ed261aafa3635", + "sha256": "1fnyywr4zhnb4wgimz9md0y1p4wlb6g1h4520jlb6yxlcpkng7gl" } }, { @@ -86832,19 +88169,20 @@ "repo": "melpa/package-build", "unstable": { "version": [ - 20221113, - 1600 + 20230212, + 1950 ], - "commit": "9190f3d21b7cd1c0e7c26f4c1cf6b4a07f7ab8fa", - "sha256": "02r5bs5ifm95j0lcdkaqkn77wdwvdmd2f6r6b4b5ynyx3rlp9003" + "commit": "ab5b94e3bf5d011fcf1f81e370af47f98b0749d3", + "sha256": "06x1h793wqbpnkah86b6xhnwvhw2y3xg2nw3r64zhd053cv55msa" }, "stable": { "version": [ - 3, - 2 + 4, + 0, + 0 ], - "commit": "b40825a1ff83fb1adfaa61ea91d99a85bc52ea85", - "sha256": "02ngllr9lilpjsgdpk4628kdp0nwdlrkxj78bvi4jlhnbk4chh1c" + "commit": "0598e92cd61aa5196f78576fac7675bcff4ab217", + "sha256": "165gbrc1h1yj764kn3qq2y1551y04lqnklfa0k87gqgd38q5v985" } }, { @@ -86901,14 +88239,14 @@ "repo": "purcell/package-lint", "unstable": { "version": [ - 20210530, - 319 + 20220212, + 825 ], "deps": [ "package-lint" ], - "commit": "10b6f3aab4f7c014ce339694255cf2c6dfd2bdea", - "sha256": "0ps3v3v4279rbma8fscrpm13dimv2d93hgbq3fqcq4j9kfd25jzq" + "commit": "7a83a138e6546f4c4a9988ba6dddc5339fbe7272", + "sha256": "0srqcrhbdmd39jdsvh8k3nbrkqrl4nlic59dp5bal5vj495j7126" }, "stable": { "version": [ @@ -86999,29 +88337,32 @@ }, { "ename": "packed", - "commit": "ad320d60e2c95881f31628c19ad3b9ece7e3d165", - "sha256": "19bqa1j2g453gk9h0k4pvi1mgpyx9f9rh7ang28sq13hzd9c8mjb", + "commit": "f7cc44a1b339829cf7ee9b0cb4b2f113befd2c0d", + "sha256": "166s0kff4jn38xi1ygcalpqd90y124zscjvf5szqwxyjrrpqhdx8", "fetcher": "github", - "repo": "emacscollective/packed", + "repo": "emacsorphanage/packed", "unstable": { "version": [ - 20220422, - 1626 + 20221130, + 2228 ], "deps": [ "compat" ], - "commit": "2d4ed03032b3ddc008182f48bd3b81dbda0cbefc", - "sha256": "0fchl8gkh8x6mj787gbnclb2y0h6szaw5b0sfbxyydn4pgmm699j" + "commit": "169064f7acfe198cc7dd43d02518b773691e1314", + "sha256": "1y3dbyaxr5smw9zxvy0cgfcg1i3ciq7r40njf8dkra4080ibxdnx" }, "stable": { "version": [ 3, - 0, - 4 + 1, + 0 ], - "commit": "51f22a68e23b87626d162c58a0afbc21ad22f210", - "sha256": "1gpv2vaci0m48fzn0sy7iwl1mnkkqc30bf05jjrqlpn9kpbjyf1p" + "deps": [ + "compat" + ], + "commit": "c0d075fa02424b39bd5a3492167f914b8522f686", + "sha256": "0i2j5yk6xhv4rh3317f241y9llwf4wk18a6a4lkqrvbjpvi9yvn0" } }, { @@ -87306,15 +88647,15 @@ "repo": "joostkremers/pandoc-mode", "unstable": { "version": [ - 20220907, - 2117 + 20221128, + 2034 ], "deps": [ "dash", "hydra" ], - "commit": "0e1a50717599e813e2b872f2af9f40b2272793fd", - "sha256": "1qjwpxjnqnf0pxmsdqwpa7wxs173mivdj4prahjpykknvb0v7z36" + "commit": "8f955abec9c1d75acd9b03389b90a276ec4e2137", + "sha256": "0jpjd3vhwc85vrp050qr7gmxm661m248pv3mndjq5w6z4862annm" }, "stable": { "version": [ @@ -87360,11 +88701,11 @@ "repo": "cadadr/elisp", "unstable": { "version": [ - 20200510, - 5 + 20230124, + 2301 ], - "commit": "3ec6350d77d3e6d67066839513994a5351dd5755", - "sha256": "1lj6y8yms3dl2dwv0xcmlp5sgb7yxiwsfj67lhhnx5a6avmjxc4s" + "commit": "c5c3761b1edbb8afe24425d8610aa368a762ff63", + "sha256": "1s9anxa8p3q1imas29lgfh2jiffmsh4csrmypq2s7sp93d2fwdhl" } }, { @@ -87375,16 +88716,16 @@ "repo": "atgreen/paperless", "unstable": { "version": [ - 20220819, - 226 + 20230204, + 1815 ], "deps": [ "cl-lib", "f", "s" ], - "commit": "f230acbc01588bb2ec99426832099b7fb7bad6c0", - "sha256": "1glxxmm28w7yklr86m743mg068k24hbnvfx6xyb48d3fq568r2d0" + "commit": "e524e31350d74f13319968d24b7326a4a412e105", + "sha256": "1dba7n6ws6f8y5j6qvy8ildjrlz5ahzzpfqcjnvynpycxj54vjs1" } }, { @@ -87425,20 +88766,20 @@ }, { "ename": "parchment-theme", - "commit": "f2302f512053b22e5abbd6a654cf94e4d5c7f5ca", - "sha256": "1dkl1f0zmnkw8xd89m5kd42rk4pg6a6wnm52g4p1b4yqqq27h6zm", - "fetcher": "github", + "commit": "cb6cf7e2af2800ad0e295db6116a63009ba8eea0", + "sha256": "0f2h41rj96779pbfd78j9pcq5byv328j1wdcmhr1khkqhzflvzsg", + "fetcher": "gitlab", "repo": "ajgrf/parchment", "unstable": { "version": [ - 20200910, - 2310 + 20221206, + 1541 ], "deps": [ "autothemer" ], - "commit": "95e8248edbdb01fedc7db4472bcce90d2d872106", - "sha256": "13rcajw03sbddks5wgzznvrz7ibd7m0jx8mcw1amfk97ghs57h7s" + "commit": "07c9887be6e7d94a8546db625c7d62c54d2e5923", + "sha256": "0hr2dmxz7iv2vd7x17ndx4j7hzl52j46x6gnx8m2mnwviipgriq1" }, "stable": { "version": [ @@ -87461,18 +88802,18 @@ "url": "https://mumble.net/~campbell/git/paredit.git", "unstable": { "version": [ - 20220709, - 916 + 20221127, + 1452 ], - "commit": "42500e5d450c88a3b249b548be447577d8549b17", - "sha256": "1phyyqnmdjxyx60k6ngyypgc9bl723sj1s1ws19h2pnpycr3ymhd" + "commit": "d700549d8aad684f1fabcfff565a9ad8b468199b", + "sha256": "0lx0l07psdm4dypvfadgdsx2wsjd7xpsdlagfbr7jr2nbgjkxzy7" }, "stable": { "version": [ - 24 + 26 ], - "commit": "82bb75ceb2ddc272d6618d94874b7fc13181a409", - "sha256": "13wzz5fahbz5svc4ql3ajzzpd1fv0ynwpa5widklbcp5yqncv1vm" + "commit": "72cc1f6055321a53021186b86d2f825167b81478", + "sha256": "1hwl2jhv1fhsdrspfhprq77n763i4zsj350q024ajy0m2kaql6ws" } }, { @@ -87545,14 +88886,14 @@ "repo": "tarsius/paren-face", "unstable": { "version": [ - 20220422, - 1627 + 20230212, + 2012 ], "deps": [ "compat" ], - "commit": "7117d73a4d006be8a1e6730bb167d691e284c78b", - "sha256": "06xx3bx6fv41iz82d60civlvrimnyy08i0498wklvmnjw050b1bm" + "commit": "ff95d3cba363a1a0f60bf3088e8ec3170fe83e85", + "sha256": "14k3r320zkh4kc37pizbdwji37h0sm9vsr1sblf5i1ag35zchy02" }, "stable": { "version": [ @@ -87595,11 +88936,11 @@ "repo": "justinbarclay/parinfer-rust-mode", "unstable": { "version": [ - 20210413, - 2 + 20230204, + 1915 ], - "commit": "c2c1bbec6cc7dad4f546868aa07609b8d58a78f8", - "sha256": "0az4qp118vsqzgsl87wgszzq91qzqkpabifd8qrr2li3sizsn049" + "commit": "332c7f47426f0519dc5c24dda82afdb1aa8b61ee", + "sha256": "12rx37js82lxq80bq2rpzgw8miw7ni0hx9xhxa775c67idyppjzv" }, "stable": { "version": [ @@ -87845,26 +89186,26 @@ "repo": "pjones/passmm", "unstable": { "version": [ - 20210109, - 8 + 20221204, + 1927 ], "deps": [ "password-store" ], - "commit": "d78d1bf4f397180d2256248df589f33aafb4c8b4", - "sha256": "0r2nj2p6kx40lhmsv06xsyylj5b9lqji32rc4ipr1biaai52w2b6" + "commit": "66691e301dff476eaff7c6e817ed9df96d4404c8", + "sha256": "1rk0yrjdkhvqms137rlfryfmlyzkavs2m5qmdx644l7w4v86jd2n" }, "stable": { "version": [ + 1, 0, - 4, - 1 + 0 ], "deps": [ "password-store" ], - "commit": "b25a92048c788a8477cc5ffe14c0c4a4df19d79a", - "sha256": "1jg2rs010fmw10ld0bfl6x7af3v9yqfy9ga5ixmam3qpilc8c4fw" + "commit": "66691e301dff476eaff7c6e817ed9df96d4404c8", + "sha256": "1rk0yrjdkhvqms137rlfryfmlyzkavs2m5qmdx644l7w4v86jd2n" } }, { @@ -87905,16 +89246,15 @@ "repo": "zx2c4/password-store", "unstable": { "version": [ - 20220906, - 1855 + 20221226, + 1528 ], "deps": [ - "auth-source-pass", "s", "with-editor" ], - "commit": "47f8d950c58949733862813f29856480a9e232c7", - "sha256": "01267lb9ixrb3255n536k6klkp2d7gj08n9vzcdczbz5b69ybv18" + "commit": "26d2dae04bb76a87be6960861c10432820cd5d55", + "sha256": "1pkx6pgkkpddxrshzq3x8ilfwqjw9gawnbbskcbssxc88wrpbcjb" }, "stable": { "version": [ @@ -88022,11 +89362,11 @@ "repo": "kiyoka/pastehub", "unstable": { "version": [ - 20140615, - 620 + 20140627, + 1319 ], - "commit": "3cc5dcb87104f3b4320a6d7fa20fa7340e6b7026", - "sha256": "0wbb5689n9k351gf3s9mqr3bi00lpajk0h1k9gx1b2mdbb7lq7xd" + "commit": "37b045c67659c078f1517d0fbd5282dab58dca23", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n" }, "stable": { "version": [ @@ -88279,8 +89619,8 @@ }, { "ename": "pcmpl-git", - "commit": "6a51c16bed8d0a2fecad0ae9580d58cd44cc8930", - "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "078ajwsalirr9xkqfbbbmc5z3fdh9n5jckc6z7r90g899cxwcyzz", "fetcher": "github", "repo": "leoliu/pcmpl-git-el", "unstable": { @@ -88390,11 +89730,11 @@ "repo": "mhayashi1120/Emacs-pcsv", "unstable": { "version": [ - 20150220, - 1131 + 20230207, + 757 ], - "commit": "798e0933f8d0818beb17aebf3b1056bbf74e03d0", - "sha256": "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af" + "commit": "4b5e801d213a460a6cb3cb2997a0a6cd33c7bc58", + "sha256": "160lnkslvmm6dzlb5fxdy7zsjz0pcg6x6lmx43xz95sq99kz679v" }, "stable": { "version": [ @@ -88444,29 +89784,28 @@ "repo": "vedang/pdf-tools", "unstable": { "version": [ - 20221007, - 1404 + 20230117, + 632 ], "deps": [ "let-alist", - "nadvice", "tablist" ], - "commit": "d6980bc3273e1cf1a73feee6bb523d1568405685", - "sha256": "1a0l76k183fmkd7wjw86lf0mwcvkvd0gsyyh3p49z56094srxjar" + "commit": "bc2ba117e8c3196ff9adf0da4fa1e63a8da3d7c8", + "sha256": "1v732z5zrvh4k21m6g35xalfx09ixnnvyk88418nrizc72lx1pvr" }, "stable": { "version": [ + 1, 0, - 91 + 0 ], "deps": [ "let-alist", - "nadvice", "tablist" ], - "commit": "2f5a1b939369657eb56d4cfa4bdf0b5c11aacb1d", - "sha256": "07ixspgn4s1jg66w7m2f3sh43giakz9srhp7rpw389z32g57i1rx" + "commit": "1885cefc24883c220cdd4acafdf1d14f290a6979", + "sha256": "1idazz46zx2q84di4p73770l4bcnai2a03q95psg827ykdnmjwij" } }, { @@ -88525,11 +89864,11 @@ "repo": "ArneBab/pebble-mode", "unstable": { "version": [ - 20221009, - 2113 + 20230123, + 1801 ], - "commit": "b256cebef2911021f0241364b4642357d5efd201", - "sha256": "02hcii6kywn6vxpgkjm0xw6zppq5ra3kds7w34g15abi9xdmkhxh" + "commit": "bcbc76aa89196338f12a8ddfe4486edf83c19c5e", + "sha256": "0djax1yaab8mpjih1ggc1hvvzw7bjwl5bfr2kmixj90scgh9r42b" } }, { @@ -88702,20 +90041,20 @@ "repo": "Fanael/persistent-scratch", "unstable": { "version": [ - 20220620, - 408 + 20230113, + 318 ], - "commit": "92f540e7d310ec2e0b636eff1033cf78f0d9eb40", - "sha256": "1hl4xac1zsvpbibahp54phf1b1srhnm2nh30vzmh96aynnf38vqd" + "commit": "f9c1361ad69073af8133174f9e37b594df9be361", + "sha256": "1bgz6hdxwwi96pgxlxabzq6v7a63xznzd7ifmcdx9571vlbg48cc" }, "stable": { "version": [ 0, 3, - 7 + 8 ], - "commit": "92f540e7d310ec2e0b636eff1033cf78f0d9eb40", - "sha256": "1hl4xac1zsvpbibahp54phf1b1srhnm2nh30vzmh96aynnf38vqd" + "commit": "f9c1361ad69073af8133174f9e37b594df9be361", + "sha256": "1bgz6hdxwwi96pgxlxabzq6v7a63xznzd7ifmcdx9571vlbg48cc" } }, { @@ -88790,11 +90129,11 @@ "repo": "Bad-ptr/persp-mode.el", "unstable": { "version": [ - 20220909, - 836 + 20230110, + 1045 ], - "commit": "67be9feeb02613ea97f0de9eb5b792b193f073bc", - "sha256": "1wwcck650wxmgmc8kxpixfhiqzxk6qkkb1rpz77prbl068d3sl3v" + "commit": "df95ea710e2a72f7a88293b72137acb0ca024d90", + "sha256": "0jf4wsq13bjdr0wdm9jv702xxyhadfglxhvf9f7ahh3g4izjfqyr" }, "stable": { "version": [ @@ -88915,30 +90254,30 @@ "repo": "SqrtMinusOne/perspective-exwm.el", "unstable": { "version": [ - 20220125, - 1939 + 20230218, + 1358 ], "deps": [ "burly", "exwm", "perspective" ], - "commit": "541946caa0359c14c90da58196bec7baed122a46", - "sha256": "0mcrvv9mhg0cfkcp64hkdd9wh9j04hw0d9dz1ghafa4h6hf3azfl" + "commit": "01d51f5c92a30b65e8346582ed1ce6513570bb0a", + "sha256": "06lnmbimjj5kyr0mixjagcv903fbn00wvp63wlni2g8c3bhx1p48" }, "stable": { "version": [ 0, - 1, - 4 + 2, + 0 ], "deps": [ "burly", "exwm", "perspective" ], - "commit": "ebe6f50be216d55ff2aea878aaf4b7c2c1032bdc", - "sha256": "0drjfyfmhil20pv96af8s4w3xzm3pqx095n89r0aqzp2falvrvpw" + "commit": "01d51f5c92a30b65e8346582ed1ce6513570bb0a", + "sha256": "06lnmbimjj5kyr0mixjagcv903fbn00wvp63wlni2g8c3bhx1p48" } }, { @@ -88975,11 +90314,11 @@ "repo": "ksqsf/pest-mode", "unstable": { "version": [ - 20200321, - 504 + 20221231, + 15 ], - "commit": "e71e2f2730e926ee936ff7be15d912de27547e9e", - "sha256": "1rmqw21mlq2dpg3fr6z30hxincmhhw1k1bz61y4hqlqy70zfi20m" + "commit": "8023a92ce59c34dcd1587cbd85ed144f206ddb89", + "sha256": "0hbbwnamhbg295iva3ffp1al7cyjmc7nb2ilh1zqb4kvz6zyqhxj" }, "stable": { "version": [ @@ -89053,19 +90392,19 @@ "repo": "emarsden/pg-el", "unstable": { "version": [ - 20221111, - 756 + 20221210, + 1215 ], - "commit": "3e79c965063bc15d1e2ed9a1c152ba603b84e68a", - "sha256": "1g3qh1xvdri2vp652jzihzvfnn39wbpy79sscaav09lkbc4phgb5" + "commit": "f91d546a35ed3479cdb656b17525285e11565892", + "sha256": "0a38rvl5rwfb77p4xxmjhrs6s67pfkzjfm0pdxvf0b6xh7h404kh" }, "stable": { "version": [ 0, - 16 + 20 ], - "commit": "11f27360086f27936401e1f4b196f73dbd11d880", - "sha256": "1jdnslpgdm16klaga02p33g7c8bjzg164kxz3jd7gs5v9gqa6ppz" + "commit": "f91d546a35ed3479cdb656b17525285e11565892", + "sha256": "0a38rvl5rwfb77p4xxmjhrs6s67pfkzjfm0pdxvf0b6xh7h404kh" } }, { @@ -89085,8 +90424,8 @@ }, { "ename": "ph", - "commit": "f62ca074ca2df780ab32aac50b2b828ee6a9934c", - "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0xrg7d1mqgvv3s0l4biyyccn3bj1khs496rdwih91bazs634g2y4", "fetcher": "github", "repo": "gromnitsky/ph", "unstable": { @@ -89398,8 +90737,8 @@ }, { "ename": "php-eldoc", - "commit": "7af452f42847a947e87edd6aa559f807d08920c1", - "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "14kgydh5vm5kqsigs6z9bnkzjh53syq4a43j9gdkbvsisibjl5iq", "fetcher": "github", "repo": "sabof/php-eldoc", "unstable": { @@ -89419,11 +90758,11 @@ "repo": "emacs-php/php-mode", "unstable": { "version": [ - 20221112, - 1616 + 20230212, + 731 ], - "commit": "d01cfc9cd51706e076bf7e5cbf0cfa7ee885efb4", - "sha256": "13lkzvamr86409whr8as4721gx9xrlfkmxvv941775mryliqk6j6" + "commit": "fb11df8268b7099766264cd53836ef159746adbd", + "sha256": "083nsw65d1zvknxyvwnxw8n8fjc566w940x5lgxz937afy6qxvfq" }, "stable": { "version": [ @@ -89629,8 +90968,8 @@ "repo": "nlamirault/phpunit.el", "unstable": { "version": [ - 20220704, - 1554 + 20230124, + 743 ], "deps": [ "cl-lib", @@ -89638,8 +90977,8 @@ "pkg-info", "s" ], - "commit": "02020d4b3e5ae9fdb82be9203fa6d330adcbc0eb", - "sha256": "14x4cmwc8m787dv49kpaw285109d85zv95dlkcxza8g8f493mdw1" + "commit": "4a36906344c0abc11f48cc08cd8d50a9f46963f8", + "sha256": "03a9brby841kqyjqpyxxxvh60hcqa0ly4yc4flawbvnvm7rm7bv3" }, "stable": { "version": [ @@ -89734,8 +91073,8 @@ }, { "ename": "pig-snippets", - "commit": "a0d7c07d28e2f229b281201a781ebaceed6465ed", - "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1g983r0jj7ziysdsxv94ikdncpagdl16a23xzshlvrx4qyfyl4pn", "fetcher": "github", "repo": "motus/pig-mode", "unstable": { @@ -89803,25 +91142,25 @@ "repo": "davep/pinboard.el", "unstable": { "version": [ - 20200630, - 1544 + 20230101, + 850 ], "deps": [ "cl-lib" ], - "commit": "d426f9d2ebec5f907c8a89d6b38ccbcb13750d4f", - "sha256": "0jganb5ws2qlzyncyhaw1hldqbpxm44ddzzy17hmriy8n5701fyv" + "commit": "112e903b489fed3f71b3165447ba6f21ee5675e6", + "sha256": "0yj5jzv3vdydn0hhdbikjxjfb9kqsqsjgb4524ghxn8nh2r40avm" }, "stable": { "version": [ 1, - 3 + 4 ], "deps": [ "cl-lib" ], - "commit": "7c57f20667ead2bb27ab1d0a03307c28ea728bd9", - "sha256": "0d9z1hr2082sbg4dlmarksh598xd92w7c09xmdjyn1yqm39gsljw" + "commit": "112e903b489fed3f71b3165447ba6f21ee5675e6", + "sha256": "0yj5jzv3vdydn0hhdbikjxjfb9kqsqsjgb4524ghxn8nh2r40avm" } }, { @@ -89895,8 +91234,8 @@ }, { "ename": "pinot", - "commit": "f75cd89811b4bb668c1e7a93246b93fbcf5d9c47", - "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0gw6xzaw60vp89jk035pvl7k13w9anvf371wrpxp49y49bg4qjy1", "fetcher": "github", "repo": "tkf/emacs-pinot-search", "unstable": { @@ -90418,10 +91757,10 @@ }, { "ename": "playerctl", - "commit": "6db0d82c2eef7c5bef5f9f2c15969da4c404b62d", - "sha256": "1pix3hcsg6ymzajiixwcq4v3clvadpkl0rhplkhachv6wmci327x", + "commit": "d866d72f544ca6833b142ec2731afec142952ddc", + "sha256": "0nvd3290lbw8c6r3z5famyl47pzlg3iz7rpndv8hs0mb54q8mpz0", "fetcher": "github", - "repo": "thomasluquet/playerctl.el", + "repo": "thomas-louvigne/playerctl.el", "unstable": { "version": [ 20220714, @@ -90454,15 +91793,15 @@ "repo": "twlz0ne/playonline.el", "unstable": { "version": [ - 20200317, - 642 + 20200318, + 758 ], "deps": [ "dash", "request" ], - "commit": "7f20037688d92e6af67384d99abf7f9671326cd1", - "sha256": "0p2iwd7iq5z4r5i14qq0jki68h0f0skk1bvxigybxx3ckggga5y7" + "commit": "463a94fc01112817d1e6e0209ea85385efcb1329", + "sha256": "14x2x4k7h172l660h1z0j44ar5m08gghxa1yhh5d4sgnzqvx6viz" } }, { @@ -90511,11 +91850,11 @@ "repo": "flexibeast/plisp-mode", "unstable": { "version": [ - 20200427, - 405 + 20221130, + 524 ], - "commit": "59e682d77569b04e9fc80af9c4b05e4a997dbcec", - "sha256": "10v9j7sv5q9ywq8bdj2g1j262ggsy3hwqybn6rnrcim5v1f7a51r" + "commit": "3a0ec9741ae7ca67852022c6fa85519fcb4b69ba", + "sha256": "1lfn6bylpsam2la8r1k0gb3aik1fbbvpln37zc0hmdj3k0w4clci" } }, { @@ -90829,24 +92168,6 @@ "sha256": "1lxfbsixvr0rjcck4h4v000yb0iscvk9fwyw322y2cv2hvgwvkdw" } }, - { - "ename": "poet-client", - "commit": "a0b003773edaa728ed49f0de2ca64a00cb60d13a", - "sha256": "11yj57915ly8j2byp5c395lip73iv1chrzxdlxilhnll1brvmaw0", - "fetcher": "github", - "repo": "wailo/emacs-poet", - "unstable": { - "version": [ - 20190403, - 708 - ], - "deps": [ - "request" - ], - "commit": "38a9635cab4799224153f89ff47cf1b060fb3939", - "sha256": "1h8svmh2pmg822jpag33ahmhpvdc77fbxxn205kx8p3vk362vbvi" - } - }, { "ename": "poet-theme", "commit": "40bbe29dee56f7989d8e87c03f4842e2b191acc3", @@ -90906,8 +92227,8 @@ 20170421, 1632 ], - "commit": "f4126b64567a81e7f22058f09d56c63b2ff06632", - "sha256": "1sbwz9kxvnd5r24q9x6bhcjajjnm2z8q6khgqs4gl4ycs60kn0s6" + "commit": "4cd0f8c8d1296c5c64f708b6a5835e8520c51b68", + "sha256": "1l3mlz51wp729rm6wf72x2fk1fla2n2s1qh8h8z58inipdi2qydp" }, "stable": { "version": [ @@ -91076,15 +92397,15 @@ "repo": "polymode/poly-markdown", "unstable": { "version": [ - 20220117, - 2351 + 20230202, + 1210 ], "deps": [ "markdown-mode", "polymode" ], - "commit": "81d648ce623c05727836dbee5cbd1dfe6fe850f1", - "sha256": "0i28ml09a8c1n8frqa8zrpsv7b1d2fzz2j2hai222wldxs79hqpa" + "commit": "98695eb7ca4ca11dcec71a1cab64903bbf79b4d3", + "sha256": "0x22ablv7qc7h0llqkp6n42cg1nlwlx305ssigijcxbi99dyf3pz" }, "stable": { "version": [ @@ -91384,8 +92705,8 @@ }, { "ename": "pony-mode", - "commit": "a1fd64317610fb6ef5b14e8bf15e727680d5ff09", - "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0yzkin6akmdmwdyjsc65clj40j8m8vwzgzkpcx3i3p2pg0d8nlxh", "fetcher": "github", "repo": "davidmiller/pony-mode", "unstable": { @@ -91526,11 +92847,11 @@ "repo": "karthink/popper", "unstable": { "version": [ - 20220711, - 836 + 20230120, + 751 ], - "commit": "d7560f18350faaee8362aee16481268de3cc6457", - "sha256": "12br7pnn01k7hwbcrx9c0dppp2jly7xhif3jrkg1v7mh8cj6sccs" + "commit": "da70c8296a3b3b69626b11f2d202a38075f00c7b", + "sha256": "02lls6fh0fyxq3hwnwb5kih26q29fgl9g4isq1qk6j7bvv53gb04" }, "stable": { "version": [ @@ -91549,11 +92870,11 @@ "repo": "auto-complete/popup-el", "unstable": { "version": [ - 20220927, - 1610 + 20221231, + 1634 ], - "commit": "20ce6cbd2f06423be35b3b700c698f0e109e880c", - "sha256": "13ww7hld5pa32myj9krr6prmc99s7hnpsw8mw9krpxffykkblj2f" + "commit": "71cede0588c10526f88dd0375bce776ec2eed05e", + "sha256": "07rnncg8x1a2kk158pnqazj3hiqf1rf3bmwlhadajqbfb0vv96hv" }, "stable": { "version": [ @@ -91791,20 +93112,20 @@ "repo": "tumashu/posframe", "unstable": { "version": [ - 20221118, - 614 + 20230212, + 808 ], - "commit": "48b7130ca3b5c98bdb21bf99b64a3536acf2b0eb", - "sha256": "1v8jkrgfkj2a08m82dz7vrlyjw3wrk3nd33wi4c166agssznlmih" + "commit": "06b939cfb06168782fc378043ff35bd7fec203b8", + "sha256": "0c04005k0g0np96prff461nqkmac4l0d4sda42v2jnjh25ylhy81" }, "stable": { "version": [ 1, - 2, - 0 + 3, + 3 ], - "commit": "48b7130ca3b5c98bdb21bf99b64a3536acf2b0eb", - "sha256": "1v8jkrgfkj2a08m82dz7vrlyjw3wrk3nd33wi4c166agssznlmih" + "commit": "06b939cfb06168782fc378043ff35bd7fec203b8", + "sha256": "0c04005k0g0np96prff461nqkmac4l0d4sda42v2jnjh25ylhy81" } }, { @@ -92154,19 +93475,19 @@ "repo": "radian-software/prescient.el", "unstable": { "version": [ - 20221118, - 307 + 20221216, + 112 ], - "commit": "a000de747515aa7e7ad1ea0eab711864a4be0ab5", - "sha256": "1d1d4msmkc0cvd6vva0pfq72i07p0my9wj2s8zvj60pvah620yl0" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" }, "stable": { "version": [ 6, - 0 + 1 ], - "commit": "c28bca2213efd2666b0328c29f2c26e9b603cc9a", - "sha256": "0156sbs4b535mcwm44qjr8lx48svmjvdqh8c8hr6d0l709f27yq3" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" } }, { @@ -92216,8 +93537,8 @@ }, { "ename": "prettier", - "commit": "e9992d6d5ed3bd677976262d8a887e5c0a4f4914", - "sha256": "07zhjbb40jl6xkfdzavqg33z17z8s4nyrv3qjh8c0m3si8abh6zb", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1b6kmx72c19l1z74lbs3k0w4yj20xq8692mc4hnkz0hivwb6f3fy", "fetcher": "github", "repo": "jscheid/prettier.el", "unstable": { @@ -92917,20 +94238,20 @@ "repo": "bbatsov/projectile", "unstable": { "version": [ - 20221118, - 1035 + 20230219, + 647 ], - "commit": "5703797bb2a400e962479e670086aca4241a77b7", - "sha256": "0xm6792q1z90mjmxrp54vw2yh34hzxisdxz5dl5df78ckkgbxsww" + "commit": "fd257811c46f89f53143dd0ccbc134fc9459d6bb", + "sha256": "0rawixwdya1cva40r0ppq8c22ifdlprgyz6nw1a99w3bgny284zn" }, "stable": { "version": [ 2, - 6, + 7, 0 ], - "commit": "e3bae8c91bb69c501dcc2e74f9ea14e89cf0a09c", - "sha256": "0xs52fv4scb6389fzd0mp1qjh695z3b7n7116bb0mn50kjws6447" + "commit": "14beeaee7a77601aee4d4982811f6a27f696403c", + "sha256": "0ybd41iss8vd56qv6czpxqq7a99s4h7i3a2r4khy4rf5blj5zdqi" } }, { @@ -92991,8 +94312,8 @@ "repo": "asok/projectile-rails", "unstable": { "version": [ - 20220403, - 1621 + 20221231, + 1643 ], "deps": [ "dash", @@ -93002,8 +94323,8 @@ "projectile", "rake" ], - "commit": "f7877971cfe266d3d91b3a72012855e12a0112df", - "sha256": "0rlqrrndzlv96siyjcy47rwbd14sfk30rj0pqkv62rdy94m2wxay" + "commit": "701784df7befe17b861f1b53fe9cbc59d0b94b9f", + "sha256": "14lmasn46v4gsqciiqr2dr3xq73y0skdinmjsarlhjd0syw66sk4" }, "stable": { "version": [ @@ -93218,8 +94539,8 @@ }, { "ename": "projmake-mode", - "commit": "df23138073d2416fa6522beca86b7a62eb4d42e3", - "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1hsw13lpnwxdi4h1vwd9inkv6fakx5f5s24hfqk276cnmjf53ms4", "fetcher": "github", "repo": "ericbmerritt/projmake-mode", "unstable": { @@ -93323,11 +94644,11 @@ "repo": "ProofGeneral/PG", "unstable": { "version": [ - 20220930, - 1309 + 20230130, + 1024 ], - "commit": "ef18ee4d6ffa160fe563307561f2cad12e9478b5", - "sha256": "12sy38s3ys1jyvbfrbq9xwhdvvdmhcj3bymnqfvgqlhi7p3frrp8" + "commit": "8416875696cb0c4283e96fe721d343277882ecea", + "sha256": "1wbs3vjiai0k1ywa45yc487d5rhfy360yfd0rprfp4ihc6xx3591" }, "stable": { "version": [ @@ -93394,17 +94715,17 @@ "repo": "ksjogo/proportional", "unstable": { "version": [ - 20200309, - 1556 + 20221205, + 1417 ], - "commit": "0e4537af7ba2bc9dbb449c38350bce012b382f51", - "sha256": "0k4kwmyja5nb6rmbbq71vzxw7nnxr0w8f9vzws14an28niwr4s8p" + "commit": "6b675694292a5dbebb52b6196e8ccee6e3a73042", + "sha256": "098252kjmq2cadz2rnjla9f8636ak8n6qj0axp4l7h4wvf618pzi" } }, { "ename": "prosjekt", - "commit": "6d359ec827573dd8c871c4f23df5d1737f1830e7", - "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0qhg86p7dndj0sm5nys6207hsylrir4yvv1nl85b39gzwxlgq8ni", "fetcher": "github", "repo": "abingham/prosjekt", "unstable": { @@ -93427,19 +94748,43 @@ "repo": "protocolbuffers/protobuf", "unstable": { "version": [ - 20220303, - 1716 + 20230216, + 1713 ], - "commit": "5f632bef3827a1d95d95bce92c5a3a1f903b6679", - "sha256": "1y86rqs7zzzyakc565zgknx9ykfb02yjb9pdzqybp2f7zla50wln" + "commit": "a847a8dc4ba1d99e7ba917146c84438b4de7d085", + "sha256": "0amfrjww7gl8myc60a3srs4h1d72pwlbmp8ra163g7v6ih4nq8gk" }, "stable": { "version": [ - 21, - 9 + 22, + 0 ], - "commit": "90b73ac3f0b10320315c2ca0d03a5a9b095d2f66", - "sha256": "0g904h7z2nb8vx0529zzq3gm0jal9w4l5ch0zl1q9i1g0n3q1dfp" + "commit": "a847a8dc4ba1d99e7ba917146c84438b4de7d085", + "sha256": "0amfrjww7gl8myc60a3srs4h1d72pwlbmp8ra163g7v6ih4nq8gk" + } + }, + { + "ename": "protobuf-ts-mode", + "commit": "ef4f38a4e91870ebfd8fcd4cfaf3463f77ac31e1", + "sha256": "0kpp1sqwbvipwac95gj873w1zvmsrwdcz3qangqz8bck2f48pvv6", + "fetcher": "git", + "url": "https://git.ookami.one/cgit/protobuf-ts-mode", + "unstable": { + "version": [ + 20230207, + 341 + ], + "commit": "3076f25bd5ce05f4a4a5840506c3a5a2c0e839d9", + "sha256": "04zqi7anmwzrsgg5clbvilbmi7hg0m29gyr4cym871q73xgi2vmr" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "3076f25bd5ce05f4a4a5840506c3a5a2c0e839d9", + "sha256": "04zqi7anmwzrsgg5clbvilbmi7hg0m29gyr4cym871q73xgi2vmr" } }, { @@ -93582,15 +94927,15 @@ "repo": "thierryvolpiatto/psession", "unstable": { "version": [ - 20220318, - 1129 + 20230105, + 503 ], "deps": [ "async", "cl-lib" ], - "commit": "328c64804c4c9e15b373c7ba3bc82bfdfb27971a", - "sha256": "1mmn5qmjn77jh0zjfgl6w87yxxq116cb7rj3an0svmaabqsmwpjj" + "commit": "ca5bed69f803aab71851c46b0118b66f58455b8a", + "sha256": "0j2bgcy803qnwbrxqr9f26g593vwzjznnwbsy4r2s7nilgcy3anq" }, "stable": { "version": [ @@ -93681,8 +95026,8 @@ }, { "ename": "ptemplate-templates", - "commit": "3207d42ba3c5d9c2f2e7621934e95ad2755ca1e0", - "sha256": "0i1zipjdcwclrkcs0n7g8n64ggd2lfbndbas6aqpnww4b3kdzdxv", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1cmf8q02532hz0m2zacdkbzvc6mg2qcmhy3kwww0082ck9vwvz95", "fetcher": "github", "repo": "nbfalcon/ptemplate-templates", "unstable": { @@ -93754,14 +95099,14 @@ "repo": "xFA25E/pueue", "unstable": { "version": [ - 20221105, - 1230 + 20230219, + 1558 ], "deps": [ "with-editor" ], - "commit": "5ad6979a0129c7cddc69f71c9084e4356f450fac", - "sha256": "1jcy8gv7zg0hr2p1vcdx0wy2gh6wmrxp6j3g4idsa9sa1kbm6dj0" + "commit": "386e43d46cbf68470d040b422061ac2ba1629749", + "sha256": "0bjshh7k21s14cbbq10ra7dnxw8df8y3447z1icw554jqzmgxm9v" }, "stable": { "version": [ @@ -93808,17 +95153,17 @@ }, { "ename": "pulseaudio-control", - "commit": "7964f226e12c3a27ff856e28f4b030ebf304aea2", - "sha256": "1vdhg85lbdx7sj1xg2vhhfmhrrp5q2x560agnsb0gxi2akp6z9r0", - "fetcher": "github", + "commit": "4fa5695bc55b40eb57ff925ab4af354b789d5224", + "sha256": "0ry55jvf3v7yy9lxwxb37wkn0hhp0kbkcri4vy9vmmf10sv2rx89", + "fetcher": "sourcehut", "repo": "flexibeast/pulseaudio-control", "unstable": { "version": [ - 20220418, - 742 + 20230109, + 246 ], - "commit": "22f54ae7282b37eaec0231a21e60213a5dbc7172", - "sha256": "0y87i8qpf1fvz37zly9srss1y9hpn4jjj8gsikc72c4qs9n0ljv0" + "commit": "34a6114357dbbc6b6720aa013e0f8a48f3739403", + "sha256": "0wm312pqp0i5i6qh6g3nacnnvsrad58927cl2g42gxzrzlb3slv5" } }, { @@ -93883,26 +95228,35 @@ "repo": "AmaiKinono/puni", "unstable": { "version": [ - 20221016, - 427 + 20230214, + 1156 ], - "commit": "af8dfe1f5a3e5c4ba650fd15716ae707f29b33f8", - "sha256": "1pdghwwcx28f056w0v26d21da6l3nwh8nsmw7lf8zrn43b259yas" + "commit": "a39a4ecac7279bed1a150a895bbc80baa7272888", + "sha256": "0z10k70rh1lscrmwvrirngl841sf785r0by6166jx3bbsahw72n4" } }, { - "ename": "punpun-theme", - "commit": "20b2cc78b41a26e434b984943681fea774fd3c50", - "sha256": "10mgyrxz2habhaqyg1g4c5kn13q425j0xpkkdlg10cdfvxfl9d1s", + "ename": "punpun-themes", + "commit": "41af65d99ccf3d366a9fd7c857aba3063d074805", + "sha256": "1hjrcqq80m7045g3s0qxcwqn8c4av6xpv5f3qz3nqkz30cmdcs7c", "fetcher": "git", - "url": "https://depp.brause.cc/punpun-theme.git", + "url": "https://depp.brause.cc/punpun-themes.git", "unstable": { "version": [ - 20210508, - 1635 + 20221121, + 1018 ], - "commit": "7026684cd568cb691af3ced5de14c375fe6f5a1a", - "sha256": "1nwvlp93l5lj259mchd1a2glq3jxd0h1vazsbjqfi07hsg86xjp0" + "commit": "6a7e04de1ad9f7ba9074b7206bffc9241c33349c", + "sha256": "0661rhlh3nbbrjdg118y9nk7kmshb5p0jzgfpnqvqmf7j6p6rpg7" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "6a7e04de1ad9f7ba9074b7206bffc9241c33349c", + "sha256": "0661rhlh3nbbrjdg118y9nk7kmshb5p0jzgfpnqvqmf7j6p6rpg7" } }, { @@ -94067,11 +95421,11 @@ "repo": "ideasman42/emacs-py-autopep8", "unstable": { "version": [ - 20220802, - 1154 + 20230115, + 633 ], - "commit": "4e5a8d5ddd77b45841f0e55d7c5326854f565830", - "sha256": "1k1yvf5n5ygzf170bfb6wjhw3jrk3wsycb9bf39k53p8gzanh435" + "commit": "d0486c22c0a92ad7911714026021fe4ad276b7c9", + "sha256": "1xa25sfdmc6srys0ymhdj07kss4ixnw3sqq5grjix7acifdmrbj9" }, "stable": { "version": [ @@ -94243,6 +95597,26 @@ "sha256": "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11" } }, + { + "ename": "pyconf", + "commit": "835c996cefd39c06768790b33d0a0823765c98ef", + "sha256": "0z0d3dy0vp9gq49qkqj66n0w4zd0ci4y1c0vay4nym4xy8mjz01h", + "fetcher": "github", + "repo": "andcarnivorous/pyconf", + "unstable": { + "version": [ + 20230127, + 2046 + ], + "deps": [ + "pyenv-mode", + "pyvenv", + "transient" + ], + "commit": "f78e7f269210c7d7e06001752d87c8fbfd8b9084", + "sha256": "019c1hcdfr9cnpcag2qyg2lkf1scg1m6aw0nllwn31cwa8mvyyga" + } + }, { "ename": "pycoverage", "commit": "eb0310bbe8427abdcba2b30414ec26475b0b7440", @@ -94266,11 +95640,11 @@ "repo": "statmobile/pydoc", "unstable": { "version": [ - 20220531, - 1457 + 20221222, + 1426 ], - "commit": "c8b667e17bfe3e63221f822c5c4d58c8fb4fea90", - "sha256": "082ar5w28dknaa63mf587vdzr78xlnvh8lbxqq3hk6qa2c72akam" + "commit": "c9d8b5249c1b3814da062ed9976e4137d6e8d869", + "sha256": "1ifyhdcvj25rnrvq78qjma3dg826hpj3x5ic1sydrvj0yb13jhim" }, "stable": { "version": [ @@ -94375,28 +95749,28 @@ "repo": "tumashu/pyim", "unstable": { "version": [ - 20221107, - 41 + 20230201, + 203 ], "deps": [ "async", "xr" ], - "commit": "93fab3c9e8c2490687781d45c1cecead0bd3ecf2", - "sha256": "1rlfic87ibbxd86fj0x4cryhz41yggpzy94p3h9xk8j3y74sab9r" + "commit": "295a95067eb00a1a8506991ef9a67e3b8d3317f5", + "sha256": "1scqkl0l7r2g43fp5yz4ymmwyc3md4sqfk880phj4ax22zgla0ry" }, "stable": { "version": [ 5, - 2, - 8 + 3, + 0 ], "deps": [ "async", "xr" ], - "commit": "93fab3c9e8c2490687781d45c1cecead0bd3ecf2", - "sha256": "1rlfic87ibbxd86fj0x4cryhz41yggpzy94p3h9xk8j3y74sab9r" + "commit": "20b633aab16a31ffd1ca642ebaf329f0ad7c79d7", + "sha256": "1han97zb4jp4b4x52x5wzc6z4ndvq6n84cijlgzc9jqahlas18cn" } }, { @@ -94425,8 +95799,8 @@ }, { "ename": "pyim-cangjiedict", - "commit": "a82ac773bb9bc36727314d1eb5a75610ec9ca694", - "sha256": "0ma99y1ijpdqrmypmj108ny7bfj9ylryav7hj7dnp9gj4b1bhxhh", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0n3qp5i23p6vgahhlhvzmb03sxnfsn0g45jjv4nk4a81np277ddx", "fetcher": "github", "repo": "p1uxtar/pyim-cangjiedict", "unstable": { @@ -94443,8 +95817,8 @@ }, { "ename": "pyim-smzmdict", - "commit": "8bad2e8162f5a44bdbe1117efa31133ae7814489", - "sha256": "104kxd8d2b7rch0pfsdz5w98rskx1sl6fx0lqspcilir9k9my1cc", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1j0cdg13n1nhayaagf4zd1simbsknzk9589i103b1zg5fp2rlryz", "fetcher": "github", "repo": "p1uxtar/pyim-smzmdict", "unstable": { @@ -94479,13 +95853,14 @@ "stable": { "version": [ 0, - 1 + 3, + 0 ], "deps": [ "pyim" ], - "commit": "114489ed97e825ae11a8d09da6e873820cf23106", - "sha256": "187wx418pj4h8p8baf4943v9dsb6mfbn0n19r8xiil1z2cmm4ygc" + "commit": "2766bf0dd8514226cd8aac1ab9402af603b96d06", + "sha256": "1fzzib53b8f0145wih3pbxpngap3xgdqrslgpc7hmm9a0z3v52kn" } }, { @@ -94543,11 +95918,11 @@ "repo": "it-is-wednesday/pyinspect.el", "unstable": { "version": [ - 20221118, - 1014 + 20230216, + 1121 ], - "commit": "a6f9a47327b2465dde106307e5dd8e84cb3321d9", - "sha256": "1lqgv9xbl3fvgkz60rwq7awmzhkpfd70bhl1fbz8v4cl4fhbl1p7" + "commit": "4437dc589d0c1eb0ca80bf0d005ee27d15cf69fc", + "sha256": "1fdgsbd1rz54y18m43dyrpz6ir57p1dqgbnd24sx9zj85mn1z3fa" } }, { @@ -94575,8 +95950,8 @@ }, { "ename": "pynt", - "commit": "fdb297084188a957a46dcd036e65d9d893044bea", - "sha256": "07c0zc68r3pskn3bac3a8x5nrsykl90a1h22865g3i5vil76vvg3", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0dklikclzaxp2d0mq2k9731is6gmv3rzglqs1j3gzj6v7vg2qrfh", "fetcher": "github", "repo": "ebanner/pynt", "unstable": { @@ -94616,15 +95991,15 @@ "repo": "dakra/pyramid.el", "unstable": { "version": [ - 20210427, - 1032 + 20230114, + 1049 ], "deps": [ "pythonic", "tablist" ], - "commit": "66f54f4a9cc9fa81edf768ab433d5b3c5517363c", - "sha256": "0sijy6nk46yw21j49x5n93za2zjzqqrfmjm7dz3z3gj7jknk27i9" + "commit": "c8a8b36725d85664e74f59600fe5d18d06ea907d", + "sha256": "05q9bqxnv2b1d9g7j86pc36mfn8d7x5piz95lc38cqwv492ivrbx" }, "stable": { "version": [ @@ -94659,8 +96034,8 @@ }, { "ename": "pytest-pdb-break", - "commit": "4ed7d5d5e81818dad55edda73fbeca8c5021b932", - "sha256": "0dxn53y9zjlip0bjynjql984wrf39pmg5fsx1qgsrj1bw78xqw26", + "commit": "949da8f16687bad96f53714ccbde895587d439ff", + "sha256": "13kbs1zcnjsp6ysdklwd0l1kby68ripp0cvaz4fvalc3lgy1866q", "fetcher": "github", "repo": "poppyschmo/pytest-pdb-break", "unstable": { @@ -94884,20 +96259,20 @@ "repo": "jdtsmith/python-mls", "unstable": { "version": [ - 20221003, - 1451 + 20230218, + 2131 ], - "commit": "398ba92372cc37bae5d63e4d4c42e65edf7db74b", - "sha256": "0mdlqmdwv6kz8dqlzwv46rwz4qkr53a05kh8wgz5mln1x77rwax7" + "commit": "7d0167ecd71b8a2b9cedc08a490107c36b9ada43", + "sha256": "1z4kgzw3al8mldzm0h697r2dig0fia5kicd5r1fv7j32wmp5qxcf" }, "stable": { "version": [ 0, 1, - 4 + 7 ], - "commit": "398ba92372cc37bae5d63e4d4c42e65edf7db74b", - "sha256": "0mdlqmdwv6kz8dqlzwv46rwz4qkr53a05kh8wgz5mln1x77rwax7" + "commit": "945f19455ae60e9b30910980142f67da91d9f001", + "sha256": "1fmzc5y6994mwd97dbgsmj154q9ci1d6d0w5p6a43hxfmgpnv3w5" } }, { @@ -94908,11 +96283,11 @@ "repo": "python-mode-devs/python-mode", "unstable": { "version": [ - 20221031, - 1030 + 20230209, + 731 ], - "commit": "d0fd742a28e051b99490e48971dafd9766064553", - "sha256": "17jzl1njx420aram9p2kki1f1drwrnr0n6zglc8sv8azli0nxsq4" + "commit": "d00e9ffe3a7c450362d453e00b4adcb826bce464", + "sha256": "0gr7nb350mqdij12mwfvym4ivjm2ml0ckh262w1bb1yk4w6ciqzm" }, "stable": { "version": [ @@ -94998,16 +96373,16 @@ "repo": "wavexx/python-x.el", "unstable": { "version": [ - 20220602, - 2108 + 20230117, + 1408 ], "deps": [ "cl-lib", "folding", "python" ], - "commit": "fef5162af9dfc1225339098ae00e053a2e16b799", - "sha256": "17nyjvbydclp2v2nrmdayxic2mj7j0frksc359ad999r05qq0nv7" + "commit": "744924e7468200f3e8ac7ad60a496ad9d080308e", + "sha256": "127ddg5i31v40calvnd9r4d48my34wnaanaii70mr5jh1w6gw13v" }, "stable": { "version": [ @@ -95085,14 +96460,14 @@ "repo": "nryotaro/pyvenv-auto", "unstable": { "version": [ - 20220315, - 1606 + 20230106, + 415 ], "deps": [ "pyvenv" ], - "commit": "59ece8554bf249f30984c81c103a5704d2fb27bf", - "sha256": "1f599q5bd89k68s0m9mq08a2f3465j00hklnmbyv0cm3j0majwzm" + "commit": "b4365e60e3ba747a5fec8ca909f64fe8c73d8db2", + "sha256": "11js0zkf35vxbbvrxghv4c0i1j4ma6agdfl24qcvchd2wsnmf7mn" } }, { @@ -95103,11 +96478,11 @@ "repo": "psaris/q-mode", "unstable": { "version": [ - 20220306, - 1629 + 20221224, + 2024 ], - "commit": "3eac36d23131088e32057716a3241407fa8dc041", - "sha256": "1wlgkyh8ci03448n5fm0p4z7jkhbrvrd3s8rbxvbdbl6ll1d9x15" + "commit": "e18a7b40e876a5502d9d2d6d16a356295c555fab", + "sha256": "0p5m2hxmf7r9hr00kjhjgpvl2ddk4hwaw9s0m6rlpg9x24bmnzqs" } }, { @@ -95141,11 +96516,11 @@ "repo": "ruediger/qrencode-el", "unstable": { "version": [ - 20211010, - 1334 + 20230129, + 1750 ], - "commit": "76de0de6449031ef5dd3e73ea4ab820e0d58a0e2", - "sha256": "1b7z3nxwrgkw1p7dp6ibsvhvpyl2m881w9yr9qcmdrkf78cqlpvx" + "commit": "449befdf160c62a40961cd97f02bada75ffda5d8", + "sha256": "14fb0jbv3badgvrgav650n4islm3zqwcrfm1djsh06z88a4mc7hz" }, "stable": { "version": [ @@ -95158,10 +96533,10 @@ }, { "ename": "qt-pro-mode", - "commit": "e9af710be77ccde8ffa5f22168d2c8a06b73dd6a", - "sha256": "1k3ph9bqvvg6i6n623qrwdpsffs8w9rv9nihmlggb4w30dwqc9nf", + "commit": "9f7e0dfaed647cdfc77101f1f3ab98293a736cbd", + "sha256": "1w1ydl2dqdvj7hgnm7l426ifdssr59f3vxxdm81jr38w7lqfmwzb", "fetcher": "github", - "repo": "EricCrosson/qt-pro-mode", + "repo": "emacsorphanage/qt-pro-mode", "unstable": { "version": [ 20170604, @@ -95262,11 +96637,11 @@ "repo": "quelpa/quelpa", "unstable": { "version": [ - 20220928, - 919 + 20221220, + 1136 ], - "commit": "37962e3b264795b7a3593109c7f14dbf57d9b77e", - "sha256": "1xdqr73y8lpxhmgp1yrap3bw5pf8lhaw2v3jib1pka6aj40vi2di" + "commit": "79651cd0de497a8db18d79e7598eb01a4eec4f09", + "sha256": "1d5w4yq9ps65i82767h0jqybgpj2m9p3zryb0816d32h0bqyhxk6" }, "stable": { "version": [ @@ -95285,15 +96660,15 @@ "repo": "quelpa/quelpa-leaf", "unstable": { "version": [ - 20220704, - 635 + 20221231, + 1618 ], "deps": [ "leaf", "quelpa" ], - "commit": "dadbc96a3c806e1c2dd7614a44ccffa3ee673568", - "sha256": "08kqbpm9ns60v50viiwicmks960aaya8cw3kg8a0smkj9qlljc8k" + "commit": "296ef97c29d7540316441715b92f6d15430f3579", + "sha256": "1mcl6ziqqw1dh4kdz1ha8llk4yzljg0r5zrspyw6jw9c4dw4dwxg" }, "stable": { "version": [ @@ -95349,11 +96724,11 @@ "repo": "renard/quick-buffer-switch", "unstable": { "version": [ - 20201027, - 2307 + 20221220, + 1142 ], - "commit": "da82555f286588f171eed1de151325bbdd8cbd91", - "sha256": "1d84zk9a42lcxv95z6izvx30vrniccc88fbd5nmjcp58mq5xh2fn" + "commit": "280f67f1a5e02533573b45d585c222c937f11f81", + "sha256": "122wsgx0wrhk3c5jf2pwns11i686l6c1bcqaqb9qixg0d7l1cg2f" } }, { @@ -95428,14 +96803,14 @@ "repo": "emacsorphanage/quickrun", "unstable": { "version": [ - 20221015, - 1114 + 20221215, + 828 ], "deps": [ "ht" ], - "commit": "548b64c3679ff058d80d0080c06d736e25611563", - "sha256": "1nbvp4vwiz3hd962db1gh4c19r4xj0p0rr6jbm34mbnm3bm0lgyz" + "commit": "7a89313c07a21eae9cd69a1a98e2a134d559e04f", + "sha256": "15z8ix2wi452zkh5qz1qlsvq8bnwjw8014k51i6rvw8aczm344lr" }, "stable": { "version": [ @@ -95593,11 +96968,11 @@ "repo": "greghendershott/racket-mode", "unstable": { "version": [ - 20221118, - 1721 + 20230209, + 1424 ], - "commit": "28d19dee861354d92108692dd80d9f18b2db0c46", - "sha256": "08blxg2ibf9nr2m1hhrw9l232a1zly44sw8xrzbznipv6s9388w1" + "commit": "947d9806ee27ef241643f978c7901fd1f9e10c98", + "sha256": "0szcdddfcifawm0b2yvc7rb5w4w1w7znpvi65yg5p2hnwgninqmy" } }, { @@ -95660,11 +97035,11 @@ "repo": "thegeorgeous/railscasts-reloaded-theme", "unstable": { "version": [ - 20190308, - 759 + 20201130, + 903 ], - "commit": "c6a1cf13a164f22b026b0959527c3b98c2b1aa49", - "sha256": "00clkjrp2nfchhznilxjb56bcdv1an50cawnz6747ck22x0ycbfn" + "commit": "1c3850568e60a555d59cbb57bf2b6aa06e99d454", + "sha256": "1z6nyn2galkp9c06n6k431rqm12wla24pa0bmwqjbbhz4jz5dxf2" }, "stable": { "version": [ @@ -96092,8 +97467,8 @@ }, { "ename": "rcirc-alert", - "commit": "735aa2256660efffdaf6ecbd61a3e2818a48327f", - "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "03ysdgfki2yn4cn85kmxrhrrlrzjd9s26p93zh46llghgwa12qrd", "fetcher": "github", "repo": "csantosb/rcirc-alert", "unstable": { @@ -96433,15 +97808,15 @@ "repo": "realgud/realgud-lldb", "unstable": { "version": [ - 20220419, - 2006 + 20230201, + 948 ], "deps": [ "load-relative", "realgud" ], - "commit": "19a2c0a8b228af543338f3a8e51141a9e23484a5", - "sha256": "1yyh945w13qh8isj5p0v8sjwzmvzh330szd2hdy3fgc3d58r7sym" + "commit": "74d442abc8469bb6277702f9c60fa479848009b2", + "sha256": "150p7yk0x4apszvkh6sv9iwjv5amzjvlj9ydk9w46bxfypxr29p1" }, "stable": { "version": [ @@ -96754,13 +98129,13 @@ "unstable": { "version": [ 20210930, - 159 + 207 ], "deps": [ "cl-lib" ], - "commit": "42cad906652a82c8c932b90fa04593702ae6f0ac", - "sha256": "1zrb9hix19363z1z4fvnc79wq4lh6f6q92df6dn7szb12xs4vhq6" + "commit": "94b31f6bf1dab6af942948fec975e37424938a62", + "sha256": "06kx2aykxzj60axsxjvqx2j8z3p19k47i0prbqfg78cjgv7fdwy6" }, "stable": { "version": [ @@ -96802,11 +98177,11 @@ "repo": "ideasman42/emacs-recomplete", "unstable": { "version": [ - 20221017, - 37 + 20230109, + 536 ], - "commit": "44d4e57a2bfb401c282e4a460db755680e896de9", - "sha256": "191mw99sk027jzhp6gn9g4mx6a318bycfyjdmgsdhms21lxjz0j0" + "commit": "837965094aa55bbba9a62f9612e59c5440cbfc71", + "sha256": "1kzfc4c9iibacrlqp1fzm5cgpl0xpxcrsf56hi2g27cgspj9r5ya" } }, { @@ -96893,11 +98268,11 @@ "repo": "ROCKTAKEY/recur", "unstable": { "version": [ - 20211108, - 219 + 20230121, + 1836 ], - "commit": "cac3120451482516b6e4416b47dea9980f145889", - "sha256": "1pawb3gzqc8dafrqzi4c96gpx9qzibfqh0gpx6cm0glpxqir8mag" + "commit": "043b3267125cb9fa273d0f0afee0dda1fc60c507", + "sha256": "1wn4ayb1f186k1h0c4p893gpc3ldlslrj5wh1jqrv1ffqlnn4lw9" }, "stable": { "version": [ @@ -96917,19 +98292,25 @@ "repo": "minad/recursion-indicator", "unstable": { "version": [ - 20221016, - 1015 + 20230215, + 720 ], - "commit": "ba3cc0765af966e8acc27f6606c8918f442e37e9", - "sha256": "1rq2c5jvs0v9z7zvvs6vynchmaxaznw8jw00qbw5y8hq0alifi3g" + "deps": [ + "compat" + ], + "commit": "31b67c17467fd8808efdc9875c9e8115f7b4b534", + "sha256": "1j3q99hlzr6is7w0062mfryqkw3nld3md0qwqgbklzhxngy3vpfi" }, "stable": { "version": [ 0, - 3 + 4 ], - "commit": "ba3cc0765af966e8acc27f6606c8918f442e37e9", - "sha256": "1rq2c5jvs0v9z7zvvs6vynchmaxaznw8jw00qbw5y8hq0alifi3g" + "deps": [ + "compat" + ], + "commit": "31b67c17467fd8808efdc9875c9e8115f7b4b534", + "sha256": "1j3q99hlzr6is7w0062mfryqkw3nld3md0qwqgbklzhxngy3vpfi" } }, { @@ -97361,11 +98742,11 @@ "repo": "DamienCassou/related-files", "unstable": { "version": [ - 20221101, - 1909 + 20221125, + 1824 ], - "commit": "4085ed9c235983e530da24cb1fbe33a5b7928ab3", - "sha256": "1nnhggbxgvl9h5k796kq3ni2jvv61kki68f3yk54s6yc9h2sgn6p" + "commit": "0c2e38d0bb0db45a50a082d3e8362c07fc60a1f2", + "sha256": "0n87x3ilnn7kc607pa5zffrkpbnkv4xa9hlzyx8ga8xj756zk558" }, "stable": { "version": [ @@ -97385,14 +98766,14 @@ "repo": "torgeir/remark-mode.el", "unstable": { "version": [ - 20210504, - 1238 + 20221123, + 2127 ], "deps": [ "markdown-mode" ], - "commit": "9f15285445fdb53e720ffe72f5cf05231d340906", - "sha256": "0mgkcdagj4n47nahsxnk7l1b4v15cbwqaac4fr8809jvis1rfx5g" + "commit": "5a2a702d2af8fd007ae02237d5824356d0c1acc6", + "sha256": "0b6gk1r90m4wrmn0aimlz4xmpk7jnfm38ri80vpikm3alds5wp7d" } }, { @@ -97453,11 +98834,11 @@ "repo": "karthink/repeat-help", "unstable": { "version": [ - 20220718, - 1742 + 20230118, + 24 ], - "commit": "bdc21d9a8846b4adf63dd9317860666da5ade478", - "sha256": "1bvgq9amnawyv3k1vbalvlfw2r2z1yqilwllcsanlrdcz95awcv2" + "commit": "41dea6fba2edd6ac748d0ca7a6da4058290feede", + "sha256": "1lnwb2z8y9cjah545n27j62a5pdksid0rah2bzws9xi8c7dgavkm" } }, { @@ -97682,11 +99063,11 @@ "repo": "tkf/emacs-request", "unstable": { "version": [ - 20221115, - 1450 + 20230127, + 417 ], - "commit": "eb66f05fe37f22228f470882b04a6362683975e1", - "sha256": "0g6n9bajgs7mgw9qlx0kin109br92wfn5py5zby674khxvppxdf8" + "commit": "01e338c335c07e4407239619e57361944a82cb8a", + "sha256": "1arhjsybb1nhq14p06jzbvp25pyp1pddq1ldyq25vj1qrsh81rjq" }, "stable": { "version": [ @@ -97857,11 +99238,11 @@ "repo": "pashky/restclient.el", "unstable": { "version": [ - 20220909, - 1233 + 20221203, + 1808 ], - "commit": "1fb570643b08ba66eb70831b6f874f52546917f1", - "sha256": "0npij1p1yw4p1f1yrx6bl8q18nav5p2xvbp7qhzhn7lb2fdn5jqv" + "commit": "0ba72816f92f3d5906cdf76f418fd0a3ee72809b", + "sha256": "16npyzj4d9qaby1nw8dhs5llqkl2jdy1gmxjayjvn0chkjlidq9x" } }, { @@ -98033,14 +99414,14 @@ "repo": "a13/reverse-im.el", "unstable": { "version": [ - 20221103, - 2351 + 20230125, + 1846 ], "deps": [ "seq" ], - "commit": "542a3f7742d2f7878f1509bd193d137b5bba8e7b", - "sha256": "1j3sca85q5kd9b2h0iyy2pml1md6jx0q36c3y948svdil11hxv92" + "commit": "83c639756357c6b154842997b86e63c583ff8ff4", + "sha256": "08nnm6kvndsvnk7l1zr0zmbc0f6wsrfq284n80m2sxhx428k5jwh" }, "stable": { "version": [ @@ -98066,8 +99447,8 @@ 20141205, 145 ], - "commit": "13d0821a4ec5ece7e6a81f50d2a1a7e7ad21394d", - "sha256": "1sfl0rm4sxjkcjki0hmkkcicr24qr2q7gmficg9bi5q6vlrid1pn" + "commit": "3105c950bcb51c662c79b59ca102ef662c2b0be0", + "sha256": "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h" }, "stable": { "version": [ @@ -98086,11 +99467,11 @@ "repo": "ideasman42/emacs-revert-buffer-all", "unstable": { "version": [ - 20220731, - 2351 + 20230109, + 536 ], - "commit": "c07996fcf3e8f7ee156055327522586f32582ce1", - "sha256": "16288519g1q07rkg8j3kmxv6lssjl04kw7ni4mj44jfgzimm6vn6" + "commit": "08e90d2d75f5d5900ca2a0d2670592bcf2b2d68f", + "sha256": "0yiki0vlxa7xkw19c4gwf5cxl32bhd2nm6ibpfamsh145gq4i8g7" } }, { @@ -98131,23 +99512,20 @@ "repo": "galdor/rfc-mode", "unstable": { "version": [ - 20221013, - 1342 + 20221123, + 1643 ], - "commit": "93208d44516e1f4c6e181ee5d374f2dbd7199d0c", - "sha256": "0rxsmxk3kdlywmyaw2nrq26hqb84l46cj56l1f15b98c3m0pzxzg" + "commit": "53ec006aa6aa4fae9c6c64004692aa3d01b38275", + "sha256": "0qfl774796wpplzsv8ns31472615sb6hh6r7z2mvqhm3i0a5d35z" }, "stable": { "version": [ 1, - 3, + 4, 0 ], - "deps": [ - "helm" - ], - "commit": "02546beecf4c495940885e7b7b911d84b12646ef", - "sha256": "1v52vbs2zbqv62wcgcrqgjcwcdq0w6hdb14nma4yhqldnqi57875" + "commit": "73bb2a18bb34136c9eeddef5f138840872ece752", + "sha256": "1b4wd9ny6rmlw0cr2kvhs0kn33gx0zq4hv6vgr91a9wwj5y33lav" } }, { @@ -98158,15 +99536,15 @@ "repo": "dajva/rg.el", "unstable": { "version": [ - 20221024, - 1631 + 20230201, + 1819 ], "deps": [ "transient", "wgrep" ], - "commit": "3880e8c734c976a2d393aeacf60d510f56d8217d", - "sha256": "10rbfncv2baz28zls0zcqbz5gahbvdi3ixab4cm6gfm13xbgwvf7" + "commit": "e7afc1573922dd6ec8e8ccd178e054ff8c99e5bf", + "sha256": "0cng9kra880gma19jl9c8wwrsz94qcha7ymjrw279zq3244750j1" }, "stable": { "version": [ @@ -98386,8 +99764,8 @@ "repo": "DogLooksGood/emacs-rime", "unstable": { "version": [ - 20221112, - 1341 + 20230212, + 1425 ], "deps": [ "cl-lib", @@ -98395,8 +99773,8 @@ "popup", "posframe" ], - "commit": "74f3dff40e66c65388a9471eecbc1d9aca5612f7", - "sha256": "1bqhn6pvsgs1x882q7y5p372aify2jmyfmgmx99nzakxbfkb0yqp" + "commit": "6438abacace7d94f05fabc45b82d619677fc5fca", + "sha256": "0fyv92lfz7c98l79valrh9wr78b4303bhnqjgycbz33p9m2hply0" }, "stable": { "version": [ @@ -98464,6 +99842,21 @@ "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk" } }, + { + "ename": "ring-mode", + "commit": "7e72e31f9f7ce02c68560e6ce3a0eab27f0897de", + "sha256": "1nhc1zn9rgkpz0z076b1r45d7mvxp7layc9jbq1qlj7vj0w8gr4d", + "fetcher": "github", + "repo": "thechampagne/ring-mode", + "unstable": { + "version": [ + 20221226, + 1159 + ], + "commit": "4e38dd5ca374d7d40fd1eeed1e83ef935efd387a", + "sha256": "0972ngw1qybxh3vs2vfbpy1wq8bircvgxqfg6pyg3ynhfnjzmfvj" + } + }, { "ename": "rings", "commit": "113118947e33ab0c8004dbe9b188eba2ea282356", @@ -98556,14 +99949,14 @@ "repo": "felipeochoa/rjsx-mode", "unstable": { "version": [ - 20200120, - 1446 + 20200224, + 2149 ], "deps": [ "js2-mode" ], - "commit": "014c760138dac5ae47ed3eade62f4a9f765f52b7", - "sha256": "1ahipwncifvbyv9x9gn35zkc1q9y41j0zqgsf9s31825zczgwrb7" + "commit": "0061587a06cdc2579a8d0e90863498d96bf982d8", + "sha256": "08b4hdgq4hc1yfd9pvyir2j3cqqdqa3j5svgaba97x5fzhsz7y8i" }, "stable": { "version": [ @@ -98601,14 +99994,14 @@ "repo": "dgutov/robe", "unstable": { "version": [ - 20221115, - 149 + 20221207, + 225 ], "deps": [ "inf-ruby" ], - "commit": "c29b47f588715b911da4588a59f3a5245f844138", - "sha256": "05b60l9pn4hh3fdxlk0q98qi2w283a62x7jw02v958y33p030bqd" + "commit": "4ddcc847542ffbba41339e83e462c7d9aaaac860", + "sha256": "1srd3rlvm0bg0i592zw41nbf73w4c92mcsv0isih62686237gnzi" }, "stable": { "version": [ @@ -98772,14 +100165,14 @@ "repo": "Dragoncraft89/ropgadget-el", "unstable": { "version": [ - 20221006, - 1105 + 20230107, + 1225 ], "deps": [ "transient" ], - "commit": "03305f2d73d7092adab495c45b15c8f16f292c8f", - "sha256": "0h141q39ij5bggvs4nq8532vdji29pxaaxszahlhabz5rz44wrf6" + "commit": "10e9d6f66de1ee805d871c59f4acc078b66747a3", + "sha256": "1dxslv3akgv60i45d6i4s4140v6n2jxbn4yhsqf59z0dxdpskkgc" } }, { @@ -98790,11 +100183,11 @@ "repo": "DerBeutlin/ros.el", "unstable": { "version": [ - 20221031, - 2003 + 20221212, + 1047 ], - "commit": "3c4be0ec8dc14d69f2f0b5f46521edf60535b12d", - "sha256": "1srrm2i0yff0dns6rk5wzj8s1hnnbki6ijvih6gn6pfqz3ndvpn6" + "commit": "b437e46bee8f64eec1b8e61f86476977dab6cdb4", + "sha256": "0vbadwr5gmr7px40mhphm4v11ix302bj9f4m8mw7h5mwm8y84skb" } }, { @@ -98868,15 +100261,15 @@ "repo": "pezra/rspec-mode", "unstable": { "version": [ - 20221018, - 1123 + 20230201, + 2008 ], "deps": [ "cl-lib", "ruby-mode" ], - "commit": "4437a243b2042585db994d77e6b7c85864a8d11a", - "sha256": "1ynvrly22v4jzydr168534xl5kxxnbxg7wm15zj4bjiiq1b47b5z" + "commit": "62853a428b416e6a5fd3d8f57ff83a1798188a3f", + "sha256": "09jmyym1jrr6mj2y2fwgmx5bcbmpgyr1msqnjpsn9qxg24jalzdb" }, "stable": { "version": [ @@ -99030,14 +100423,14 @@ "repo": "jimeh/rubocopfmt.el", "unstable": { "version": [ - 20221024, - 2139 + 20230204, + 1110 ], "deps": [ "cl-lib" ], - "commit": "9b0023158cf2517fc07938f678fac8b67f1c6da3", - "sha256": "1gscj8k82gx3qrq38wvg29jqd8kk2b1qdg2n5s31dcs2sycb5fxi" + "commit": "1c6f4f1da755c9e60eb475eb9530320726904341", + "sha256": "0ng8j835cyzb18izl3syjllh739mkv2cb53zrkjkm81wi1c3ws92" }, "stable": { "version": [ @@ -99113,11 +100506,11 @@ "repo": "rejeep/ruby-end.el", "unstable": { "version": [ - 20141215, - 1223 + 20230205, + 115 ], - "commit": "648b81af136a581bcef387744d93c011d9cdf54b", - "sha256": "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds" + "commit": "1c87e214de6a75936b89ab50ee5fe522b87b009e", + "sha256": "1y22hn1id6akgx7n295rjlj58qid76vwanhwv58l30g8phg8ysf7" }, "stable": { "version": [ @@ -99321,10 +100714,10 @@ "unstable": { "version": [ 20211205, - 635 + 636 ], - "commit": "8d7a0b2195111713d227f2a9c52343a0251cd06b", - "sha256": "1qi4iv88kz4p78br5rp917h1gzgfb876yp36zh8psj7pw1qb46i7" + "commit": "99b53f7679e3eb868e4b4585085bbed102e5fce7", + "sha256": "0n16al1nx7r98wbwgrq89yfs581wp6nbbhkns1z5qlqmc21brcqr" }, "stable": { "version": [ @@ -99359,11 +100752,20 @@ "repo": "bard/emacs-run-command", "unstable": { "version": [ - 20220821, - 1421 + 20230131, + 907 ], - "commit": "0ac25bc1acae652ffb58c48a3853cd1dcd7b40a4", - "sha256": "0c455f4jv0c2mmvk37s3cs56gbxbw3h6lbc53q76xnm16hg8b0nv" + "commit": "e44bc5fb9712303150906f05ce7dd41c8c184aea", + "sha256": "0msbyy92gm75r1g70vg5901n1q5y4p7qnhfhgdnid5q59gd5z5dr" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "e44bc5fb9712303150906f05ce7dd41c8c184aea", + "sha256": "0msbyy92gm75r1g70vg5901n1q5y4p7qnhfhgdnid5q59gd5z5dr" } }, { @@ -99374,16 +100776,16 @@ "repo": "semenInRussia/emacs-run-command-recipes", "unstable": { "version": [ - 20221023, - 1807 + 20230202, + 1326 ], "deps": [ "dash", "f", "run-command" ], - "commit": "ca44efc45b906bd377871b876171476f977e9fc1", - "sha256": "10i801x33ld4x7gyfc6fvmhc292hd9dn20qqvyjf1wiqijb1nddc" + "commit": "60e6fdbe6e8bea3871674a0e5779324ed5dbd318", + "sha256": "0ngdxnjz3mvxyzmg00rs9mxy6b2zg86nsplhn0vmbxln133p73jr" } }, { @@ -99394,11 +100796,11 @@ "repo": "ideasman42/emacs-run-stuff", "unstable": { "version": [ - 20221009, - 2235 + 20230115, + 633 ], - "commit": "984e5219adbee369487768a3ad6a408515e15446", - "sha256": "0k4m4rab3dqcsww3c9wz9d3ms7z93nvm97s94gy6i27xw3na5hca" + "commit": "40ac5b62ee655dbba779488d96d844d929a1b6cd", + "sha256": "0yn0mdj4f06v79w4nwq0y48iqr7kgy4qrpk6ws4pjsvcbxqa2nz3" } }, { @@ -99410,10 +100812,10 @@ "unstable": { "version": [ 20160524, - 743 + 1048 ], - "commit": "e7394d7c9e886788a656a7085b4cf963d6fc318f", - "sha256": "0gpfszp6bqr3vdr32vr6l0nq9hnic31vnins68hc5hknli91bpsq" + "commit": "a211d57ddc600410d07a8b534920ba905b093d87", + "sha256": "1ddf5jydpc43wgvw4a669wifij71b4r8zfazcqfdpyfh1j4m591b" }, "stable": { "version": [ @@ -99462,6 +100864,21 @@ "sha256": "1mz842gvrscklg2w2r2q2wbj92qr31h895k700j3axqx6k30ni0h" } }, + { + "ename": "russian-techwriter", + "commit": "23dba361611cc1325d79e307e0b94c3e5178a3f9", + "sha256": "07nrdj1gyc2gry32l8q6n6k5nbpiqcfpr8yv02lgrdhhz2mf4sy4", + "fetcher": "github", + "repo": "dunmaksim/emacs-russian-techwriter-input-method", + "unstable": { + "version": [ + 20221229, + 822 + ], + "commit": "1d86134d04ecf2305969c7546ead7ad425cd7243", + "sha256": "1d170cjlrpabivqy5xdlq9hykhr6gxmghvhacp1sj8288jv63jjs" + } + }, { "ename": "rust-auto-use", "commit": "a9584d883934e36400ec1924755df34149ad2f9f", @@ -99485,11 +100902,11 @@ "repo": "rust-lang/rust-mode", "unstable": { "version": [ - 20220919, - 1051 + 20230112, + 27 ], - "commit": "1d24ca2e6c18cd036f00e930cca64f44db04fb67", - "sha256": "0wmsrmrbqkd8wfysqkxxks613v9ar31vqkk5zsjdjyc7a6j1xw3s" + "commit": "c12348e40531fc7e7325368621a0e5f8031d99b2", + "sha256": "0sy7v0j81qd1mdq862zm0a4nf3g3wyyjjy3kjlmd9kb3l3f5rh0q" }, "stable": { "version": [ @@ -99532,8 +100949,8 @@ "repo": "brotzeit/rustic", "unstable": { "version": [ - 20221119, - 1151 + 20230130, + 912 ], "deps": [ "dash", @@ -99547,8 +100964,8 @@ "spinner", "xterm-color" ], - "commit": "1dfa9b5dfbab261bda7555e675ab2b6db13d0be2", - "sha256": "1lara2q3m2mxfxk8bjhal58gqwkaj1rmh9v2racydzp32hjwk6xg" + "commit": "a5fc66c8167a827a57c4426e4b8dbe717b3be43c", + "sha256": "1kg1brqy6bv8z2qw4q3f70az3mcz26pb387qrjlx2ik027zyr0ih" }, "stable": { "version": [ @@ -99622,11 +101039,11 @@ "repo": "Kungsgeten/ryo-modal", "unstable": { "version": [ - 20220103, - 940 + 20221221, + 1355 ], - "commit": "0a61eed4d2917422d6401b6abe2037c26dab658a", - "sha256": "1w47wr1hkq6ghw3h9vxw74amnlzpji35ji5250l8gk9k7nr366ss" + "commit": "b9e6a0f33b9e2aeb6088accd23ed312083d8f707", + "sha256": "1kk3szdiqk3860wfjdfzv8l0fc303gr8gqnj2ynplpq0jp16lviw" } }, { @@ -99882,6 +101299,24 @@ "sha256": "1sd6gq0sjjz3ym6p4avjfmw480yk6ww3rghq8i1aycfna7z1bz96" } }, + { + "ename": "sas-py", + "commit": "57e899a387de8d66bb9135bb8f66b2b03cfb2585", + "sha256": "0sckayc7yix5vq8nphw31rrvy6g70lbf23i5vmq5nhsqh7hk1mr9", + "fetcher": "github", + "repo": "ShuguangSun/sas-py", + "unstable": { + "version": [ + 20230131, + 523 + ], + "deps": [ + "ess" + ], + "commit": "76a2226eb49ec37f211904c6395ee066bd440560", + "sha256": "0fgb5pd9zmc5n9x3aqkylpv57bdv6ck8bcrw7sj0xyzz2333pvc5" + } + }, { "ename": "sass-mode", "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", @@ -100081,19 +101516,22 @@ "repo": "openscad/emacs-scad-mode", "unstable": { "version": [ - 20221114, - 559 + 20230218, + 2025 ], - "commit": "188c9708e06f59c580866e4b9ead81513dc92df0", - "sha256": "08l9kxxzzm3apfrrwvkqsxyscal8357b7w87c3aagbbwvmxc3zfw" + "deps": [ + "compat" + ], + "commit": "3be01e4213f6828234e73c1f7ec66c0fb594abef", + "sha256": "1pppds3zbyhxqqwslar9bb9l7arcia2igajchxpaf9l8yxf8kw3c" }, "stable": { "version": [ 93, - 1 + 2 ], - "commit": "efcc16b1af3c3e2262fe75e9eb0f2ed30547da3f", - "sha256": "1785fyahlqs7fshvcsa2vpvdi2q1qza03iii984xc260dc4wqv5v" + "commit": "749b11df1d3041aa0a90542cba0fe5d9563c3a1f", + "sha256": "0m87rjmr4990vhakb7jg4nkkn7lp7kiva446j2z5pq7mmhlyxdbc" } }, { @@ -100229,8 +101667,8 @@ }, { "ename": "scion", - "commit": "faf180d15c3847fc6f832866338494dd99b6654d", - "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "18nh0bch29ikd2ang7w36n95a5sf3halvlz0dh7sh4zxcpp00n2s", "fetcher": "github", "repo": "nominolo/scion", "unstable": { @@ -100264,8 +101702,8 @@ }, { "ename": "sclang-snippets", - "commit": "680e5757e074c16efd31084a7dc5dcea339597f5", - "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0d01grpq2zqqdpgh8jwn2428h3xinfkx1cl4lbh0nv6m9pbrvzbb", "fetcher": "github", "repo": "ptrv/sclang-snippets", "unstable": { @@ -100288,14 +101726,14 @@ "repo": "technomancy/scpaste", "unstable": { "version": [ - 20210223, - 1902 + 20221125, + 1731 ], "deps": [ "htmlize" ], - "commit": "4ec352fb9fe261ffb8b78449dea986dc34d337b3", - "sha256": "0219jzj3rwcx4k6f4grzrarq0v05jgmmracis3jb25rv0cln3i9r" + "commit": "56c67ef63be86ef1f03e15a62ad17c3983e1e5dc", + "sha256": "1ndfcb4zj4vangav1n5g6mbf7ys3a5kw1q4a7dnr36f2n2f6rnb4" } }, { @@ -100383,11 +101821,11 @@ "repo": "thisirs/scratch-message", "unstable": { "version": [ - 20211221, - 1527 + 20220209, + 2207 ], - "commit": "efb2db33e52e5d4a4f1bafbd8b459a3b91c3c87a", - "sha256": "117a3v3s94jra3dlsaafgg6594gw6gbdmh1ay5zar5yjy7q6pi2f" + "commit": "0d4198f6effd8f118bf03ee4979f566041ef6a9b", + "sha256": "0xh67x7pkmppbiacpw3wqipji3na0plnlswvnd355kz2gjab3hhp" } }, { @@ -100465,11 +101903,11 @@ "repo": "ideasman42/emacs-scroll-on-drag", "unstable": { "version": [ - 20221030, - 2303 + 20230201, + 128 ], - "commit": "a11a242b085f6a4bd64c2846aeed220528572956", - "sha256": "07210wrnxzyq9q5kzsv3gaz9cm9cy8aqbaawhsrqr47jhyngzklp" + "commit": "12101b8cae16ef7d22013aa131d8d7c2808b5f48", + "sha256": "1mak69rlv9v882mi7n94sp7aw1la00qxn74xdf20wahlgrjr9l20" } }, { @@ -100480,11 +101918,11 @@ "repo": "ideasman42/emacs-scroll-on-jump", "unstable": { "version": [ - 20221029, - 1138 + 20230201, + 141 ], - "commit": "b0525ea8812579b11428f3bd0cebc41dcb192ef0", - "sha256": "1qvv36hmm7yb5m2khlv115rfh8m0s9lhg6jda0dwgs3nifhgxf8v" + "commit": "220e4a8f21cc0b430c693a3ecac08156da2602c1", + "sha256": "1dr41gbk4rg5fa288bp5vnyzmyxrjvvlvn1syp5sjh31ypbw6jkz" } }, { @@ -100575,10 +102013,10 @@ }, { "ename": "sculpture-themes", - "commit": "408a269ccf0d938c3248880c5220b5b0b979f271", - "sha256": "1zyiki3raldp4wnhjsnfc5rzs6pycbagfp7qjjjxz1qgqig36wbw", + "commit": "cd55f4fb3501225f722103953ac1ac9adc42d52b", + "sha256": "06p5mpi018nb9xpf3kdn4lqm8nbak4x3afzgbnk2bp1aiz38qk7n", "fetcher": "github", - "repo": "t-e-r-m/sculpture-themes", + "repo": "precompute/sculpture-themes", "unstable": { "version": [ 20220601, @@ -100870,17 +102308,17 @@ "repo": "Kungsgeten/selected.el", "unstable": { "version": [ - 20220509, - 1810 + 20230219, + 1328 ], - "commit": "81cb32521a05ff2a9125e001b83608e108e480f6", - "sha256": "0zk5fnjw5czq71z3qgi7kl9r5y3cw5mx1hswyhli7xhxzjpldxp4" + "commit": "1ca6e12f456caa1dc97c3d68597598662eb5de9a", + "sha256": "11xjv861mx15fhvv8g67ahri5p8mplnhq9sf30c825bk1f0h7xzy" } }, { "ename": "selectric-mode", - "commit": "08922071b9854142eab726302e75f1db2d326ec5", - "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1ih3n2b867p09r1hnia22f4cj46iqfkdqlpmphix241d9zph6r30", "fetcher": "github", "repo": "rbanffy/selectric-mode", "unstable": { @@ -100932,27 +102370,27 @@ "repo": "radian-software/prescient.el", "unstable": { "version": [ - 20221118, - 307 + 20221216, + 112 ], "deps": [ "prescient", "selectrum" ], - "commit": "a000de747515aa7e7ad1ea0eab711864a4be0ab5", - "sha256": "1d1d4msmkc0cvd6vva0pfq72i07p0my9wj2s8zvj60pvah620yl0" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" }, "stable": { "version": [ 6, - 0 + 1 ], "deps": [ "prescient", "selectrum" ], - "commit": "c28bca2213efd2666b0328c29f2c26e9b603cc9a", - "sha256": "0156sbs4b535mcwm44qjr8lx48svmjvdqh8c8hr6d0l709f27yq3" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" } }, { @@ -100997,15 +102435,15 @@ "repo": "wanderlust/semi", "unstable": { "version": [ - 20220720, - 1346 + 20230104, + 1321 ], "deps": [ "apel", "flim" ], - "commit": "ac3e726ca94ed245c25881ec8d7177d0d834ea6a", - "sha256": "1bg07y6svvg1mmlr455x3j1anjp3wbv27s6b2inp294rbwprm41n" + "commit": "7d8df0ef2f483e2dc063a72099295f467e6bc2c8", + "sha256": "01dn91xjcl7p5rnbgyh5l4kdlqx31s0gw5vh7hhcapbiq8rihmjd" } }, { @@ -101149,15 +102587,15 @@ "repo": "twlz0ne/separedit.el", "unstable": { "version": [ - 20221117, - 642 + 20230201, + 752 ], "deps": [ "dash", "edit-indirect" ], - "commit": "91a41ff8044e7cbeb82159f6c595393606e5e744", - "sha256": "0bl6wvw1z5bax4msmdahxi0y4cp85nb4s90j32r8vzn41s3pyabz" + "commit": "03e356f1a645a884921975890899fb47acf7d00d", + "sha256": "131n9w1xjgxska2zmf96px05ll4s3bh0mbrw52r07iaqrr8jhskg" }, "stable": { "version": [ @@ -101283,8 +102721,8 @@ }, { "ename": "serverspec", - "commit": "5a4f4757d8886d178a85d4bc8ac9399a99d8c4d4", - "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0avyii5xif5dxipmrgf1slp09g8j73565bkc1a1j07p08vrap9c5", "fetcher": "github", "repo": "k1LoW/emacs-serverspec", "unstable": { @@ -101650,11 +103088,11 @@ "repo": "qhga/shanty-themes", "unstable": { "version": [ - 20220816, - 1830 + 20230123, + 2111 ], - "commit": "9ddd8ccd94b51ad5b19ee7097dcfccb3588b5eef", - "sha256": "0j0vf6v4cw9v661zk1hcm3cnxl0lgfk5bpd7xwdah8v38mb02k8w" + "commit": "3f678d953771c4a109bd16f6d7def6bd9bbc811d", + "sha256": "067py5xhlq7qpps39r0wbxlc61br84bgfgad3cm54j2z1kyd1msz" } }, { @@ -101680,14 +103118,14 @@ "repo": "sebasmonia/sharper", "unstable": { "version": [ - 20220510, - 2001 + 20230129, + 1827 ], "deps": [ "transient" ], - "commit": "8020a5da0327f9a18b4bdab474bf8d81c1b38ea7", - "sha256": "0nby923h8hprxqyx48592q5584p8rmq3zvi12g2fbglabff76bmp" + "commit": "496e90e337cb09329d85a6d171c0953a85e918fe", + "sha256": "1a8x6mywxkhcc34lv0s5gq48vnhnq0cir0841zbkdjp1fviyx7j6" } }, { @@ -101867,28 +103305,28 @@ "repo": "mhayashi1120/Emacs-shelldoc", "unstable": { "version": [ - 20200513, - 1206 + 20230207, + 250 ], "deps": [ "cl-lib", "s" ], - "commit": "fa69f67b6229fad3f31d936955ca8d1982009b77", - "sha256": "0ma5j74vkwax9ha945dcgbmf3r4gajj4nvl63pbfyvxvy6svn84r" + "commit": "178d78d08e94b273b23ab1a32c5be509fdfe2286", + "sha256": "1dqdh2rd0v136ckj4wp00g3gsq0lrzicwl1c60xacy548amdxq07" }, "stable": { "version": [ 0, - 0, - 5 + 2, + 0 ], "deps": [ "cl-lib", "s" ], - "commit": "1d40c73969347586906ca1dde2adb50afcd73b1b", - "sha256": "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax" + "commit": "178d78d08e94b273b23ab1a32c5be509fdfe2286", + "sha256": "1dqdh2rd0v136ckj4wp00g3gsq0lrzicwl1c60xacy548amdxq07" } }, { @@ -101937,11 +103375,11 @@ "repo": "deech/shen-elisp", "unstable": { "version": [ - 20210530, - 349 + 20221211, + 1313 ], - "commit": "dabb829d0d86f454ceb3b0846cdfc11af1f91cc7", - "sha256": "1h7v3bbljkw7lsxz4ijvw47c6fj070j0p268v4il2xh2mzw1nhjm" + "commit": "957ab44654fc7a7cc1b78181d244fa25166f9b09", + "sha256": "0xfs48fryqjaiy9w7rwxsi9g950gbjq6haacah1lf8h59pa9ff2w" }, "stable": { "version": [ @@ -101960,20 +103398,20 @@ "repo": "redguardtoo/shenshou", "unstable": { "version": [ - 20220808, - 604 + 20230116, + 805 ], - "commit": "25903d642e81f33abea84573979af2a373f5b5b0", - "sha256": "197gs31nb8aa47q1jv6zfrrbbi09n4kbjsdlvi7zviy6xi2723c7" + "commit": "763f28b2d132ed94bb57ca08ef12ff1454b7f7d3", + "sha256": "083csvlx87jj96zkg5nni0rzw831xyaghl9vy76iggk9jyixd60z" }, "stable": { "version": [ 0, - 0, - 9 + 1, + 1 ], - "commit": "25903d642e81f33abea84573979af2a373f5b5b0", - "sha256": "197gs31nb8aa47q1jv6zfrrbbi09n4kbjsdlvi7zviy6xi2723c7" + "commit": "763f28b2d132ed94bb57ca08ef12ff1454b7f7d3", + "sha256": "083csvlx87jj96zkg5nni0rzw831xyaghl9vy76iggk9jyixd60z" } }, { @@ -102055,11 +103493,11 @@ "repo": "emacs-w3m/emacs-w3m", "unstable": { "version": [ - 20220823, - 543 + 20230127, + 612 ], - "commit": "e185b54d13fb7eac7d045daf6a83731d9ef79231", - "sha256": "0mbv68g1q98dysjvhdxwf3gcwwmihy6ni3b4r4kz6klyfr2jwqim" + "commit": "e556f82247918bdc33acf01b29917314b8b9e22b", + "sha256": "100qw0wfqy0ff7c2k4lbwcanvqg42ai7q0h0c8y4xx2snidfm4zv" } }, { @@ -102400,11 +103838,11 @@ "repo": "riscy/shx-for-emacs", "unstable": { "version": [ - 20220424, - 2124 + 20221224, + 2230 ], - "commit": "db82bd1452928a1151badf7a28ace9d68b265532", - "sha256": "1bpzcwsc5rjgdrkripifgw1bwd8xpj7xyw8kpxjhnz29j39xflfl" + "commit": "b99d16f36bc278d668d8428c4bc9af77064c336a", + "sha256": "1wkqnc5n8if8fsh7f3bdr5nzn6dbj1nzdxlmnz8nflmx4g32fp6v" }, "stable": { "version": [ @@ -102508,11 +103946,11 @@ "repo": "ideasman42/emacs-sidecar-locals", "unstable": { "version": [ - 20220921, - 501 + 20230109, + 536 ], - "commit": "4175fe207de8530474c4ec368d4507ddf97dc412", - "sha256": "04abaql2l8y8na0rcl8hhpc7bjyiv2bylvvikcpzazdj75zgjcni" + "commit": "882923811e9de84c8ebc2f9fe65e9673d7d1f469", + "sha256": "0xba64lgfvybnmbzvlp5b7hlx5s7aw7i51g3ydb2zbmibbi11405" } }, { @@ -102523,11 +103961,11 @@ "repo": "emacs-sideline/sideline", "unstable": { "version": [ - 20220922, - 508 + 20230216, + 843 ], - "commit": "0bfdb6274cda0c19424c78804086ed93df96b4bb", - "sha256": "0qmva8bhanlrm3s46kmamx4zcais1hxm26gjq4d3q2z598bq46a5" + "commit": "0441f2c308eb9316f01d721a949ba73b6df8c4c7", + "sha256": "0jgkq8x0p291j8rig2hp1hcxiyf8ln9nh8jdbnhiijk229v3wka2" }, "stable": { "version": [ @@ -102547,15 +103985,15 @@ "repo": "emacs-sideline/sideline-blame", "unstable": { "version": [ - 20220629, - 801 + 20221231, + 1636 ], "deps": [ "sideline", "vc-msg" ], - "commit": "6e9fb45caea9031554e6e2110e39e219a407779e", - "sha256": "00a75fl7akwvn04icz79zhl4bk940y2hc6yvm2977r4y9wqbhjj0" + "commit": "1a1d80a71bdabe77fe2a33cd681b7188f193acfc", + "sha256": "1w05825diivgbbbggval1drhnipi4iib1hv5ccr74rpwyixvm4hr" }, "stable": { "version": [ @@ -102579,16 +104017,16 @@ "repo": "emacs-sideline/sideline-flycheck", "unstable": { "version": [ - 20220629, - 752 + 20230216, + 859 ], "deps": [ "flycheck", "ht", "sideline" ], - "commit": "a1fd5368acbc8cd15e00d23a0bf6f19d24f5c061", - "sha256": "0wmzrhp1947xi52m6fvr2vzpvi38nxlxzqgkm2ay7kyf9czkkvdr" + "commit": "1f2f82d4383718a8dd2aff40cffafce4a8d0aca1", + "sha256": "0ksjjd2j377c8hrf378z6x5v8mn2s0q6fifx58l0zz3sw7y649l7" }, "stable": { "version": [ @@ -102612,14 +104050,14 @@ "repo": "emacs-sideline/sideline-flymake", "unstable": { "version": [ - 20221009, - 1555 + 20230216, + 914 ], "deps": [ "sideline" ], - "commit": "e1e1f5cbdfa9ac352e884de97d68da4ea41cc060", - "sha256": "0y3adfvi7d28xkaxa539ys9i1rndn2c9ahs221vlmyf0g9ijxcxh" + "commit": "e92fa5ca861ff5a54273aecde319974fe4aa9dda", + "sha256": "13h4bzqqcvygza2c8x7aalc1cpy3mv0g2rbh2r1991qksddyqvcx" }, "stable": { "version": [ @@ -102642,8 +104080,8 @@ "repo": "emacs-sideline/sideline-lsp", "unstable": { "version": [ - 20220629, - 757 + 20221231, + 1636 ], "deps": [ "dash", @@ -102652,8 +104090,8 @@ "s", "sideline" ], - "commit": "8833cc33383ef3cc1b003be239cd5092b565ac34", - "sha256": "1vi48804bhgvn4b784670xh9mpmqxankgyww37sn0m5v53ywpkr6" + "commit": "38ba700db1769de216989fb9217795934147d160", + "sha256": "01dhnfcc0mig98l7vzc0nfdhz2y041d19jv2r9qp1l6cklimpzfd" }, "stable": { "version": [ @@ -102837,15 +104275,15 @@ "repo": "semenInRussia/simple-indentation.el", "unstable": { "version": [ - 20221113, - 1645 + 20221127, + 1232 ], "deps": [ "dash", "s" ], - "commit": "77685b3dd802dade7d60817fc0e24e60c101776b", - "sha256": "0dsrqip19pjdbdg039pq56wqynx271h5f25wx13k0y08smgpylnm" + "commit": "74efe02aa6c1612ae9b32b88f97b7d6d309726b2", + "sha256": "03dmq63cqymj37mnqxgm4qxmvv6vcxbj5kanr0qwdv1nzkh16dgw" } }, { @@ -102965,6 +104403,24 @@ "sha256": "1xkv34ibp3zv1b4y2q0i8x7c6vqrqf8r5jzj30nzz4lm5ipvd98r" } }, + { + "ename": "simplecov", + "commit": "51858a06108af5a73e92803c3a52e5ea44f81465", + "sha256": "1fvgzlmx99026bpkn7hn32vvfnpbns1bykfbc4i58mh6w9871cdy", + "fetcher": "github", + "repo": "zenspider/simplecov.el", + "unstable": { + "version": [ + 20221206, + 350 + ], + "deps": [ + "dash" + ], + "commit": "215f2bdc5d2ef9b4439779ba4d3129210c9f34ab", + "sha256": "1rr4w0wvx07w62md3y1qj0cp7grn8z7116babvr76iigdcc0mzkz" + } + }, { "ename": "simplenote", "commit": "8c1c3189da03541e3bee44847ac5d02c2a56ef98", @@ -103096,8 +104552,8 @@ "repo": "magit/sisyphus", "unstable": { "version": [ - 20221013, - 1729 + 20230213, + 1152 ], "deps": [ "compat", @@ -103105,8 +104561,8 @@ "llama", "magit" ], - "commit": "64860faa0eba4bac8c794af4e8969c9458deb550", - "sha256": "1km8xsl6l1ydc0gj4slwlmchbi4g1svq2spv0b7bj3wwn8knk9mf" + "commit": "1e6fd5ae0fb5384063e8b59d053bc5df7630cf5c", + "sha256": "0r0mvkd7i9n7d92lv4cjd69nprzva6zhn509i4zjdn4dapcqw6z9" }, "stable": { "version": [ @@ -103122,10 +104578,25 @@ "sha256": "1nnb2l77bi58pg63w1sifxkj8hzzp14bzgldznk3q7b9hibjqlzd" } }, + { + "ename": "sixcolors-mode", + "commit": "05204862ed7a9513e7f6a8771292efe47ec63699", + "sha256": "15wmasn7m8nij77szxhsqwx0xhsdh1v4l2r3g1ydjdn56cndjym6", + "fetcher": "github", + "repo": "mastro35/sixcolors-mode", + "unstable": { + "version": [ + 20221127, + 1208 + ], + "commit": "fbcf57749ebc74d7b77d148da6c021b1a8e0f650", + "sha256": "072jcm4da8b9vjss4jyb3bs18qdrjdd6mlgp4xwy097ypfdyijm3" + } + }, { "ename": "skeletor", - "commit": "1e63aefc869900c2af6f958dc138f9c72c63e2b8", - "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0gbd7x8vy73dzngw2rk6n712wfm1fbcpy8l9xvz7ykj35zvv4g2v", "fetcher": "github", "repo": "chrisbarrett/skeletor.el", "unstable": { @@ -103186,11 +104657,11 @@ "repo": "dawranliou/sketch-themes", "unstable": { "version": [ - 20220404, - 1741 + 20230210, + 1507 ], - "commit": "8a609ec8fbf12231ba67aab9fcbb6b3ad0420359", - "sha256": "1mfy1vzdsli5qrdbbpm0bkhmvq8qp0692za5ykp7fbq9sxmqd65c" + "commit": "5534254232f1a556ec20952c75b5506625573049", + "sha256": "1r82sl0qvvcjdqrygbdk787dvnjycr20p32qn7z0fzim76nvlbjz" }, "stable": { "version": [ @@ -103232,8 +104703,8 @@ }, { "ename": "skewer-mode", - "commit": "10fba4f7935c78c4fc5eee7dbb161173dea884ba", - "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1kh0gnzzh4jik737fwv0rwq3jbk41fhy30x5m9wv2crmrh4bsdw2", "fetcher": "github", "repo": "skeeto/skewer-mode", "unstable": { @@ -103399,33 +104870,33 @@ }, { "ename": "slime", - "commit": "570bde6b4b89eb74eaf47dda64004cd575f9d953", - "sha256": "06f005f7q6wk6n6kyiamw5zgp1hx5mca45n06y8798f1dwwnq9wl", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "117h3zymami8yxgv919l6fzg4wjyd1m5kdwa5nykgxs4mkfdp3xy", "fetcher": "github", "repo": "slime/slime", "unstable": { "version": [ - 20221003, - 936 + 20230215, + 2125 ], "deps": [ "cl-lib", "macrostep" ], - "commit": "f41e5590e28a1dff1fc07111b43841eb1692de94", - "sha256": "083yr0gy4id40yy2ny50y047p6b0pz8xyc07i7dpqw9l830bsjwq" + "commit": "5e8fc7cad5ae7dc19b434c559ebaee3185d80b98", + "sha256": "1jllc6zk1vmh7g2zq9y1a5kihclawjf9zkizqz8kzs4hsyp6racs" }, "stable": { "version": [ 2, - 27 + 28 ], "deps": [ "cl-lib", "macrostep" ], - "commit": "cf30941e5858e93eb91574ad91499075222a447b", - "sha256": "0wrq7s39lwca9wi01fj0wa2z6n0yyrv17c471kdkxxqppl4whi8m" + "commit": "a4f3471487db48f7289dc0ea019611d093e5ee7f", + "sha256": "155y3xld9snkfm7xhn7gz655xxxr6g7qv45znbg25k6y1lczmy4z" } }, { @@ -103499,14 +104970,14 @@ "repo": "augfab/slime-repl-ansi-color", "unstable": { "version": [ - 20200712, - 1226 + 20230214, + 1453 ], "deps": [ "slime" ], - "commit": "e38c7958d9657e41c426b4e96938b3f604238795", - "sha256": "0rbg6ndi59ycw54s2c21a3c2cr0wlymrpp4qr33yxv1ik00n5n5p" + "commit": "9e8af90490332217e45d7568f1690df3f4e25d4b", + "sha256": "0jsanbz7n8ss6hpgh5wid5lrvq7s2x4yphrgna9zpmgf4b0c3xss" } }, { @@ -103526,8 +104997,8 @@ }, { "ename": "slime-volleyball", - "commit": "853f47f469e372bdbae40f3cea60d9598e966fab", - "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "12vcs97wlvwchg1lifl20av8f6mawq6js0c8flyr682j9by2nq15", "fetcher": "github", "repo": "fitzsim/slime-volleyball", "unstable": { @@ -103644,11 +105115,11 @@ "repo": "joaotavora/sly", "unstable": { "version": [ - 20221108, - 2234 + 20230216, + 1140 ], - "commit": "992e3f3c1a599a8a10af12323d547b35ce70362c", - "sha256": "0krbfrb304b1v3ps2kiy60bb5d7iw9xx2k1qdxc7x4m6smimbrhi" + "commit": "fa70fc8ab1bc1f1c21661d672834e41b1d0abd39", + "sha256": "1bfigrb4nnx4sv50jsx15jsyh2yfbb72g5nhjbhcpmv8apkq4818" } }, { @@ -103659,15 +105130,15 @@ "repo": "mmgeorge/sly-asdf", "unstable": { "version": [ - 20220707, - 5 + 20221119, + 2235 ], "deps": [ "popup", "sly" ], - "commit": "3180921efdc19a2195960e1d601b2a6f31a6feea", - "sha256": "0gncp8xv33s4wx594bgd35vr1455bcggv1bg28qv75mhv41nzw97" + "commit": "6f9d751469bb82530db1673c22e7437ca6c95f45", + "sha256": "0bxan0h12xqdsfr3bpk7n8zj7d5xvp4v3wg4fbcf2xw63j02m810" }, "stable": { "version": [ @@ -103965,14 +105436,14 @@ "repo": "daviderestivo/smart-mode-line-atom-one-dark-theme", "unstable": { "version": [ - 20220108, - 2110 + 20230107, + 1731 ], "deps": [ "smart-mode-line" ], - "commit": "8ce6cca51b19395ccdd8f33a54419fa539f837f0", - "sha256": "0bvm98n2d4wsjz57g65gv567bmrdkibyimwwwq67bpl5qrf6ca8v" + "commit": "5f2056d7c24e9c8964f700ab6ec6f00ba4315eb8", + "sha256": "1klzgsvl4vnj14azdng7c3dz3r8mw3il9p56gf9dpm5xr8w4mwbl" } }, { @@ -103983,15 +105454,15 @@ "repo": "Malabarba/smart-mode-line", "unstable": { "version": [ - 20160706, - 38 + 20211005, + 233 ], "deps": [ "powerline", "smart-mode-line" ], - "commit": "558251e200cc555df137e60326295f2bd640fd6a", - "sha256": "1xh1qcxw0r3j8hx8k8hsx0cl82wps5x755j4kbn01m7srzv6v167" + "commit": "abcb0ab6f7110a03d6c7428bae67cf8731496433", + "sha256": "1h5w5lrgrmhpaqwppg5msylh7z78mvwy9mm8xiiv8w4wxvncxxl2" }, "stable": { "version": [ @@ -104144,15 +105615,15 @@ "repo": "Fuco1/smartparens", "unstable": { "version": [ - 20220623, - 1523 + 20230219, + 1728 ], "deps": [ "cl-lib", "dash" ], - "commit": "8b6a3c3b31afd5b3f846e09859b5fc62eb06e7c1", - "sha256": "1bifalcx0v9h28q9mdnbad4mrxzr58f4l0wfnw1jhg5khgx4kgl2" + "commit": "f0c863268d296e38d4b5374f4c165cf9a823cd8c", + "sha256": "0f65wwjz4nxk2v49qmqck14xlyv1hfqnzjsf8ny1dv82l0v1by4s" }, "stable": { "version": [ @@ -104315,6 +105786,27 @@ "sha256": "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5" } }, + { + "ename": "smilefjes", + "commit": "000639475be669ae606fc37b3d124f616236020b", + "sha256": "1n3fx26givwfr407776f4cmhh4873cy5k50iww0s7kc0q8wkdqdp", + "fetcher": "github", + "repo": "themkat/smilefjes.el", + "unstable": { + "version": [ + 20230129, + 2110 + ], + "deps": [ + "dash", + "helm", + "ht", + "request" + ], + "commit": "52ec05240efba2d5d4666aabf773a1aa63bb3f1a", + "sha256": "1s34jsj3hqjp3mfs35xcsyf8vf3k0sjiz0r5vckhzg52kcrvvksd" + } + }, { "ename": "smiles-mode", "commit": "67901d48323deba9311b32100574972c7476ad7b", @@ -104502,8 +105994,8 @@ }, { "ename": "smotitah", - "commit": "326c213450fc515573b963e794584b7b5ac995fa", - "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0fwzm88v7shl997zlwd1fgryb4zkvl7ay03x5p551mjhd84sahyz", "fetcher": "github", "repo": "laynor/smotitah", "unstable": { @@ -104595,6 +106087,21 @@ "sha256": "1621pvbwq5b0kgk735w4dnpar30x3ckbhx18bdwv03rc7ngdnj8r" } }, + { + "ename": "snap-indent", + "commit": "a4b390ba55dae9c22ea33abf0cc2b4443d2ae323", + "sha256": "1x861zlxrmawdqp6xwp92106r30jq622n6rn907clr81vzppv7ra", + "fetcher": "github", + "repo": "jeffvalk/snap-indent", + "unstable": { + "version": [ + 20221220, + 1908 + ], + "commit": "6020a1784015ba28f439f41d4d8c261c3481079f", + "sha256": "0ph6xfylfxpkdsa1bipfj1x36b5rblr8v33kkgl9kjrp69v7fyb6" + } + }, { "ename": "snapshot-timemachine", "commit": "69376b802f0687227a78838877d89163b2893c5b", @@ -104649,14 +106156,14 @@ "repo": "weijiangan/emacs-snazzy", "unstable": { "version": [ - 20170823, - 1832 + 20170828, + 757 ], "deps": [ "base16-theme" ], - "commit": "8729d10b5c1edf1053800170dab1ffd820b6fff2", - "sha256": "1c07yggr6cnbca2iag1rjjsp1hiaccix222wzybxrphb72fn93wq" + "commit": "578d7ebc4ed91c0a630b652c4b6fdd54d9ae16cd", + "sha256": "0gykymah4ap7zgjr7fkir21avcdhgy6n88nwxl1iynim3vkq441v" }, "stable": { "version": [ @@ -104691,8 +106198,8 @@ }, { "ename": "snitch", - "commit": "8d08307e483c328075bbf933b2ea0c03bffe8b7c", - "sha256": "1zck9r251jj3q6q1glxj20812yhkv630qnd2y7q1kkjgp68gby7g", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0jh7cs89gwck5589mhswx52wkfs2pbmrwlivk7qzdxisdkyb0vf8", "fetcher": "github", "repo": "mrmekon/snitch-el", "unstable": { @@ -104751,11 +106258,11 @@ "repo": "alphapapa/snow.el", "unstable": { "version": [ - 20210813, - 1902 + 20221226, + 2238 ], - "commit": "4cd41a703b730a6b59827853f06b98d91405df5a", - "sha256": "0c770mgxav92j562knmzxdjlabvyhvhqjrgnk3pa13c5rs08800h" + "commit": "be17977677fa29709a726715a1a1cba1bd299f68", + "sha256": "0fh1hmwpszm9frvnqr2b8rlfx33dy9jm5r82hldgxdbhlv8dq4d0" } }, { @@ -104781,14 +106288,14 @@ "repo": "md-arif-shaikh/soccer", "unstable": { "version": [ - 20220905, - 740 + 20221127, + 1534 ], "deps": [ "dash" ], - "commit": "4bd4131c452f46f47b029bf38c7d98a2d3337b8f", - "sha256": "0772ld106dq1bqk6xib9a4ml2jsqqikfrjgz4bz0dc039yw34cp1" + "commit": "49d0db4f6274f1bd39c58255be069f79e310f465", + "sha256": "1br5dzz3k9ng58v8s64dp9g35j0871jpf1ax23nadq87n6m4q58k" }, "stable": { "version": [ @@ -104979,11 +106486,11 @@ "repo": "ethereum/emacs-solidity", "unstable": { "version": [ - 20221024, - 220 + 20221119, + 1735 ], - "commit": "929ce58ff0d42cf1109f9fb0655c787ee58cc2da", - "sha256": "0yy9bdbab8k84csskq6lq6vgrzpm3zjj8a9gxbnwxc4ksarm1npg" + "commit": "ddb4a901c33bd29ba2eefff3b7f7461849c6e833", + "sha256": "1hppvvh9mq7yg129490b66bmdnnx6c03acbml03ipbcrfc6950y0" }, "stable": { "version": [ @@ -105060,6 +106567,30 @@ "sha256": "038waszklswq6pb9ayx731924z809b3hf3xy87vzf9a4nl9xv4p0" } }, + { + "ename": "soong-mode", + "commit": "bac368b425fb24140528cf70a8787b00f6871bfb", + "sha256": "01xwwlrr5nj54z8n2vrapnn45pqpqi2m23lsf8j919p88c4gfa47", + "fetcher": "github", + "repo": "bobrofon/soong-mode", + "unstable": { + "version": [ + 20221217, + 1243 + ], + "commit": "bf3dc1070b368b413958f54fbe9bcc2aaf77b56f", + "sha256": "037dk71xdar01bpggvmw0jnagjfbh60g1s8lkv0nm24yhafbrlkm" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "bf3dc1070b368b413958f54fbe9bcc2aaf77b56f", + "sha256": "037dk71xdar01bpggvmw0jnagjfbh60g1s8lkv0nm24yhafbrlkm" + } + }, { "ename": "soothe-theme", "commit": "6f26b8281f9bd05e3c8f2ef21838275711e622c9", @@ -105116,11 +106647,11 @@ "repo": "mssola/soria", "unstable": { "version": [ - 20220127, - 1004 + 20230102, + 1459 ], - "commit": "2db1859743fe9fc58eab4e6f6c1e37825ad7b69c", - "sha256": "0vikil31dwpmnd5iv3iwb8wrnny2xibydvc2mlgsvxjqjw7d40ng" + "commit": "7669770034f773bd96a71bb5e0cde93a8f0495e9", + "sha256": "05n2fjvs94s8023xmnbcrdbpqa25mh5j8l7naw4xhlggzynjfvan" }, "stable": { "version": [ @@ -105562,14 +107093,14 @@ "repo": "ljos/sparql-mode", "unstable": { "version": [ - 20220824, - 1323 + 20230104, + 1113 ], "deps": [ "cl-lib" ], - "commit": "15960092e8ce8ebe6a6afd82202ccf47cb306e76", - "sha256": "1wlwn2f6r00fj7wk1pymrha2rpfrd3b2ggmcjsz74f7ixc0y4c2k" + "commit": "1f6196094ec6626722c6e03a13f6844c68f62703", + "sha256": "031n56bsicrw99ls49rwg4padgbh5adb97lb9gxg852x57hilivr" }, "stable": { "version": [ @@ -105592,11 +107123,11 @@ "repo": "ideasman42/emacs-spatial-navigate", "unstable": { "version": [ - 20221030, - 1131 + 20230115, + 633 ], - "commit": "4dd8a164f35affa322c67d9e65af8eda21f99775", - "sha256": "1k8r70j9cqv60pxn8mdy9ixx7l5wbkxs445l7fl9v9h5msav2w7c" + "commit": "11f281ae16b541ede9b4fadf96200e1728eb6ed0", + "sha256": "1wl8fvm9v3gsbdn0y9xzwnfh4ak5cdn0xdp0g816q5y3r5dyiywp" } }, { @@ -105607,11 +107138,11 @@ "repo": "condy0919/spdx.el", "unstable": { "version": [ - 20221117, - 127 + 20230220, + 118 ], - "commit": "9364053159df98809996f3dce622b192638e40ee", - "sha256": "046vfbz6capsymqniclbsyhx6zc1l25z6391709kchyl4as2qlp7" + "commit": "7ae6710a95a02c90b0f13486e8f20be3a746bee2", + "sha256": "159hxs3pa9pmjbhm9i3c2271zllvajw68g8sdcggx6lf3mp5w402" } }, { @@ -105664,11 +107195,14 @@ "repo": "dakra/speed-type", "unstable": { "version": [ - 20220815, - 1458 + 20230206, + 1330 ], - "commit": "304cb8cd6c30d07577d7d864fd32858a29a73dba", - "sha256": "0n7rcb0bfw5d22fmy0kb14i4z88z0p4k23zxq5i23srcskihbkl8" + "deps": [ + "compat" + ], + "commit": "4f8553632d71e827b4da6e091143779d2ad970a8", + "sha256": "1qf68jqkc4v8i0rbia2hyy9srn5paymz5bbv5s222rbjzc66n5hv" }, "stable": { "version": [ @@ -105732,11 +107266,11 @@ "repo": "ideasman42/emacs-spell-fu", "unstable": { "version": [ - 20221015, - 431 + 20230205, + 309 ], - "commit": "d9078002221609bf69dfb420fea3623d2f534b12", - "sha256": "1splj1g8cjk3vlwzzhr8s889s80nbxgfld55y4nm303m4hm91xr5" + "commit": "d6c170fa971856f0755c1750e66deadd58a5465a", + "sha256": "1sf43zzdcgn3ayq36dwj3xnfb9yhybmx0xs9f6yk29sw1ca7rd0g" } }, { @@ -106181,13 +107715,13 @@ "unstable": { "version": [ 20210305, - 209 + 212 ], "deps": [ "reformatter" ], - "commit": "7db76e74b7d1e2abfd13670c91bbdc12c6cb4fa9", - "sha256": "0jml6jhyvb7claf8754gar40m8ppzvfkgjgcx0c1mxz5fg7ab7gi" + "commit": "0cdb882874ba0853f4f831a07a85b511258472b2", + "sha256": "07ka6fqcbvbvzsdmwris89cj3dpg3qcfhmww2h6qs69za3h7mify" }, "stable": { "version": [ @@ -106340,11 +107874,11 @@ "repo": "srfi-explorations/emacs-srfi", "unstable": { "version": [ - 20221116, - 52 + 20230205, + 2247 ], - "commit": "689d27ed94254e3a3ce5a104057acc525e68a2ff", - "sha256": "0d14p5ijhs3aii7bzlbkaj7wwsbky2ar8mw55qqvz247b0zr4061" + "commit": "7e92ae3b4c4a7f3386bf1d7d620e5cd29e6e3b37", + "sha256": "0apccq1hj4sydkd7sa5iziavpi6swzaj6w7gckp5n8pjzibnqlx8" }, "stable": { "version": [ @@ -106369,8 +107903,8 @@ 20180715, 1959 ], - "commit": "b1eb7b109bc1c616dbf027429a90dc3b1a4263f1", - "sha256": "05kp8ajbqk7vxzkv23akyk2m7yg81pbrxpl3dsw67101sjazsybi" + "commit": "714387d5a5cf34d8d8cd96bdb1f9cb8ded823ff7", + "sha256": "1a8pqhdi7m3lis5ad2f74s1sy8zpxlwvfsvd80lw746235x2v06z" }, "stable": { "version": [ @@ -106472,19 +108006,20 @@ "repo": "cjohansson/emacs-ssh-deploy", "unstable": { "version": [ - 20220126, - 658 + 20230129, + 903 ], - "commit": "9311f9b4f8d25ce54fb7da9bf59d955fed366a4d", - "sha256": "1wgm4q46nja71grwbdnacnlazj3cgfr6r1glpkyx8y3dn9amdhip" + "commit": "94b56c0428fa0c788578161edc9e7992b13cd400", + "sha256": "1rg1hzhv8q1gfgfhd4pm22vx6mk5zkkkdq3zyg0dqb49r5skrbss" }, "stable": { "version": [ 3, - 1 + 1, + 14 ], - "commit": "20a87ab053b1d56fdb102b75b1c90658df756505", - "sha256": "1m0fav34wvak4k3ki92z5nvsyw6jdxnmhn5xzjiialgz9c3936v8" + "commit": "94b56c0428fa0c788578161edc9e7992b13cd400", + "sha256": "1rg1hzhv8q1gfgfhd4pm22vx6mk5zkkkdq3zyg0dqb49r5skrbss" } }, { @@ -106616,11 +108151,11 @@ "repo": "SFTtech/starlit-emacs", "unstable": { "version": [ - 20221107, - 1632 + 20230209, + 21 ], - "commit": "5f0e9deecfa95e241e4b3957e976b2471ba219f1", - "sha256": "1ly7c72yhacbcapvfilm7vrfdm6sxkfyf73cxnzixd7jyjymfzv1" + "commit": "f910112a76f0ec62f7150a3a2d4f1337a1809ff7", + "sha256": "1zcdbg69aicwsr53h6sbsms7cwq3l6zdhlb0fm8jy6r1rn9clwv8" } }, { @@ -106683,8 +108218,8 @@ }, { "ename": "status", - "commit": "dca8976de7060fcfc37a1623280869e0cef7b0a2", - "sha256": "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "01qjh4bqv9aqc85c2pavdx01q2h8k641d7ra3i02qwy1cglkkf49", "fetcher": "github", "repo": "tromey/emacs-status", "unstable": { @@ -106775,20 +108310,20 @@ "repo": "stacked-git/stgit", "unstable": { "version": [ - 20220822, - 1637 + 20221212, + 1619 ], - "commit": "ac42629f954e4885ef079a9bdb367a6d4aabc2d9", - "sha256": "0ncjcl8fb1mg5vqh5f8rkrlcjvpfhsnn5z3258w5wc1ibq1pnavw" + "commit": "35a9822ba130613b7ae88d241df48556aaff01b3", + "sha256": "0h82dq2r0bxsv5il15nb9j2v3pikc5g7aaiwvrlkkfjc7ld563a9" }, "stable": { "version": [ 2, - 0, - 2 + 1, + 0 ], - "commit": "7c0fb7928fa691df68107a8473d1970cd6909945", - "sha256": "1pr4asqm2ql29jg3z5racp2z7nl56rj13bzy5jx5rd31gyaqi69f" + "commit": "35a9822ba130613b7ae88d241df48556aaff01b3", + "sha256": "0h82dq2r0bxsv5il15nb9j2v3pikc5g7aaiwvrlkkfjc7ld563a9" } }, { @@ -106806,6 +108341,21 @@ "sha256": "126zs059snzpg83q9mrb51y0pqawwrj9smr3y7rza4q4qkdp1nk0" } }, + { + "ename": "sticky-shell", + "commit": "8e0e00197932ecea0963ea4c2c450d9b60c346d4", + "sha256": "1zmksmckz320yj1hw0ng4iii8xqjhz4am7nkrqqqipd82s1whrzv", + "fetcher": "github", + "repo": "andyjda/sticky-shell", + "unstable": { + "version": [ + 20230207, + 1454 + ], + "commit": "030535451b7c12eea3a94dfc1a439b8baa96944b", + "sha256": "0l1kmrkhykqbsmasjrrffgwahycdpi2jdpl4hn5y3p3xv16yhcwq" + } + }, { "ename": "stickyfunc-enhance", "commit": "e24454febf90ec18a587b2c187a2bd2101e1b7b5", @@ -106829,11 +108379,11 @@ "repo": "motform/stimmung-themes", "unstable": { "version": [ - 20220906, - 643 + 20230209, + 1359 ], - "commit": "4ff97e9d781df9a33dfaf3724d97b072d5c1f55a", - "sha256": "1h8qngjsnq4ghdm64vncnjfa6a85ssk5zy9g5hscmxnxbjv5483q" + "commit": "518b7ad3b6b8234d5a34dca1301f218f786e0a1c", + "sha256": "0066ddnw8ijxbh3snqkkysalf84qj0r5rk4d5zpvzbsals6dhcr3" } }, { @@ -106863,15 +108413,15 @@ "repo": "beacoder/stock-tracker", "unstable": { "version": [ - 20220523, - 1424 + 20230105, + 503 ], "deps": [ "async", "dash" ], - "commit": "14fe70fcce24a045f34e42617432a2d830906b98", - "sha256": "0854qx7vfycf8dfr8amksb0iv4nydbqn0g5357s3dfwmpj6rvvzk" + "commit": "327488e0f1232616bf33ab1a69da1a53aca25371", + "sha256": "14rqxr2w6jcz9vaq3v0mpm3jxv4dyl95y4c5pvgvh8h97gxjb16x" }, "stable": { "version": [ @@ -107091,17 +108641,17 @@ }, { "ename": "stumpwm-mode", - "commit": "caaa21f235c4864f6008fb454d0a970a2fd22a86", - "sha256": "11yk7xmmccgv7hin5qd1ibcsm1za01xfwsxa25q7vqwk6svnb0sf", - "fetcher": "git", - "url": "https://git.savannah.nongnu.org/git/stumpwm.git", + "commit": "270e13913999312a4e8ae16cfb0bb8aad0068043", + "sha256": "0mildw327qgj6sgx0m0ks6vmvzg1h8mmyw1hmrfqrp2xsk2zb0g8", + "fetcher": "github", + "repo": "stumpwm/stumpwm-contrib", "unstable": { "version": [ - 20140131, - 216 + 20171027, + 214 ], - "commit": "a920d31bac148e7f6afa98c05f98920135de8b89", - "sha256": "0hg2dhgph1fz8z6c79ia2j36wnbqgi6a7fjiz3wngslhbwy28xq7" + "commit": "333d210cacc7ebac76e14dfc8c0139f0e399c9a7", + "sha256": "1nbk1sqfnyn65mkmgaiyznyqbihrxmlr9nn36p8152dfia71rjnz" }, "stable": { "version": [ @@ -107509,19 +109059,20 @@ "repo": "tlikonen/suomalainen-kalenteri", "unstable": { "version": [ - 20220804, - 657 + 20230102, + 904 ], - "commit": "8a41d16371ffaface70739ec861709f674b4a94a", - "sha256": "0rpkwns05aa4d5ix0ffkh2gzag75dvqb78gqhihq560jb83qhc5z" + "commit": "95d8b7f9b404c749831d7b4e0e396c76bd822015", + "sha256": "107fzsz7c1cl92ryl6dg198bi5jpkl99rlgw544my2yw728bwnfk" }, "stable": { "version": [ - 2022, - 8 + 2023, + 1, + 2 ], - "commit": "8a41d16371ffaface70739ec861709f674b4a94a", - "sha256": "0rpkwns05aa4d5ix0ffkh2gzag75dvqb78gqhihq560jb83qhc5z" + "commit": "95d8b7f9b404c749831d7b4e0e396c76bd822015", + "sha256": "107fzsz7c1cl92ryl6dg198bi5jpkl99rlgw544my2yw728bwnfk" } }, { @@ -107646,14 +109197,14 @@ "repo": "rougier/svg-tag-mode", "unstable": { "version": [ - 20220525, - 1752 + 20230110, + 1824 ], "deps": [ "svg-lib" ], - "commit": "6e52f7c17e92c83476d6278869bf3f55d91ac9c9", - "sha256": "0zx81qjbxm0xzl2whs103py4pd2lqnrj46v50kh90nzz9yz5hxrl" + "commit": "9f5c2cb862fcba96f247b85fdd1b7dffff7af93a", + "sha256": "10gy0pa0147phgx75hh21kgpg4j78v5dcl7alfq6apsximjz8w9f" } }, { @@ -107768,25 +109319,26 @@ "repo": "thblt/sway.el", "unstable": { "version": [ - 20221101, - 2243 + 20221211, + 1439 ], "deps": [ "dash" ], - "commit": "6268291a29da9c6165432f9bbdebf6bab13c72f5", - "sha256": "0cbk44ldrimb9aai1az5vq63m32qcpapc1hsy13lxwnwi2ixcr6w" + "commit": "117eb40691e7a4d2dcd6b5a7fd9f803c7d42c32c", + "sha256": "08jjwh2d1hjbbv493qgaznxjhjhm7ama27wcnaag6mics7ivn59n" }, "stable": { "version": [ 0, - 4 + 6, + 1 ], "deps": [ "dash" ], - "commit": "8a3487115eec5893d317254b423f2ce058f5f795", - "sha256": "1vsz6jdkqh2haphdlyxj7zxaj8bngy1wiljlwv8snci65g9n4479" + "commit": "117eb40691e7a4d2dcd6b5a7fd9f803c7d42c32c", + "sha256": "08jjwh2d1hjbbv493qgaznxjhjhm7ama27wcnaag6mics7ivn59n" } }, { @@ -107880,14 +109432,14 @@ "repo": "swift-emacs/swift-mode", "unstable": { "version": [ - 20221119, - 910 + 20230117, + 1113 ], "deps": [ "seq" ], - "commit": "6d7093fb4a0b81686ffeff7e39f76027d83b7eb2", - "sha256": "0x27wj5kc77qwnvzm905np37w8rn96i1d104pa882z6pd4bx46ps" + "commit": "778e9e6f35b41fd171bd9f42fd7b89c1001e2a82", + "sha256": "0fxlplpbigbzjis6qdfi51l9a4rxvgmjx60qyfjvhv0gvxl9f9hj" }, "stable": { "version": [ @@ -108201,14 +109753,14 @@ "repo": "wolray/symbol-overlay", "unstable": { "version": [ - 20220304, - 917 + 20230117, + 1227 ], "deps": [ "seq" ], - "commit": "c439b73a5f9713bb3dce98986b589bb901e22130", - "sha256": "0n2yknbhwbgbrvmgxk2j2hm5gkdh6m9p5y8vpq758bxf5xk6npzm" + "commit": "ed007230378b03f384b5a2b643dd857010ef21d3", + "sha256": "0hls2qfxrhzdvsfa28brj5yml6zl5djg8kc9m4wk3yx18cas5gvy" }, "stable": { "version": [ @@ -108271,8 +109823,8 @@ "repo": "drym-org/symex.el", "unstable": { "version": [ - 20221111, - 2236 + 20230119, + 1943 ], "deps": [ "evil", @@ -108282,10 +109834,11 @@ "lispy", "paredit", "seq", - "undo-tree" + "tree-sitter", + "tsc" ], - "commit": "32f4d28fd115c0ba417f48afafef62a6cc0c264c", - "sha256": "0ppcadpl7mrrv84n8vqym6g8b9srg9nhclbzlcjx0mqksa6p6mlr" + "commit": "cddb1644ce1fff6724280cc5eae7f6ed1597ae80", + "sha256": "1p3h9qlkvzjniq599awhjz3gy65nz8hwjq5fx9gbgda37v3fag71" }, "stable": { "version": [ @@ -108438,14 +109991,14 @@ "repo": "emacs-berlin/syntactic-close", "unstable": { "version": [ - 20220618, - 817 + 20230122, + 1946 ], "deps": [ "cl-lib" ], - "commit": "28410740e42ad9bb84416164406269b177fb49fa", - "sha256": "0mxnnrrqkpyjqps6fs7bwy6n4jvl0glwkmzk1fbcy1cmkl1pxm80" + "commit": "9686e48edd6223a64ee7cc70ca2adb636992297e", + "sha256": "1xqyqjs8krh24b624h3dhzclminnk22kxk5a61z4y81fbk7mvv5d" } }, { @@ -108627,11 +110180,11 @@ "repo": "holomorph/systemd-mode", "unstable": { "version": [ - 20210209, - 2052 + 20230201, + 302 ], - "commit": "b6ae63a236605b1c5e1069f7d3afe06ae32a7bae", - "sha256": "0q1f5mnx6npr6c94x93lyza87kxjy08v7x4by13wp23fxaqxgzaf" + "commit": "8742607120fbc440821acbc351fda1e8e68a8806", + "sha256": "1cf63r0f8mg4zl6min48f8wby2k7g4v60lyw6j8gsjz8ppww8gx2" }, "stable": { "version": [ @@ -108868,14 +110421,14 @@ "repo": "mclear-tools/tabspaces", "unstable": { "version": [ - 20221114, - 1744 + 20230212, + 531 ], "deps": [ "project" ], - "commit": "f25bb670c0f7b3f7555634d19fcdd3eb979ac7c0", - "sha256": "0y32r7p4mh56zjhmd5pfkgic3gx0xlwabay690pxzl9sqjpnai4p" + "commit": "6975c51a2154604db70fd38eba27cf784cc3c4a6", + "sha256": "0i01q1fv6kdpf3fmhdagh7wlhycy3c6lmqkjkhiah55h7xymr8rk" } }, { @@ -109035,11 +110588,11 @@ "repo": "11111000000/tao-theme-emacs", "unstable": { "version": [ - 20221108, - 9 + 20230111, + 1606 ], - "commit": "632e735c70b16828b3f50bd415b5e218e9780ead", - "sha256": "1h1lskg0nysp3xpzpqn90p05fzvix1dpws5fmrklfbd7m7nzbn2a" + "commit": "5525e49357d066c0dca4ccc12ca69804e46577f2", + "sha256": "0vcvhksiwc2gpz90gl5911nmds4rqgdhk1v3gbpj7cbhi1imrfx5" }, "stable": { "version": [ @@ -109101,14 +110654,14 @@ "repo": "phillord/tawny-owl", "unstable": { "version": [ - 20191108, - 1346 + 20210528, + 1710 ], "deps": [ "cider" ], - "commit": "079028b7547743a36384650981ea068849aac53e", - "sha256": "06sjr4fv8p8y56a35pzghn89r1nzr2h5h3m98h0296bgnz8jgyg2" + "commit": "5da72b601cb9f052f35e88c41f1a18b326c03791", + "sha256": "1hhwyh4qkmhc303sf4qsarpczyqihh45z2xb96m2ra5zlqnklcpp" }, "stable": { "version": [ @@ -109166,8 +110719,8 @@ }, { "ename": "tc", - "commit": "9fddfc79ed2c614c33e90ba80f300912fdab88a3", - "sha256": "05lnsaizlh4wqjkp0wqcm1756r9ia46as8zf01k8qsi0mm452g6q", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1l73y78k3snx2174kz3zv5gv74f3sm4jfy14l35kgyq8ddw3zfkg", "fetcher": "github", "repo": "kanchoku/tc", "unstable": { @@ -109250,15 +110803,15 @@ "repo": "zevlg/telega.el", "unstable": { "version": [ - 20221105, - 1528 + 20230212, + 1547 ], "deps": [ "rainbow-identifiers", "visual-fill-column" ], - "commit": "870fe3201c14f828cfec0529aa78c110958e9aae", - "sha256": "1xrcgkrz8x24wb6k9f5jss6dixdzng1lsyw3jby5r19xsi742fc6" + "commit": "37e7eb805bc247ecc644308f1f2a4ed9a6d30624", + "sha256": "0bc0v7ix59cq269raxl6pdq12qd4rnq7012mix55rmy6llb17jb4" }, "stable": { "version": [ @@ -109371,19 +110924,43 @@ "repo": "minad/tempel", "unstable": { "version": [ - 20221016, - 1017 + 20230215, + 721 ], - "commit": "7d7adf155760d33b8c391fbf1e99c5be85bab85a", - "sha256": "1za73zszj373r8pxf89cwwfrwsf8dy6nxciw11adcccrm92xwdsz" + "deps": [ + "compat" + ], + "commit": "66e4763087f3e851956b9a77a00527b440737d03", + "sha256": "1qhy9rp0k74hbqns67iwyzk86x7rriqyd4l48j5qqmfvr3v5sg1m" }, "stable": { "version": [ 0, - 5 + 7 ], - "commit": "7d7adf155760d33b8c391fbf1e99c5be85bab85a", - "sha256": "1za73zszj373r8pxf89cwwfrwsf8dy6nxciw11adcccrm92xwdsz" + "deps": [ + "compat" + ], + "commit": "66e4763087f3e851956b9a77a00527b440737d03", + "sha256": "1qhy9rp0k74hbqns67iwyzk86x7rriqyd4l48j5qqmfvr3v5sg1m" + } + }, + { + "ename": "tempel-collection", + "commit": "f5771cd6a865393c809adb1d9b3d58daa32cd146", + "sha256": "15syfqr46d5dx7ikdqr1jj74mb6rcij66v5ihhxdhk9acdianzl3", + "fetcher": "github", + "repo": "Crandel/tempel-collection", + "unstable": { + "version": [ + 20230103, + 2244 + ], + "deps": [ + "tempel" + ], + "commit": "7ef22ea7aaf699632a1d02d47a9a505ae8bc52c3", + "sha256": "0gvvxkgmj84ivnav0v98m6nhas6mbkhxqqj1ba5gj334h7gxyl4n" } }, { @@ -109436,16 +111013,16 @@ "repo": "kostafey/temporary-persistent", "unstable": { "version": [ - 20200201, - 1719 + 20230115, + 1425 ], "deps": [ "dash", "names", "s" ], - "commit": "0080879b0257d350aeba1c4d6901613d7dc534de", - "sha256": "1np9xh6gqynp96rby2shh4w40r14vsvpvwaibq0c1wr1ydwggm9i" + "commit": "edbde738769e79ac212ae84ae7898ffd5f19e0f1", + "sha256": "0v99azfslg8p6wxs3yf3qq3dzy0f6n9dw5ydj94jrys2ka5gbw1s" } }, { @@ -109771,15 +111348,15 @@ "repo": "ternjs/tern", "unstable": { "version": [ - 20181108, - 722 + 20191227, + 950 ], "deps": [ "cl-lib", "json" ], - "commit": "40a0c74db3888b997a9115720ff91c399bb1b146", - "sha256": "0dh0bfs0knikzn4gvjh9274yhbg3ndw46qmj4jy0kxh7gfl2lpkh" + "commit": "0d19800db70a6348c627a69f444b91d21ad89629", + "sha256": "0ydrxxc3lgs8mpg577iw5sfxgyqfbdkrghwxmv8sxf6sawvhx8zv" }, "stable": { "version": [ @@ -109803,16 +111380,16 @@ "repo": "ternjs/tern", "unstable": { "version": [ - 20170521, - 1935 + 20191227, + 950 ], "deps": [ "auto-complete", "cl-lib", "tern" ], - "commit": "d545bbdd8482c231211f9521c688fc06632e745e", - "sha256": "0ribzvl5gs281chp2kqaqmjj9xji7k9l71hsblfw1vj2w9l7nw2m" + "commit": "0d19800db70a6348c627a69f444b91d21ad89629", + "sha256": "0ydrxxc3lgs8mpg577iw5sfxgyqfbdkrghwxmv8sxf6sawvhx8zv" }, "stable": { "version": [ @@ -109837,15 +111414,15 @@ "repo": "jacksonrayhamilton/tern-context-coloring", "unstable": { "version": [ - 20161218, - 747 + 20170102, + 2253 ], "deps": [ "context-coloring", "tern" ], - "commit": "db0466c650ed4f7e6621a48dfdc53eaf5e127be9", - "sha256": "093mdq97gc0ljw6islhm7y1yl3yf7w4gf205s96bnsnb1v952n63" + "commit": "3a8e979d6cc83aabcb3dda3f5f31a6422532efba", + "sha256": "1rq5aqmsd7jqvwypafad9gmfcwjqjah00j7cws46k5f0dirjaa1y" }, "stable": { "version": [ @@ -109893,15 +111470,15 @@ "repo": "emacsorphanage/terraform-mode", "unstable": { "version": [ - 20221117, - 409 + 20230130, + 2153 ], "deps": [ "dash", "hcl-mode" ], - "commit": "80f0433358b79ed4ba88c51829c7359baa1af8b1", - "sha256": "0gcxsd9zv47hzq1d5xqblyzgcf7vk215743s7x7ciiiwlg5xndnw" + "commit": "39d2fd5bfc86c6bf1c7bc38e6f0016d714f2d79d", + "sha256": "1ancpn3v176lzxd95xshbsna307y55idirbqjsfhpivhvcq6y9g7" }, "stable": { "version": [ @@ -110050,14 +111627,14 @@ "repo": "TobiasZawada/texfrag", "unstable": { "version": [ - 20220508, - 642 + 20230117, + 1746 ], "deps": [ "auctex" ], - "commit": "bcceb82971c10b8c0b058b77b3764669900392aa", - "sha256": "1awlh7z18wzp2mppn21chbylqf3fmjlq8v4105kwg9mmw57xjyb7" + "commit": "6df9044c3d6bbb2a104f2c9b78ad10aa3cdf9506", + "sha256": "1qwp9nb0dswjr7alsrcwbjym0k56ncd0k5plhcsz8liz5886qfdy" }, "stable": { "version": [ @@ -110095,11 +111672,11 @@ "repo": "juba/textile-mode", "unstable": { "version": [ - 20210912, - 906 + 20230112, + 1030 ], - "commit": "a49d9bf42166584cca395a92311e9d0a199efc46", - "sha256": "0b7vbqy2ryp5c0jz7gb5ddpa3mlqmkd7jlf94hdb0d0ffapspqsv" + "commit": "8f8c09ef097a95a713307fdb5c92b9778dfbc1fc", + "sha256": "0x8ib6cm7rp6hf44348nnc937w98v5q0fv9r650jjvkfl9rkbm7b" } }, { @@ -110429,21 +112006,21 @@ "repo": "facebook/fbthrift", "unstable": { "version": [ - 20200212, - 1903 + 20230212, + 2005 ], - "commit": "37a3d2d055bc741b183679647b40b28585a71bd2", - "sha256": "1n6j8kaajqi31n0crv6qr4qbdagx5iscqmm1cyll8sdmfr20xrcl" + "commit": "399e2f7bdc7fb68cccaa45a4c94b50bc1d15f198", + "sha256": "0y0vkni9n8kvlk11pxv5kl1hnjgpb41skigm0l5kzjn6479bwwxp" }, "stable": { "version": [ - 2022, - 11, - 14, + 2023, + 2, + 13, 0 ], - "commit": "68ba6854cce62923446c15e7f638417a8d7da7c8", - "sha256": "06nf0cs5cyi69d15471j4mnwbkkli80jnffpkwb23173q2n10h81" + "commit": "399e2f7bdc7fb68cccaa45a4c94b50bc1d15f198", + "sha256": "0y0vkni9n8kvlk11pxv5kl1hnjgpb41skigm0l5kzjn6479bwwxp" } }, { @@ -110493,26 +112070,26 @@ "repo": "tidalcycles/Tidal", "unstable": { "version": [ - 20221001, - 2224 + 20221223, + 1759 ], "deps": [ "haskell-mode" ], - "commit": "aa5f3a976567552de57090e1b67b537cd08b4367", - "sha256": "0rjpg4ig1wjc6k9dicb2nyc2bvxhwlrj4mb0agpy434j1f1xdm2z" + "commit": "14064165cd5b6719af4605087d6e81332920ad60", + "sha256": "11siqw72q7bjhnyd92k35v7ssaxa845v5ax8nlnc3li7bi2vv0gq" }, "stable": { "version": [ 1, 9, - 2 + 3 ], "deps": [ "haskell-mode" ], - "commit": "32479866eab79466d479d6565d7c06a374d6d2d7", - "sha256": "003858lbdkf1liafgnpvn8pi6f7bnkff4k44x890dbbkczyi924i" + "commit": "14064165cd5b6719af4605087d6e81332920ad60", + "sha256": "11siqw72q7bjhnyd92k35v7ssaxa845v5ax8nlnc3li7bi2vv0gq" } }, { @@ -110523,18 +112100,17 @@ "repo": "ananthakumaran/tide", "unstable": { "version": [ - 20220514, - 614 + 20230129, + 1346 ], "deps": [ "cl-lib", "dash", "flycheck", - "s", - "typescript-mode" + "s" ], - "commit": "96bfc5da11a9b83b32368c38e933a405270652de", - "sha256": "1py0z8nrkgh3lzsmgxq62bi2nbdx3c97194frjyb5wl81kh4pbbp" + "commit": "29475d9eee26f4101322209e9b6b199df5386094", + "sha256": "05pp0sijyw1q2vfgpir76vmm102k3lhpz6gynqz3ha98xir5j7yj" }, "stable": { "version": [ @@ -110596,26 +112172,26 @@ "repo": "swflint/time-block-command", "unstable": { "version": [ - 20221102, - 1811 + 20230210, + 136 ], "deps": [ "ts" ], - "commit": "5e2c7c050378307e25f3964e082c5ee531ae00b2", - "sha256": "00akh3fcm335glr4lm3nwxhlxf363f6ipk2a7x31sclmwd6jn5fj" + "commit": "e0dcf6eb13871df41b081b9cdaadced722c3ba54", + "sha256": "0vywwr45ylrdaakvc6ilbq0kwsgqvyx8xpfp21n7kprqgnigal2g" }, "stable": { "version": [ 1, 2, - 1 + 2 ], "deps": [ "ts" ], - "commit": "5e2c7c050378307e25f3964e082c5ee531ae00b2", - "sha256": "00akh3fcm335glr4lm3nwxhlxf363f6ipk2a7x31sclmwd6jn5fj" + "commit": "e0dcf6eb13871df41b081b9cdaadced722c3ba54", + "sha256": "0vywwr45ylrdaakvc6ilbq0kwsgqvyx8xpfp21n7kprqgnigal2g" } }, { @@ -110768,6 +112344,52 @@ "sha256": "13adchpry39fv3rz3mnc21hr66d176d52hbgmgh5p8p9ylay7xha" } }, + { + "ename": "timu-caribbean-theme", + "commit": "ab002b78cc839615ea53342250d185438ab16ae7", + "sha256": "03yqh3kx1irz68bxbs0zl1sply4b3ikhbpaa088kza1dgdc2nvn5", + "fetcher": "gitlab", + "repo": "aimebertrand/timu-caribbean-theme", + "unstable": { + "version": [ + 20221226, + 1556 + ], + "commit": "af60151fe35bd1c780b7c4a37032699989ee6162", + "sha256": "0x74vnxkwl1jvkl2fizdkg0v73qjmx2dk68cs49k0b8z0n61w8l7" + }, + "stable": { + "version": [ + 1, + 5 + ], + "commit": "af60151fe35bd1c780b7c4a37032699989ee6162", + "sha256": "0x74vnxkwl1jvkl2fizdkg0v73qjmx2dk68cs49k0b8z0n61w8l7" + } + }, + { + "ename": "timu-macos-theme", + "commit": "326e7cad6877d42bc1809b549503332c98547dcb", + "sha256": "0bxlxjn7fivv72pxchs164941g3y3bylhhzsssik0gwrsyd7x8ay", + "fetcher": "gitlab", + "repo": "aimebertrand/timu-macos-theme", + "unstable": { + "version": [ + 20230201, + 2203 + ], + "commit": "665c6e409c7d6a37575b3e64961b17ae3db18cb8", + "sha256": "17rr28amksxsz2djz0gwdmr3xki7229pcgm841k5dp109l6n9bip" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "bd15dd91086943c7c025895f5f921e1f8253e478", + "sha256": "17rr28amksxsz2djz0gwdmr3xki7229pcgm841k5dp109l6n9bip" + } + }, { "ename": "timu-rouge-theme", "commit": "5062b3e2d0d1b3bdbde2d0f58ca42952e90a9acf", @@ -110776,19 +112398,19 @@ "repo": "aimebertrand/timu-rouge-theme", "unstable": { "version": [ - 20220717, - 2158 + 20230102, + 1925 ], - "commit": "bbfc8bbba01e5caa9d11628f0bc2276605c75901", - "sha256": "0r2647yll9yx9i5i1j2gqr8ammxll5pc367prs9jz8il6nd4irpa" + "commit": "87117f15ea5fcfacbbad23ea6f345d18c2ff0009", + "sha256": "1w67jy0vqmdqq1k2jj60nya8jiwy4kadzyyq534ic9iy9gb4rjan" }, "stable": { "version": [ 1, - 4 + 9 ], - "commit": "02281cde75ab7e5bb624003dc0de035dc14f2469", - "sha256": "1xv0cjiwl86hvyb9f8awjwx14b158qpnlmfxlxn7f0z3lzim9d7x" + "commit": "87117f15ea5fcfacbbad23ea6f345d18c2ff0009", + "sha256": "1w67jy0vqmdqq1k2jj60nya8jiwy4kadzyyq534ic9iy9gb4rjan" } }, { @@ -110799,19 +112421,19 @@ "repo": "aimebertrand/timu-spacegrey-theme", "unstable": { "version": [ - 20221007, - 1029 + 20230102, + 59 ], - "commit": "278ff2d30f3c2f657c0a828d177ecb37837386d5", - "sha256": "0c879srhnn6fqmsnh9mjfdbrilwrymh8x2wn0w3jw0pp7x3brp65" + "commit": "0d0d977c2149f695de0e4de55ae64a672c34bfac", + "sha256": "0j4p7qckrywpph63m140l4d713c9kx91didyflfpnr1wgy6pzq3v" }, "stable": { "version": [ 2, - 1 + 6 ], - "commit": "d8db5dceb95144ad50c1dc3577196eef7a10d5b3", - "sha256": "14r325a9qq9xigqbp03dbblc8lnw3hz7hbnmj9d58jshd6avdcnc" + "commit": "0d0d977c2149f695de0e4de55ae64a672c34bfac", + "sha256": "0j4p7qckrywpph63m140l4d713c9kx91didyflfpnr1wgy6pzq3v" } }, { @@ -110964,6 +112586,21 @@ "sha256": "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6" } }, + { + "ename": "tmsu", + "commit": "0d546d03d27303217a083f1a18f21098d5102387", + "sha256": "12n4p74y4qpcvah9819incwykl3q0y7zbvd9dlk7b7qffqx5h08p", + "fetcher": "github", + "repo": "vifon/tmsu.el", + "unstable": { + "version": [ + 20230207, + 1438 + ], + "commit": "26fb81d2667c88bef4f571c87bd9842d1be21234", + "sha256": "0lkvsqgp5cwi39n37b32dfjrdsk21j6r3q5lx4px84w2sqhm5gg1" + } + }, { "ename": "tmux-pane", "commit": "8bc165e115a2c457e44ac2762cf6a9f07f1b99c4", @@ -111030,16 +112667,16 @@ "repo": "abrochard/emacs-todoist", "unstable": { "version": [ - 20221101, - 1418 + 20230120, + 2208 ], "deps": [ "dash", "org", "transient" ], - "commit": "bfd496dad20bd34ffb0c2301c004a195262718c1", - "sha256": "0xc7pdb347cp82kyhsm448qy6xrgl91ji9bzb19bflp3ic9fmjjl" + "commit": "d79b4ea4ea4891635966bfc2c769484d2916be80", + "sha256": "15hpayv41bb7gfy1s1mc0zmd8r1h8h5xmb18sgc4v6l1k4x17z1j" } }, { @@ -111143,11 +112780,11 @@ "repo": "topikettunen/tok-theme", "unstable": { "version": [ - 20221003, - 1909 + 20230219, + 1115 ], - "commit": "adef847adc38b9346ccb83df61ebc51e44776dc5", - "sha256": "078g924qvkg2bmm456n7ami14sl7lq51ssv2v0vlyd3wzmd637d7" + "commit": "0ace75bd3be5e756907d790c947a0cc15aa3c201", + "sha256": "1y80mrlr9kq1pzm8h02dsz5ci5jsvnd5bavishjkrnlbzkg4c6wx" } }, { @@ -111400,11 +113037,11 @@ "repo": "juergenhoetzel/emacs-totp", "unstable": { "version": [ - 20211018, - 1743 + 20230102, + 1707 ], - "commit": "680b2c969823b91e0b35afbe2a35a610cb2fa26a", - "sha256": "17ylcrz7gw1hyq9ls5anz7ycd5y6f3j06jxr6i80hj5ccylzy82c" + "commit": "a5e059b8475b32bc7f5ddadda248cf84449ed722", + "sha256": "0b76fxk9r3n9zii75q1957ivb6ap5px5h87kagxz083nl77jky7a" } }, { @@ -111415,11 +113052,11 @@ "repo": "chmouel/tox.el", "unstable": { "version": [ - 20160810, - 1555 + 20170404, + 1059 ], - "commit": "27a074b21238855ce3c33d22e42d69e2c2921205", - "sha256": "1m3f0i6vrkrncd7xsgz65m6595iv6yr4gbbzlis8p01kd98wbxfk" + "commit": "7655eb254038d5e34433e8a9d66b3ffc9c72e40c", + "sha256": "1212b7s00kw9hk5gc2jx88hqd825rvkz1ss7phnxkrz833l062ki" }, "stable": { "version": [ @@ -111484,8 +113121,8 @@ "deps": [ "w32-ime" ], - "commit": "41a9751b8cec1f8d88f51240140bc85e0d29205e", - "sha256": "0h0q5xmcm98sb28my07xnrfly5i55g8d90c2h570499gadg777sv" + "commit": "87f0677220b755f947fe5f373b6a34e1afb82f3c", + "sha256": "1xvhagynkhx4l0smbg9lz1kas7y25jpg66m1q5b32z3aagm90sb1" }, "stable": { "version": [ @@ -111550,11 +113187,11 @@ "repo": "emacs-circe/circe", "unstable": { "version": [ - 20210713, - 1609 + 20220421, + 1956 ], - "commit": "054adb71f685f96cef6cb28381c0080af22e729a", - "sha256": "1cqpyvv1ywywr3gd13yhn7wpysi9c429v2x9a7ddlqn03zfyhrkl" + "commit": "710f057fedae6e9b820cce9336fef24b7d057e4c", + "sha256": "0lrxd4hanaxj85nafsc0wss677slmyaks3qb7a95mj7vic3ib937" }, "stable": { "version": [ @@ -111657,14 +113294,14 @@ "repo": "magit/transient", "unstable": { "version": [ - 20221118, - 1443 + 20230219, + 1111 ], "deps": [ "compat" ], - "commit": "804c27f1f585c05a777c288fbcfa1c16a3c0cd45", - "sha256": "1krw6rhgc6qvldb83zg021n13gg22l5afddnzpas5z7c0p154dm9" + "commit": "6ddd4902033ab1844fc8399716f01171ec954f02", + "sha256": "1laxygkhb5s8w5iqbj6c10xii9ksyay0r9x0swwmg4s8zbas5qmi" }, "stable": { "version": [ @@ -111684,14 +113321,14 @@ "repo": "conao3/transient-dwim.el", "unstable": { "version": [ - 20220425, - 1331 + 20221225, + 1630 ], "deps": [ "transient" ], - "commit": "7b6e70fb49b9d18106748202011863ebc39b864a", - "sha256": "1qph3ffpvrx02a423hpmdfp15g9yqdd38bnmsa735cnnhqm3yshd" + "commit": "cb5e0d35729fc6448553b7a17fc5c843f00e8c1d", + "sha256": "03mk0rvi3mn2wbx817swqd5y784k446yh8l4vv892rjb81fchl2g" } }, { @@ -111745,14 +113382,14 @@ "repo": "holomorph/transmission", "unstable": { "version": [ - 20210705, - 2152 + 20221130, + 212 ], "deps": [ "let-alist" ], - "commit": "a03a6f5c7b133e0a37896b6d993dd6d6d4532cc2", - "sha256": "1znpl4ps0ah6lmrlyha6wbkbvnx90qkvksp5xp87apfb61zqzqwz" + "commit": "243d5dc15917df2611fd0c9f288faea17a00a396", + "sha256": "1dp1ypz0vwcggp09rwr1d7dh34d05vlxz0mvry9p44g58dc99cz0" }, "stable": { "version": [ @@ -111815,10 +113452,10 @@ "unstable": { "version": [ 20220921, - 827 + 831 ], - "commit": "e4a1fe564224bce61fbf72ad6f12805078cbf8db", - "sha256": "0yiwm91i6mqgz56pl38nlg862djahl21bm54j3ldgz43xyzmw8x4" + "commit": "ed0156a98b6fce94da9045bdffe369f390b70c0c", + "sha256": "13q9mm76pp2h3jhp5kyc3gynzzzzaiczhkc1lvwq1zmrca9bavr2" }, "stable": { "version": [ @@ -111898,15 +113535,15 @@ "repo": "tarsius/tray", "unstable": { "version": [ - 20220422, - 1628 + 20230212, + 2011 ], "deps": [ "compat", "transient" ], - "commit": "0ff79f738fbff38520d329aa93d59678cfc0e55f", - "sha256": "0kbkxvyf6i105bwllkzdg09rkq52v9bjr4hivp2mfvy5h8k3z4n0" + "commit": "15b0faa8fede31887598b8dd64b69362c10e8a8e", + "sha256": "0gw24wajmnwm8zhcsfvvwzn1rc20a2hyi42c2rpdkxfbw308b1x0" }, "stable": { "version": [ @@ -111998,15 +113635,15 @@ "unstable": { "version": [ 20221012, - 640 + 855 ], "deps": [ "ess", "tree-sitter", "tree-sitter-langs" ], - "commit": "9eb7c35a11d917bc417d8b7b109ed336d58bea53", - "sha256": "15lax4f8jdjsk4ba8f9x8is56qisg9p7cvwlragqdf38bkc29ynx" + "commit": "9669c00f3d3463e6769725af74c392891e269eed", + "sha256": "083m21lqgic910fqbxc104fai0vh2hrb7s2nlln43l7hlb8939b4" }, "stable": { "version": [ @@ -112061,14 +113698,14 @@ "repo": "erickgnavar/tree-sitter-ispell.el", "unstable": { "version": [ - 20221105, - 713 + 20230205, + 533 ], "deps": [ "tree-sitter" ], - "commit": "6d486371d641a809f44df21921e64ef381844e83", - "sha256": "1a1hgxd9f8b5n49bbyqlcswjwbyazjq7p75ng481mlkvb9hac1ic" + "commit": "d8c33c05f689c2cab36b8a9856811f18a4ab7c59", + "sha256": "19i2hv6zy9797dz4b6xrwlkci5fdq4v2mxd55li2bpd6sgga28ns" } }, { @@ -112079,26 +113716,26 @@ "repo": "emacs-tree-sitter/tree-sitter-langs", "unstable": { "version": [ - 20221114, - 1054 + 20230205, + 2032 ], "deps": [ "tree-sitter" ], - "commit": "df7d7d1a46b5145d4101f6b313d22e815e4f42b4", - "sha256": "0a34032r6vdnyg4akvil559q1jx091sbmzaq5l59a20pz8jxw349" + "commit": "d8f8ac4faeb4564fbb61e94a631b4672523d84a9", + "sha256": "1i8lhv404ijj52jjxrmljnrhby9jlrdgpymn2jfs4kml0x7qhsna" }, "stable": { "version": [ 0, 12, - 5 + 16 ], "deps": [ "tree-sitter" ], - "commit": "df7d7d1a46b5145d4101f6b313d22e815e4f42b4", - "sha256": "0a34032r6vdnyg4akvil559q1jx091sbmzaq5l59a20pz8jxw349" + "commit": "d8f8ac4faeb4564fbb61e94a631b4672523d84a9", + "sha256": "1i8lhv404ijj52jjxrmljnrhby9jlrdgpymn2jfs4kml0x7qhsna" } }, { @@ -112145,8 +113782,8 @@ "repo": "Alexander-Miller/treemacs", "unstable": { "version": [ - 20221107, - 2105 + 20230104, + 1319 ], "deps": [ "ace-window", @@ -112158,8 +113795,8 @@ "pfuture", "s" ], - "commit": "b19060f25e55514f3d798d9f5af2dcd5b94a6026", - "sha256": "12qq84hnilpgw5rvvbcabi7cj42n73abk07iqaf89b78qkl15vr3" + "commit": "9986d6cd3d2822db7ae0e6d8a275db7057f3e828", + "sha256": "0s9i5amc4bx223d3abikyr8cdkzpzbirfb3x6m26l6i430j8zsal" }, "stable": { "version": [ @@ -112195,8 +113832,8 @@ "all-the-icons", "treemacs" ], - "commit": "ba0afc8be921776b5813e44d5495f09556da087b", - "sha256": "1wdlk3y8hbl11vhnyp7s45i845lpnnqyf5a17glw36gfggjdin5c" + "commit": "861418d9d11b205930bd4555a40b430b9dde9dd4", + "sha256": "0l6pbfrkl0v1iyc43vyhchbcfy7cjhinn8pw07aq4ssh6lxil7kp" }, "stable": { "version": [ @@ -112226,8 +113863,8 @@ "evil", "treemacs" ], - "commit": "ba0afc8be921776b5813e44d5495f09556da087b", - "sha256": "1wdlk3y8hbl11vhnyp7s45i845lpnnqyf5a17glw36gfggjdin5c" + "commit": "861418d9d11b205930bd4555a40b430b9dde9dd4", + "sha256": "0l6pbfrkl0v1iyc43vyhchbcfy7cjhinn8pw07aq4ssh6lxil7kp" }, "stable": { "version": [ @@ -112320,8 +113957,8 @@ "persp-mode", "treemacs" ], - "commit": "ba0afc8be921776b5813e44d5495f09556da087b", - "sha256": "1wdlk3y8hbl11vhnyp7s45i845lpnnqyf5a17glw36gfggjdin5c" + "commit": "861418d9d11b205930bd4555a40b430b9dde9dd4", + "sha256": "0l6pbfrkl0v1iyc43vyhchbcfy7cjhinn8pw07aq4ssh6lxil7kp" }, "stable": { "version": [ @@ -112353,8 +113990,8 @@ "perspective", "treemacs" ], - "commit": "ba0afc8be921776b5813e44d5495f09556da087b", - "sha256": "1wdlk3y8hbl11vhnyp7s45i845lpnnqyf5a17glw36gfggjdin5c" + "commit": "861418d9d11b205930bd4555a40b430b9dde9dd4", + "sha256": "0l6pbfrkl0v1iyc43vyhchbcfy7cjhinn8pw07aq4ssh6lxil7kp" }, "stable": { "version": [ @@ -112385,8 +114022,8 @@ "projectile", "treemacs" ], - "commit": "ba0afc8be921776b5813e44d5495f09556da087b", - "sha256": "1wdlk3y8hbl11vhnyp7s45i845lpnnqyf5a17glw36gfggjdin5c" + "commit": "861418d9d11b205930bd4555a40b430b9dde9dd4", + "sha256": "0l6pbfrkl0v1iyc43vyhchbcfy7cjhinn8pw07aq4ssh6lxil7kp" }, "stable": { "version": [ @@ -112409,15 +114046,15 @@ "repo": "Alexander-Miller/treemacs", "unstable": { "version": [ - 20220221, - 2038 + 20220911, + 1427 ], "deps": [ "dash", "treemacs" ], - "commit": "b18a05b1f62074a40e6011d83cd4c92cbee040dd", - "sha256": "0975n5d1rl9dqi9qwsg724cjxl753rw30xxngg7qs6338mp77c1y" + "commit": "861418d9d11b205930bd4555a40b430b9dde9dd4", + "sha256": "0l6pbfrkl0v1iyc43vyhchbcfy7cjhinn8pw07aq4ssh6lxil7kp" }, "stable": { "version": [ @@ -112440,11 +114077,11 @@ "repo": "volrath/treepy.el", "unstable": { "version": [ - 20220919, - 759 + 20221205, + 2224 ], - "commit": "de1a2ddc3fd7152d0bfbd9e14312ff8a4864ab2b", - "sha256": "15dm6ccwr4k8dir384417hn7cg3alczrpx7xqf1sfady7q85xcv4" + "commit": "7c4a0d21322506a4d4b2301b4274ec955b429b47", + "sha256": "1q5wcnr3lnbk6rcwbjxnvhi11d57g4497pkm059714ca5pflvmlr" }, "stable": { "version": [ @@ -112456,6 +114093,30 @@ "sha256": "0pmrpij80m5kgcr8bw36r8wllgppasw08vn3ghwvis9srpaq75cn" } }, + { + "ename": "treesit-auto", + "commit": "a6c7df76503fe374132544679ec326b85a2605f0", + "sha256": "0dzvj7dic978drhkiw0smykchn597ha1j911wb1ncf92dq5mp92x", + "fetcher": "github", + "repo": "renzmann/treesit-auto", + "unstable": { + "version": [ + 20230214, + 2233 + ], + "commit": "2d3f9d9680f8481945e87ed99210efbb9875c13c", + "sha256": "0xzrx8h3ciwwkyv7m5mnncm3mpz80728hjhbhknk1jwhx2dn3bwr" + }, + "stable": { + "version": [ + 0, + 5, + 4 + ], + "commit": "2d3f9d9680f8481945e87ed99210efbb9875c13c", + "sha256": "0xzrx8h3ciwwkyv7m5mnncm3mpz80728hjhbhknk1jwhx2dn3bwr" + } + }, { "ename": "treeview", "commit": "76e3235134af34a522b5bee69f0a16a54cbd9b52", @@ -112499,11 +114160,11 @@ "repo": "emacs-elsa/trinary-logic", "unstable": { "version": [ - 20180904, - 2313 + 20230213, + 1217 ], - "commit": "886232c6d7e92a8e9fe573eef46754ebe321f90d", - "sha256": "10h6p2dwl2k2p35pi3n8y85qh5y0zrr9nhfr4sviwzj1nbqdrvdr" + "commit": "4268556d89831889a722302241c0de680de3731b", + "sha256": "17a9asi08vi6baagmhlm8qmsh8sbb52gphyg9jdydn1hji0qlk40" }, "stable": { "version": [ @@ -112523,11 +114184,11 @@ "repo": "ianyepan/tron-legacy-emacs-theme", "unstable": { "version": [ - 20220610, - 1746 + 20230103, + 617 ], - "commit": "72655ce5ea0580cc23966821d2813e4d5e961f93", - "sha256": "1ba7abw53qmn0d1swxcvgdx6xgrx79ql0mri5mm7nxf7abifskxp" + "commit": "710c5ef80835cc2f6fb40e51f782ab531048f86e", + "sha256": "10y4wp5c7ycj1sr938gw1zyqyzd307lzn5wv5qmv6z8r6xbh6vcs" }, "stable": { "version": [ @@ -112666,8 +114327,8 @@ }, { "ename": "tsc", - "commit": "f07a741d1a14f99a634041cc9b4c200e75461ae5", - "sha256": "03g9wyna387bcmqcb1z4g5ybmlsxh3vg24i0x3ynvkm8knj8nl2v", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1vcsha1r99kmcb8zvfabkkd3h1yzq04na0chjxi5c793rx5nl6n7", "fetcher": "github", "repo": "emacs-tree-sitter/elisp-tree-sitter", "unstable": { @@ -113044,11 +114705,11 @@ "repo": "emacs-typescript/typescript.el", "unstable": { "version": [ - 20220815, - 1954 + 20230116, + 1533 ], - "commit": "d79551c67ff5f2bd5f651eb411cdc66ceeb787e3", - "sha256": "0r57nxcwdpjckpv6lrk310p3hjivnlyfvqpfg9jd86y37bbaw8fa" + "commit": "4fcb4594819caf472ae42ea068a1c7795cf07f46", + "sha256": "12vw5mjl8d4cfv0z46180llmwdwfqrfp88p1fvgp2viizwmw03ym" }, "stable": { "version": [ @@ -113188,11 +114849,11 @@ "repo": "md-arif-shaikh/tzc", "unstable": { "version": [ - 20220513, - 434 + 20220520, + 557 ], - "commit": "8fa2aa5636448a3c3e7b59ea3fe38e80a268537a", - "sha256": "0qdh1y0jfm8w5xz1z3xy55jy3f7vdjg5gv6w451yszf33092sddc" + "commit": "f4e2273b65ace1ea56c9824c3bdb97925c98c8ba", + "sha256": "0aij1425cwj7423nls1dywxsr2xvzbmz0y6b2rargicxl066swrf" }, "stable": { "version": [ @@ -113259,16 +114920,16 @@ "repo": "rolandwalker/ucs-utils", "unstable": { "version": [ - 20150826, - 1414 + 20230119, + 2237 ], "deps": [ "list-utils", "pcache", "persistent-soft" ], - "commit": "cbfd42f822bf5717934fa2d92060e6e24a813433", - "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m" + "commit": "91b9e0207fff5883383fd39c45ad5522e9b90e65", + "sha256": "18yqzy8w4icp60z25ckbrx6wradm3m26vic35kmzr88msc0qdsva" }, "stable": { "version": [ @@ -113309,12 +114970,12 @@ "unstable": { "version": [ 20210929, - 1258 + 1301 ], "deps": [ "projectile" ], - "commit": "f0726b5aa3268a00794ca3380c0f0e15d0b72674", + "commit": "7819d5b78e5b52a09b36c634ce404dc8bc3711ef", "sha256": "0rl71y6mzfcfymkimin18pnfhsa1wb906jywr5jx8b0nwkxk227n" }, "stable": { @@ -113423,8 +115084,8 @@ "dash", "shut-up" ], - "commit": "bd52926ccf0b578ed7ef6667707634c5a8878936", - "sha256": "1ss671fhf4r0hrh67kfv9alp057bbnicp3s9s8bmssln25nln3gm" + "commit": "1d3587f1fad66a747688f36636b67b33b73447d3", + "sha256": "0qmvyy3xg5qi7ws8zcs934d6afsappr1a6pgfp796xpa9vdr4y6j" }, "stable": { "version": [ @@ -113519,11 +115180,11 @@ "repo": "ideasman42/emacs-undo-fu", "unstable": { "version": [ - 20221015, - 433 + 20230109, + 2256 ], - "commit": "9a7a297e98114deed6c66f7569b7d0ee4aa2ee0a", - "sha256": "1a0w645a79z74g2zh8yffmsjyf4vd1niaw8cq4r5wk8zlgg6dqqn" + "commit": "d59bba01de48a808a42d6e29e011ef641cdb6a77", + "sha256": "0bnwhcybvcb60wh3q71fy2jsprzy00g2ipcksnjdpqcwaqvjwdl8" } }, { @@ -113534,11 +115195,11 @@ "repo": "ideasman42/emacs-undo-fu-session", "unstable": { "version": [ - 20220731, - 2356 + 20230205, + 310 ], - "commit": "48544cb102fd3d761acf92598076b20bbb4075f9", - "sha256": "1qyb9ssglg0wnrrpkaqdkrc01f88i976c9fg7hyd7pknfjg7glrf" + "commit": "7b3fd0647dd1fbd02101eec61440e6d44953bcd9", + "sha256": "1vjpr2d9fdpc3slk8gav7vlld9v5nvz6wfs5fhig6m2icklvwhyq" } }, { @@ -113595,10 +115256,10 @@ "unstable": { "version": [ 20210106, - 220 + 222 ], - "commit": "8fbbd43fb95058a3f3452c6eb2bcc1559e93a86b", - "sha256": "01svn5hnnarq0sj35xkp92zigfs03n76mr783bh214p6sssyz3k3" + "commit": "8375d87ec184fbe964189e2f9b7263cdb1396694", + "sha256": "0pg64nza2mp4xyr69pjq51jsq1aaym0g38g4jzaxr0hh3w0ris1n" }, "stable": { "version": [ @@ -113699,15 +115360,15 @@ "repo": "kosh04/unicode-escape.el", "unstable": { "version": [ - 20160614, - 1234 + 20230109, + 1222 ], "deps": [ "dash", "names" ], - "commit": "04c7f22f90c96e93f998f084089ab08dc7f4fdd6", - "sha256": "01i5cq7yan9z1kr6pvp4bwzsnxs0bpqsaglfbvy7v6jfp923bvdm" + "commit": "afbb09c774571eefd4e639fc6163280476484363", + "sha256": "0svv3ncdh9h5cv1i0pkhghq8dfh6bjnwkv7908g0x827p4c2sglv" }, "stable": { "version": [ @@ -114055,10 +115716,10 @@ "unstable": { "version": [ 20220129, - 2013 + 2022 ], - "commit": "cb892d614df659783246393c4223ddd8b2d39cb7", - "sha256": "183v9kwva703s1bflsl6ypmxjy4syghkphl2s3yfyp2ra0fxmnrg" + "commit": "9095a3f870aa570804a11d75aba0952294199715", + "sha256": "1b78m66i00fg4f84kvwd82w3pb2rr3skf6cgckb0g1fsdzzhrjb8" }, "stable": { "version": [ @@ -114254,14 +115915,14 @@ "repo": "jwiegley/use-package", "unstable": { "version": [ - 20221117, - 1610 + 20230203, + 2004 ], "deps": [ "bind-key" ], - "commit": "9090080b15486c3e337be254226efe7e5fde4c99", - "sha256": "03mqkv63ink2ysy86slac8ac7a5g22bi0pwvxyncfasm43q9d0sx" + "commit": "77945e002f11440eae72d8730d3de218163d551e", + "sha256": "1irr8a8r28n8c0c2x5w1flgv1f3z5jy2i5r5dknddiqa93b3rm84" }, "stable": { "version": [ @@ -114284,8 +115945,8 @@ "repo": "jwiegley/use-package", "unstable": { "version": [ - 20221116, - 1928 + 20221117, + 1610 ], "deps": [ "bind-chord", @@ -114293,8 +115954,8 @@ "key-chord", "use-package" ], - "commit": "41bf2aaf8854973d06f79ef69a638d0ef3ccf2bc", - "sha256": "0jji4lydv80dl9brbjhf2vyrsf52564nkvlqdrf0xbgaxjh34bnk" + "commit": "9090080b15486c3e337be254226efe7e5fde4c99", + "sha256": "03mqkv63ink2ysy86slac8ac7a5g22bi0pwvxyncfasm43q9d0sx" }, "stable": { "version": [ @@ -114349,15 +116010,15 @@ "repo": "jwiegley/use-package", "unstable": { "version": [ - 20221116, - 1928 + 20221209, + 2013 ], "deps": [ "system-packages", "use-package" ], - "commit": "41bf2aaf8854973d06f79ef69a638d0ef3ccf2bc", - "sha256": "0jji4lydv80dl9brbjhf2vyrsf52564nkvlqdrf0xbgaxjh34bnk" + "commit": "bcf0984cf55b70fe6896c6a15f61df92b24f8ffd", + "sha256": "0pmz5x7ghwsjyr4lhaqa53c7190bjqxaczljpsr62s60bn55fdsi" }, "stable": { "version": [ @@ -114440,11 +116101,11 @@ "repo": "jcs-elpa/use-ttf", "unstable": { "version": [ - 20220930, - 1951 + 20221201, + 751 ], - "commit": "105577c6290934119978e23b168f0b97c9d586ba", - "sha256": "143iy63rlibxlyrzxj2qfh3vjwsdgzypimazs7vd6x7l4p45xzrj" + "commit": "3ae1dd908c822e98e017ada034181ad3ffebc1d6", + "sha256": "0f0gbhv6gi9spfsfwg9bjlz90029r9whzgfaba5qq8f9rs390c35" }, "stable": { "version": [ @@ -114464,11 +116125,11 @@ "repo": "ideasman42/emacs-utimeclock", "unstable": { "version": [ - 20220710, - 1024 + 20230201, + 143 ], - "commit": "32994d27771f77a384b246e69a621c4d26e27f4f", - "sha256": "1zjb0sr4z0qpdivzdpskidxcdl3c6y6f80yim7yfs1bhdd049kld" + "commit": "b5cdcc022dfe248f1fe7d85e735dd7d9434d200a", + "sha256": "135zfgjb4acf57yincpdgjckg1dzv9axm9h7izpalqn4y546kpp8" } }, { @@ -114479,26 +116140,26 @@ "repo": "diml/utop", "unstable": { "version": [ - 20221103, - 1446 + 20230105, + 1430 ], "deps": [ "tuareg" ], - "commit": "c596ac7b88ce0686bc8bf82dfa77fc055cdbfbef", - "sha256": "1nl18rshaw0f93i67n53s7f9x9ykn49bik14432zmr00kcddmn4q" + "commit": "595002e6f07e6a3c6abc6e94a1b2448006115f1b", + "sha256": "0a3imki76pz68s6s495wdw0ig5j8hiwrgbm2lj3ddsm5w2cxxi12" }, "stable": { "version": [ 2, - 10, + 11, 0 ], "deps": [ "tuareg" ], - "commit": "e56a75d2826fbe0ba3bc27a6d19fe08e02c3216d", - "sha256": "1pcix3h9f7is06581iax4i08zkd6sv8y5hy1vvxhqhcsd9z0qfl3" + "commit": "595002e6f07e6a3c6abc6e94a1b2448006115f1b", + "sha256": "0a3imki76pz68s6s495wdw0ig5j8hiwrgbm2lj3ddsm5w2cxxi12" } }, { @@ -114547,11 +116208,11 @@ "repo": "kborling/uwu-theme", "unstable": { "version": [ - 20221022, - 49 + 20230110, + 153 ], - "commit": "188d74cb279537f476c6f35b4e4f966d38884314", - "sha256": "16idjqc6bdqg60mv2h3bgip38j1mpfwpffckpg5vzan9ylsivxxx" + "commit": "6b66376b9d7053eb9c23449a601d24511a0b44e6", + "sha256": "1rkxsnxzgcqmhvll156ipncpcc252j2y1m2jbh7yq8h5m1sz1az9" } }, { @@ -114562,11 +116223,11 @@ "repo": "non/uxntal-mode", "unstable": { "version": [ - 20220502, - 154 + 20230131, + 235 ], - "commit": "3fa793964f287d448e3e2b53fd812803c5f5890e", - "sha256": "149nqrih95b2jvvj8nsl0msah646m8zrfgww8piwil1x16dy43a5" + "commit": "aaaa7a7ac24eb142c68f691185166327ec1e4520", + "sha256": "1bba89vw937rzcm1lr2ym9kkyd56wkgpzhc7dxz73nh74wwh4mf5" }, "stable": { "version": [ @@ -114655,8 +116316,8 @@ }, { "ename": "vagrant-tramp", - "commit": "baea9f16e245aec3f62e55471358c7208f61372d", - "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0yqy8nz4501wvzb9bqj2i2aimdkp04bnk40p33cwqakrkprg1gfq", "fetcher": "github", "repo": "dougm/vagrant-tramp", "unstable": { @@ -114751,8 +116412,8 @@ }, { "ename": "vbasense", - "commit": "8e7dd1e985d55149f48e4f93a31fb28ec01a4add", - "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0p9kc10xbbjlk9li1ch9589jykn290npq423xvb7zvj0bgjnfhzh", "fetcher": "github", "repo": "aki2o/emacs-vbasense", "unstable": { @@ -114851,11 +116512,11 @@ "repo": "venks1/emacs-fossil", "unstable": { "version": [ - 20220607, - 617 + 20221120, + 908 ], - "commit": "8ce6113aa272583130e5f929fefd67115c8f572a", - "sha256": "087na2g22dnyw52cwaxkzdgbl13p2ldvby7lmqg05bm02cmsv9c2" + "commit": "e059ca466cc8914757c6bdb26fa9cc6b0820a9c1", + "sha256": "0bsb1wv581cwkl46vqm6r726fikv701rvzgx2nqr2ws07p9y4v99" } }, { @@ -115313,6 +116974,35 @@ "sha256": "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n" } }, + { + "ename": "verilog-ext", + "commit": "0f5390a1b25d0f370ef11d310f292eda3a3a77f9", + "sha256": "02dccbf38imvg92zv6hdhw8ibc9rahrb1ppbvy3ngk346789l0dj", + "fetcher": "github", + "repo": "gmlarumbe/verilog-ext", + "unstable": { + "version": [ + 20230219, + 1437 + ], + "deps": [ + "ag", + "apheleia", + "company", + "eglot", + "flycheck", + "hydra", + "imenu-list", + "lsp-mode", + "outshine", + "ripgrep", + "verilog-mode", + "yasnippet" + ], + "commit": "dfda62a739a22b75695d53831d2a8d18a8f4f3f4", + "sha256": "1wy45w0h4c94851rhm4j87wrx9p92g93hfcl7ii0vpklqw8vdbhb" + } + }, { "ename": "verona-mode", "commit": "ad320d60e2c95881f31628c19ad3b9ece7e3d165", @@ -115375,8 +117065,8 @@ }, { "ename": "vertica-snippets", - "commit": "d3c8cb5c0fdbb6820a08091d8936dd53a3c43c56", - "sha256": "0044qcf6dyxp2h14ij6w19zs7ikx9xalfrz6jqbl8sy35wcihmhn", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1d39q0i1nzmcc36pmiavz10q2fi72mxmgn454qasl07lgsqyg795", "fetcher": "github", "repo": "baron42bba/vertica-snippets", "unstable": { @@ -115399,15 +117089,27 @@ "repo": "radian-software/prescient.el", "unstable": { "version": [ - 20221118, - 1427 + 20221216, + 112 ], "deps": [ "prescient", "vertico" ], - "commit": "680fefa4601586dd87d549d33f5ae6fda3212c35", - "sha256": "16k34jp07snzknyp2lg0g6vsb7pk96s0fplb9hdjq8w3n4kyirb1" + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" + }, + "stable": { + "version": [ + 6, + 1 + ], + "deps": [ + "prescient", + "vertico" + ], + "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", + "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" } }, { @@ -115454,6 +117156,30 @@ "sha256": "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d" } }, + { + "ename": "vhdl-ext", + "commit": "addd32ea66e8834de5b14a7d8493f34c8bba62b9", + "sha256": "051p2kx9vxn7di2qzi96hx53kqlwkg93w7jcpa3rjp114nk2f41s", + "fetcher": "github", + "repo": "gmlarumbe/vhdl-ext", + "unstable": { + "version": [ + 20230219, + 2252 + ], + "deps": [ + "ag", + "eglot", + "flycheck", + "ggtags", + "hydra", + "lsp-mode", + "ripgrep" + ], + "commit": "751f1d63ab6e08fec40ef8fda1cbead25dfbb316", + "sha256": "10nfyhxpan9if5zddff7szrc8al3ybcpvpd9rwn9a6nn0i0hj3xp" + } + }, { "ename": "vhdl-tools", "commit": "b1a3336bff4d677b3bc7fbb8ef230ffc7b78e268", @@ -115767,19 +117493,20 @@ "repo": "joostkremers/visual-fill-column", "unstable": { "version": [ - 20220519, - 1959 + 20230102, + 1830 ], - "commit": "453d698d7fc243a547665f8ba43c55eee574e0db", - "sha256": "168wiywaffhhn7j4nfbnq4lfxpxl0x17z9ckk3nwkpaz45d9a2q6" + "commit": "695a59789209c42fa08a5bce92963ee32f4455be", + "sha256": "0006x7vbwrx4w3b51aajzds0qaw3zb3b2wmj0c3j0anlrmyb37yz" }, "stable": { "version": [ 2, - 5 + 5, + 1 ], - "commit": "453d698d7fc243a547665f8ba43c55eee574e0db", - "sha256": "168wiywaffhhn7j4nfbnq4lfxpxl0x17z9ckk3nwkpaz45d9a2q6" + "commit": "695a59789209c42fa08a5bce92963ee32f4455be", + "sha256": "0006x7vbwrx4w3b51aajzds0qaw3zb3b2wmj0c3j0anlrmyb37yz" } }, { @@ -115957,11 +117684,11 @@ "repo": "k-talo/volatile-highlights.el", "unstable": { "version": [ - 20160612, - 155 + 20230219, + 1522 ], - "commit": "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392", - "sha256": "1dsa6769lphyyv7yg92vkkpk395w52q4m7hdn8xy7s6lh5c6a955" + "commit": "adb4fd02b295c2848c71ab2ed4ecc5249c053905", + "sha256": "1c7af99ixy7hk1bxas58rr0hqg233f0j8dskg7nhxkzgyidv9rar" }, "stable": { "version": [ @@ -115995,11 +117722,11 @@ "repo": "emacs-vs/vs-dark-theme", "unstable": { "version": [ - 20221024, - 1544 + 20221231, + 1702 ], - "commit": "94694257af1831359e645ae87a88437457d2fc49", - "sha256": "0cdywisdy3696qk5861gckd7pnkca7asnxnp2f24y384g2gjhpnp" + "commit": "636f4db45aa4dac1cda09b54757fdc3584ce6697", + "sha256": "1kyzlhhz70d228xpy8qjliyfxv68rgdn468jix9nfgj5i8q2xxhz" }, "stable": { "version": [ @@ -116018,11 +117745,11 @@ "repo": "emacs-vs/vs-light-theme", "unstable": { "version": [ - 20221024, - 1546 + 20221231, + 1702 ], - "commit": "344a4dc59ecb25be772b5a15f07b448f3eb339b9", - "sha256": "0xskb48klafspqwymfy9x708lxsgymd3r054nmalnl2z4q1wvh7s" + "commit": "988b649dcb9074719c7fd0ad3f289cf2995d7635", + "sha256": "0frmgyj71glsng83ila9kb7691kfxyblxjgy5dvilzwjc9a0g8p2" }, "stable": { "version": [ @@ -116056,11 +117783,11 @@ "repo": "ianyepan/vscode-dark-plus-emacs-theme", "unstable": { "version": [ - 20220320, - 530 + 20221121, + 1846 ], - "commit": "cec18a9d816fef372a4e70f6ad1e16a42aa93b06", - "sha256": "1byssa2rv2j9s3m10v7ihi1avqkjc5wqj62393wkp85k73z9v3dq" + "commit": "f33e1f92f6b34bbd7ecc81cb4c6d48f9cab393d9", + "sha256": "1s2jp3s6vnhdhdv53sp4qkpg19pxfjgwgpch9xc5nqb7ljk22fqx" }, "stable": { "version": [ @@ -116089,17 +117816,17 @@ }, { "ename": "vterm", - "commit": "570bde6b4b89eb74eaf47dda64004cd575f9d953", - "sha256": "0dd1fcpkhmk7c0r0bl93sack68iyfnnzmii40ixjhm7ma5ms0lnz", + "commit": "a560fc2dbcfd37485890faf5243fbdb653ecaf99", + "sha256": "196vad9hh44pc8r1qd7pv92wr4wa0ni92gjb8bd066a6aagxr6s7", "fetcher": "github", "repo": "akermu/emacs-libvterm", "unstable": { "version": [ - 20221118, - 1354 + 20230217, + 228 ], - "commit": "f14d113ee4618f052879509ec378feb9766b871b", - "sha256": "0alvh18agp815g5r2cwvyhfpspjfjz5gi84bg1xsi085g1wvgmbl" + "commit": "3e5a9b754b8e61850bb7d1b63b090b9fbf6687f3", + "sha256": "1px5nnwlnpiqry7s99ykvjf2hqryixnl6qvv9wj3808qkls6wykk" } }, { @@ -116238,8 +117965,8 @@ "repo": "d12frosted/vulpea", "unstable": { "version": [ - 20220714, - 1856 + 20221128, + 633 ], "deps": [ "dash", @@ -116247,8 +117974,8 @@ "org-roam", "s" ], - "commit": "8070a599583f0126a089f386e35df62451e51a91", - "sha256": "1zwgsg8p1xghzzim1kpzijin098p707skhwm38cgv258hp4sgw22" + "commit": "bee9bda6a17657155d233e375a2cae693fbe8676", + "sha256": "1j075p8716kfqd68rlfcax3rv8a2aggmz0m8hw3kic91q7psnb7m" }, "stable": { "version": [ @@ -116353,11 +118080,11 @@ "repo": "emacs-w3m/emacs-w3m", "unstable": { "version": [ - 20221116, - 2331 + 20230119, + 418 ], - "commit": "b1642c87fe83700a929aebb774c89071e23c84e0", - "sha256": "1qblbxv4zbyv2ax1m42wfh1nx6bpl7snixx0whg8jiiqmk9sy6rb" + "commit": "d7f99ea4561004f7f15e8d17f5f7a084d04f3925", + "sha256": "15dpxppfpwrkpfrvjpq6cwkkkkmywvv3rf3pn8psykc48qg1ri95" } }, { @@ -116612,22 +118339,22 @@ }, { "ename": "wanderlust", - "commit": "426172b72026d1adeb1bf3fcc6b0407875047333", - "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "03lv7fzwh3s87m8sf0jj69c7nsagj0bkiysjdn8l2vgh5br0pvzs", "fetcher": "github", "repo": "wanderlust/wanderlust", "unstable": { "version": [ - 20221117, - 1230 + 20230120, + 904 ], "deps": [ "apel", "flim", "semi" ], - "commit": "f5cb2f0cf5e2c893acf2e669fd549836828dfdfc", - "sha256": "1ijs57wv1vrh33vn311hgkp42vlmjyi998nc4qdrqi7yy9j8hl1h" + "commit": "77662986fd91cff991f502b19262227227740d52", + "sha256": "19iwyzvlidkxldyalppscfhpxj5cqgcn15gp8105xh9bwpwshfkz" } }, { @@ -116768,14 +118495,14 @@ "repo": "ruediger/weather-metno-el", "unstable": { "version": [ - 20150901, - 107 + 20230129, + 1540 ], "deps": [ "cl-lib" ], - "commit": "bfc7137095e0ee71aad70ac46f2af677f3c051b6", - "sha256": "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z" + "commit": "58b3aa479d85b4b38eb233ac2fbac40faf906f4c", + "sha256": "1r82arsrl7s4gvkfrkbjmwhg198f6r5gqbf7wq3z8m1wxapypsza" }, "stable": { "version": [ @@ -116835,8 +118562,8 @@ }, { "ename": "web-completion-data", - "commit": "604f155a3ce7e5375dcf8b9c149c5af403ef48bd", - "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "07bz8gkyqg4clifnrxqgwn2h3rd73607m6w86ni8vzni02s24wqd", "fetcher": "github", "repo": "osv/web-completion-data", "unstable": { @@ -116864,11 +118591,11 @@ "repo": "fxbois/web-mode", "unstable": { "version": [ - 20221012, - 800 + 20230206, + 1654 ], - "commit": "4b8a695825fda366927894e498421f35fce1cbb9", - "sha256": "0m8fhy3vgczgl051l05lycydpybki2b5gi63i134h2xmgm2m5rvq" + "commit": "df97ab62c94826a84adbde060a4111ca91deda8e", + "sha256": "1nvw1wrvh97gjrk72skp00r4dbdz0a1jsaxgxia3jgbmm6aa5l6l" }, "stable": { "version": [ @@ -117019,8 +118746,8 @@ }, { "ename": "weblogger", - "commit": "e8ccb10a5d1f4db3b20f96dee3c14ee64f4674e2", - "sha256": "0k0l715lnqb0a4hlkfjkyhr8i1jaml8z2xzhal7ryhjgvf8xinvs", + "commit": "ed9e52d5ddfca4fe7f139eff949596ad76c21002", + "sha256": "1r7xi5bm4b3b2zrcfk5k6lhbkp6bwl4zi08bzndywnz0bd5j15si", "fetcher": "github", "repo": "hexmode/weblogger-el", "unstable": { @@ -117105,20 +118832,20 @@ "repo": "xgqt/emacs-websearch", "unstable": { "version": [ - 20220823, - 42 + 20230210, + 1321 ], - "commit": "9336601462ce29822e6aa14db01d923a4bd1c6ef", - "sha256": "0vwsi1ibmw4947bm7c1yz6jvgphilh7039akckfknc6dpacic2r6" + "commit": "aa0d7899e032e330e2980aa4be34ed872395883b", + "sha256": "1z4y9clvpmgflfq13jmb1j4gy8ly93sfcjwmyf3sn25gld6dmnpi" }, "stable": { "version": [ 2, - 0, + 1, 0 ], - "commit": "a39858c0b81817e3defd7b02583287a4d020bc25", - "sha256": "0vwsi1ibmw4947bm7c1yz6jvgphilh7039akckfknc6dpacic2r6" + "commit": "aa0d7899e032e330e2980aa4be34ed872395883b", + "sha256": "1z4y9clvpmgflfq13jmb1j4gy8ly93sfcjwmyf3sn25gld6dmnpi" } }, { @@ -117129,14 +118856,14 @@ "repo": "ahyatt/emacs-websocket", "unstable": { "version": [ - 20210110, - 17 + 20230129, + 1601 ], "deps": [ "cl-lib" ], - "commit": "34e11124fdd9d73e431499ba8a6b6a8023519664", - "sha256": "066zql1zknnc1dlj9jj4dx7w8y8z2q6i2gnagy3jwwxc8j5pp0c2" + "commit": "2c576b6cb8e7b868e09e09c8e9cb6cf66f427bad", + "sha256": "0khrk3q88py4bcb0ir41cjyrclyqn864d4yknssflx5ppalcgyz1" }, "stable": { "version": [ @@ -117260,6 +118987,21 @@ "sha256": "0gxlz9b7fvbjkqxsyb4l75g7jsxyms0i1vpnb6y499hl115akcaz" } }, + { + "ename": "wfnames", + "commit": "a62d25c944bff5563303fdc4736697d9144d8eb7", + "sha256": "1y749nxrs6a7z81s91ggiax4r4dkvicf23xngab5yasj4ppsi6s8", + "fetcher": "github", + "repo": "thierryvolpiatto/wfnames", + "unstable": { + "version": [ + 20230117, + 729 + ], + "commit": "0804263fa22bf77fcdb65017ddedc168905f3228", + "sha256": "1mzi55hnnkx6xrl41vmp87bsxc2mjrb1r8cpbkf9si2pw9ldghlw" + } + }, { "ename": "wgrep", "commit": "9648e3df896fcd97b3757a727108bc78261973cc", @@ -117268,20 +119010,20 @@ "repo": "mhayashi1120/Emacs-wgrep", "unstable": { "version": [ - 20210322, - 2207 + 20230203, + 1214 ], - "commit": "f9687c28bbc2e84f87a479b6ce04407bb97cfb23", - "sha256": "090k2kznhdmzzd4hrs834mbr8kwady2ks1684kgzqjzvwhv36v6i" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" }, "stable": { "version": [ - 2, 3, - 2 + 0, + 0 ], - "commit": "fcd8c22748024342af15d54f3e7ab5596cf5c4bd", - "sha256": "00cwqzb94jlq4mwgv8z7r3mn0a6mhq95z6j189kacq9g4473zh8d" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" } }, { @@ -117292,26 +119034,26 @@ "repo": "mhayashi1120/Emacs-wgrep", "unstable": { "version": [ - 20200128, - 109 + 20230207, + 1125 ], "deps": [ "wgrep" ], - "commit": "088c04e2ca44eac7e7221f91668ce074915d2f4e", - "sha256": "1a2jvj00yk5wz7djbqaw8xnsappd66ld1liv6zsvv2qa6fnzvlka" + "commit": "edf768732a56840db6879706b64c5773c316d619", + "sha256": "1v4kh00vv7ccs8j46gyp0ikb6v3ppb1na2azdmxwyb6n2acvy4qx" }, "stable": { "version": [ - 2, 3, - 2 + 0, + 0 ], "deps": [ "wgrep" ], - "commit": "fcd8c22748024342af15d54f3e7ab5596cf5c4bd", - "sha256": "00cwqzb94jlq4mwgv8z7r3mn0a6mhq95z6j189kacq9g4473zh8d" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" } }, { @@ -117322,26 +119064,26 @@ "repo": "mhayashi1120/Emacs-wgrep", "unstable": { "version": [ - 20200217, - 1028 + 20230203, + 1214 ], "deps": [ "wgrep" ], - "commit": "253f93d2764b16a877ae83ecdba692c88eaded24", - "sha256": "15wwrzhaf6iycfwn7p0d6kd32axfpa7wvd72wahzaxx58v4kl8cz" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" }, "stable": { "version": [ - 2, 3, - 2 + 0, + 0 ], "deps": [ "wgrep" ], - "commit": "fcd8c22748024342af15d54f3e7ab5596cf5c4bd", - "sha256": "00cwqzb94jlq4mwgv8z7r3mn0a6mhq95z6j189kacq9g4473zh8d" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" } }, { @@ -117352,26 +119094,26 @@ "repo": "mhayashi1120/Emacs-wgrep", "unstable": { "version": [ - 20210322, - 2148 + 20230203, + 1214 ], "deps": [ "wgrep" ], - "commit": "4c2f345b9b6b46a2257544acb8c4d92d418f443c", - "sha256": "0arlh6da9z0dp22aydzw642287i9gf895bv24p3y3pv752smxbq3" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" }, "stable": { "version": [ - 2, 3, - 2 + 0, + 0 ], "deps": [ "wgrep" ], - "commit": "fcd8c22748024342af15d54f3e7ab5596cf5c4bd", - "sha256": "00cwqzb94jlq4mwgv8z7r3mn0a6mhq95z6j189kacq9g4473zh8d" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" } }, { @@ -117382,26 +119124,41 @@ "repo": "mhayashi1120/Emacs-wgrep", "unstable": { "version": [ - 20200128, - 109 + 20230207, + 1125 ], "deps": [ "wgrep" ], - "commit": "088c04e2ca44eac7e7221f91668ce074915d2f4e", - "sha256": "1a2jvj00yk5wz7djbqaw8xnsappd66ld1liv6zsvv2qa6fnzvlka" + "commit": "edf768732a56840db6879706b64c5773c316d619", + "sha256": "1v4kh00vv7ccs8j46gyp0ikb6v3ppb1na2azdmxwyb6n2acvy4qx" }, "stable": { "version": [ - 2, 3, - 2 + 0, + 0 ], "deps": [ "wgrep" ], - "commit": "fcd8c22748024342af15d54f3e7ab5596cf5c4bd", - "sha256": "00cwqzb94jlq4mwgv8z7r3mn0a6mhq95z6j189kacq9g4473zh8d" + "commit": "b4d69280d8a6a5ded1597e02afbaa811a160383b", + "sha256": "16qg5dpg7hms5dmh92ksnjahf6010pw97ggi7sb0mfafd6iwps0a" + } + }, + { + "ename": "wgsl-mode", + "commit": "4861b04693f404acadecf938117a27aa6e7f3f2e", + "sha256": "12k311nsv57mrxwhfc0lmp4f8avhy2b23blyqydnrmijl841a0zy", + "fetcher": "github", + "repo": "acowley/wgsl-mode", + "unstable": { + "version": [ + 20221127, + 2129 + ], + "commit": "e7856d6755d93e40ed74598a68ef5f607322618b", + "sha256": "0344db2kx1hw1gr971iqxhwy7qzn2vfkjgg8ccla9zsf22nlqxk3" } }, { @@ -117610,11 +119367,11 @@ "repo": "lassik/emacs-whois", "unstable": { "version": [ - 20221103, - 1110 + 20230201, + 1408 ], - "commit": "ce6bbe7f106f11840443fd94cc3161f67ffc9f61", - "sha256": "143xzj9mm3r8acfl71msw2n4ajw4qhkcvgn6a5x98mf53i110z6f" + "commit": "eae090d48f7942f58231be71683865ba3cd56c24", + "sha256": "1mmsk9fsr30a4n1185828sa8jjzfwdcjgq491q027ly5kh4kqc7x" }, "stable": { "version": [ @@ -117662,11 +119419,11 @@ "repo": "akib/emacs-why-this", "unstable": { "version": [ - 20221014, - 1653 + 20221129, + 817 ], - "commit": "258f010001b4d3da89eea56b329f9f24bed0f6ce", - "sha256": "1pcfcbh55a26si8hb2hbgax7iww7nhcgy9m93ncikxhwrk8s8k37" + "commit": "5203d9379afaf6703746823a580c804e1dd98e08", + "sha256": "0ng6z0w6qx4bhgndg14qiabv8qh1vgxdqqzgf0ngidyrm4n43rpp" } }, { @@ -118163,10 +119920,10 @@ "version": [ 1, 0, - 7 + 10 ], - "commit": "3c9e708df324289f39ada9f1f8beae7e7a84f326", - "sha256": "0fxngiy8dmryh3gx4g1q7nnamc4dpszjh130g6d0pmi12ycxd2y9" + "commit": "072fb89d39e33418cb48fa5d25d50545b03f4db0", + "sha256": "13xlagkjmnzv0fn6bwb3vrqn6arxx1g2m1b4wg2rzm7dadlpgmpn" } }, { @@ -118207,14 +119964,14 @@ "repo": "magit/with-editor", "unstable": { "version": [ - 20220810, - 1159 + 20230212, + 2214 ], "deps": [ "compat" ], - "commit": "14a958d4f2fc932db1c1af30ca405e6570d60e24", - "sha256": "1m5cw9z4jl3rhfsf31g8k27bj8yvhll2lm0hk3l3djgqz0ay612r" + "commit": "59867aebe16454be4d8c0c858f3b00b8a34f3f61", + "sha256": "1jrkr58xn0lpxxq0mlar6jpxd7ylnqma4scb148dpfimav1qz3lj" }, "stable": { "version": [ @@ -118314,9 +120071,9 @@ "unstable": { "version": [ 20210527, - 2320 + 2337 ], - "commit": "41f4547339927aec16ede71d1bff7837f5ff49ed", + "commit": "ee4d2b75fd99bac3de40675b0a0e03529718f59f", "sha256": "0n8h84whsh0aph8xhn9plprix9f6bysgvarz2anz7kwns19js6s4" }, "stable": { @@ -118421,8 +120178,8 @@ }, { "ename": "wonderland", - "commit": "ed02d5e4cba10023ebc7c26f90ba8d1e8ee32a08", - "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "0vjbhj2c80lkbdqm4cpwb31jcd8agk75js5ca0dn6jijg9amcw2j", "fetcher": "github", "repo": "kurisuwhyte/emacs-wonderland", "unstable": { @@ -118461,11 +120218,11 @@ "repo": "progfolio/wordel", "unstable": { "version": [ - 20220508, - 1745 + 20230109, + 1407 ], - "commit": "d37187bb5abb2fe4a8ba120fad9e52dd74cc220e", - "sha256": "0527j2ldfiaqlblk00abdl0s0l0wmxac74i4qa899mlqq5sp7kyy" + "commit": "77999d75c5eae29e22b8e3f8859b62c6e30aa65f", + "sha256": "0nz0nl0xs71xaa5cq46skfsyszaq622i9zcrz8z9p48hx57dz04m" } }, { @@ -118521,14 +120278,14 @@ "repo": "martianh/wordreference.el", "unstable": { "version": [ - 20221114, - 1300 + 20230214, + 1735 ], "deps": [ "s" ], - "commit": "31d5c2c06f07a695d41212760726bd5036297405", - "sha256": "1q5g5j63z2j43zfiyr76gq12mkslp194mhnmljsnfv4c0gbgihwj" + "commit": "8ccda3422fc30fba23602327cc8e7de9f53bfa1d", + "sha256": "12lhaqhri3yh2l010a2kajzys5jvvad1yg0rcwiyn6hlr6wsg60a" } }, { @@ -118607,8 +120364,8 @@ }, { "ename": "workgroups2", - "commit": "4f9cfb740cce05a6805d9a047e4c1380305da4df", - "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1dr0sx92mm9gybdn3gq64lkr3gsphdxazp09vkiyaabvk2hwv4ng", "fetcher": "github", "repo": "pashinin/workgroups2", "unstable": { @@ -118640,14 +120397,15 @@ "repo": "akib/emacs-workroom", "unstable": { "version": [ - 20221114, - 350 + 20230123, + 1630 ], "deps": [ + "compat", "project" ], - "commit": "b81e76e0a39937b7544bf77cbff16cc8c239b58f", - "sha256": "137nc6zm8fnj1ymvmrmkm7y41132cpfr6i8akzj7sj8jmvayzv98" + "commit": "360420501a239f74bff60941d28052fc19a92bce", + "sha256": "13d1qmkls8dbrm2wagrvrffyis87pyy2l2hsmnxrp2mqzk0vx541" } }, { @@ -118721,16 +120479,16 @@ "repo": "dangom/writefreely.el", "unstable": { "version": [ - 20221024, - 221 + 20221221, + 1456 ], "deps": [ "org", "ox-gfm", "request" ], - "commit": "ef22839e590ea62f8ec9510bf03fba8fa3aef4c4", - "sha256": "1pb8gmbqj40m1xqbhaa8k8j29zl39bfsib74m6rcwlzbn2fk5gdg" + "commit": "db70444eb5fbe0820754574d70b1ae44967607dc", + "sha256": "1570vi25pwsws8dskmgclnxc6hjwma44wwvddnnmp8jy8a4fsa3l" } }, { @@ -118956,17 +120714,17 @@ }, { "ename": "x509-mode", - "commit": "27145423eb4e68e006ef96868a35b99d119a3099", - "sha256": "15k3pxj3a2vaf64cl2xrzzlvzbqzqc29qyfd8brhq6yc69snr0vj", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1i3sv9m5kzxchdbdwv87jn7iillw7bk8vh1dzy4j4cxwl17gkfb0", "fetcher": "github", "repo": "jobbflykt/x509-mode", "unstable": { "version": [ - 20221115, - 1401 + 20230119, + 838 ], - "commit": "814114b3dfe44ac477831c8ca5da0050a9d0fdf1", - "sha256": "0p0l8q1m3mj9lfss2sjbglpcp4dxzf46zjl9c2vzqf2v7hxlps2a" + "commit": "0118ac433f5aa0c4a7ea51709ba9da51388d644d", + "sha256": "0gp0s2xwq384lm80lrdxsghhld5vz6dmxqfacxbp4nk5fqp9xgll" } }, { @@ -119212,13 +120970,13 @@ "unstable": { "version": [ 20191011, - 1148 + 1159 ], "deps": [ "reformatter" ], - "commit": "670ba3d69e702f76a687f81e079addfc7c66075c", - "sha256": "0b21g6kzikg3gbm840dadk0a04j7rhzrgmi849znz6jg6cy6vqrg" + "commit": "2861c4e33e18b077112efa072316b031bca4236c", + "sha256": "1g0v5ir6nwpamnwvq509d1s1s60n0s5p2lvqqm0n0rk9r753cqkh" }, "stable": { "version": [ @@ -119256,11 +121014,11 @@ "repo": "xml-rpc-el/xml-rpc-el", "unstable": { "version": [ - 20221027, - 1812 + 20221228, + 2346 ], - "commit": "de58ee692a459d7e0e8d3df004eda2686f749d3f", - "sha256": "1whvbw91hjkc85wdrxrfvkw8nm8w3c3cpcqf3i0dk5479idv160l" + "commit": "8272789df8a4deab4de7d50e63b73b7d0543bc7f", + "sha256": "1l57q1gskkdjfhnl3jil1gblj2jz6j1l0njwnz5bs76dajhlmjpj" }, "stable": { "version": [ @@ -119427,11 +121185,11 @@ "repo": "ideasman42/emacs-xref-rst", "unstable": { "version": [ - 20220710, - 1033 + 20230116, + 1300 ], - "commit": "e1dd4439e535185a0cd195bb392f70982cf5aadc", - "sha256": "0snl51bnm69zwb8wm8yr0xr263m2sr6f2b1d30p1yp0p0jv40i33" + "commit": "0cc7fadd4698bd5b51ce2a52fcb4de41c7f030f2", + "sha256": "1ilb0zyan6bl4smr1m3c9fhh6r3l8py6lmsg177jasyzdb9bsycr" } }, { @@ -119442,11 +121200,11 @@ "repo": "martenlienen/xresources-theme", "unstable": { "version": [ - 20190108, - 1851 + 20221208, + 2015 ], - "commit": "5239acb51aa2dfa89a207e57012108d8fcf60562", - "sha256": "13pls0f85n5rpbrbqcmrmcznv9hxiaglrnwpzivrli33cba92fpm" + "commit": "76532fc4330e9e31accc580708514b83b15d70a7", + "sha256": "1ilvjdz7j2s1flq4ivn7lcq47d4lshn24sn9qmzj7nln2qz63r7n" }, "stable": { "version": [ @@ -119483,8 +121241,8 @@ }, { "ename": "xterm-keybinder", - "commit": "656f8e27b4e6055a634249f134a4fc0667fa0e95", - "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "13bgkmdl3ijm5i6ks5rgld6a73b8plsr7s7njp7daiy6krckd98a", "fetcher": "github", "repo": "yuutayamada/xterm-keybinder-el", "unstable": { @@ -119634,6 +121392,30 @@ "sha256": "1ffd6bzgpfavmb5yjczy1gibh66ajns14nqapgnz2fmnpb1qi3ah" } }, + { + "ename": "yabaki-theme", + "commit": "149f2219404fddc58a94d0ff4aba7fdc7043d814", + "sha256": "1dzh6ry23x5dbw40jiyj97r5clrd2kzdmj89z9x0ijm7alqycsjg", + "fetcher": "github", + "repo": "seamacs/yabaki-theme", + "unstable": { + "version": [ + 20230117, + 2312 + ], + "commit": "5b0aaaf352384f24b0104065b5c600e8e6fab707", + "sha256": "0rvhcbdhj0ha41mkyjccrhpjb75svk01dl33vdkkplqf8rx19p1s" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "5b0aaaf352384f24b0104065b5c600e8e6fab707", + "sha256": "0rvhcbdhj0ha41mkyjccrhpjb75svk01dl33vdkkplqf8rx19p1s" + } + }, { "ename": "yabin", "commit": "cc44b28e32ff9b35f60744a175c2d1e3036db8bc", @@ -119759,8 +121541,8 @@ }, { "ename": "yaml-imenu", - "commit": "71e7c2df9e34093ad2634d5a56133fa30126fb5c", - "sha256": "03r7020gyr96m1z7p947nb7z8szzlkqv21g1hm10sqa8qp7k0qli", + "commit": "a6ff6bbfa11f08647bf17afe75bfb4dcafd86683", + "sha256": "1w3kl28lvcq8y80gxx7kaarb715434xah5z1i9n5nav1fg89r37z", "fetcher": "github", "repo": "knu/yaml-imenu.el", "unstable": { @@ -119819,26 +121601,26 @@ "repo": "zkry/yaml-pro", "unstable": { "version": [ - 20220919, - 1312 + 20230115, + 427 ], "deps": [ "yaml" ], - "commit": "36d340b27a008478466e0158c8ef4098230bfe49", - "sha256": "1m8vkhr4yqwkgmd0inlmmc6bv9x065q9anv0gy2vl15lss1cyljk" + "commit": "5b8c236e1a45b4f6e2d32e10b69868634c8152bf", + "sha256": "0644ibfymf6favv0bx2g542vp4al6276lsi236d7353v3f22f94d" }, "stable": { "version": [ 0, - 2, + 3, 2 ], "deps": [ "yaml" ], - "commit": "36d340b27a008478466e0158c8ef4098230bfe49", - "sha256": "1m8vkhr4yqwkgmd0inlmmc6bv9x065q9anv0gy2vl15lss1cyljk" + "commit": "5b8c236e1a45b4f6e2d32e10b69868634c8152bf", + "sha256": "0644ibfymf6favv0bx2g542vp4al6276lsi236d7353v3f22f94d" } }, { @@ -120086,14 +121868,14 @@ "repo": "AndreaCrotti/yasnippet-snippets", "unstable": { "version": [ - 20220713, - 1234 + 20230216, + 942 ], "deps": [ "yasnippet" ], - "commit": "cd665c9cba4bab646f6d50ac098bee63573a4ca5", - "sha256": "113yn1imk8pffn3vyqbjmg7j64x0y0dgqx56jss8wbf17nzck17w" + "commit": "0235f2b3f2d011e2875b4bc8cc6ec17d867a8fb6", + "sha256": "1yq25mlhdfznnfanjxvcmayclq5sm1m5kn50ji0qhl3nrj3c3z98" }, "stable": { "version": [ @@ -120144,19 +121926,19 @@ "url": "https://www.yatex.org/hgrepos/yatex", "unstable": { "version": [ - 20220929, - 123 + 20221216, + 904 ], - "commit": "923a6c0183be469fb4f94b1258527f2ca1cc5b79", - "sha256": "0f5xgzid2bl0qy803vzy1dn8hiq022rbdq2lnj4zxjcvz9jd5cm7" + "commit": "c11261c0960fe44c8664aa017924475dde9d7f71", + "sha256": "1q1m1lap3h32i4j09n1c326d71l18ky4k75mdmcxr1r8z3agsfjz" }, "stable": { "version": [ 1, - 82 + 83 ], - "commit": "4dad5f91b26cb44a8caa888fe8aa0aad1f1f10bb", - "sha256": "0dww4ycfsqskxvnw7yh1a1rylq5d2wgjf75j22pn36nng0zkb7b6" + "commit": "157aa7974191bbb4707d26b05ce830282ad70ef5", + "sha256": "0k23snhqj9vqzrv8mbyjfqv1q3riv67dmphbdrpxprfm0k6bd3ds" } }, { @@ -120168,10 +121950,10 @@ "unstable": { "version": [ 20150105, - 1452 + 1540 ], - "commit": "21a36020c6a5319ea6461f4524aa3a0589df3bbd", - "sha256": "06fnm2c17hmlfp40mq8lxk1blmcy10z0xxdpy8ykyv1r1r6syjf8" + "commit": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8" }, "stable": { "version": [ @@ -120249,11 +122031,11 @@ "repo": "jacksonrayhamilton/ydk-mode", "unstable": { "version": [ - 20170113, - 921 + 20170114, + 223 ], - "commit": "3de9ef27dbdf5887f05092895e4ba93e7659e0ec", - "sha256": "1kc1qsblfxfxrbgv3ksqf87gzic463136k2v7ryaj3x2r9mc0j3l" + "commit": "f3f125b29408e0b0a34fec27dcb7c02c5dbfd04e", + "sha256": "0ndmbswrv8vyw18zhbmjr11400l546zqaj7dzfvwb5rhdv2d0abi" }, "stable": { "version": [ @@ -120522,11 +122304,11 @@ "repo": "mmcjimsey26/yuck-mode", "unstable": { "version": [ - 20221024, - 146 + 20230113, + 2304 ], - "commit": "b1f76283d435812d08a616db36dc17d949464487", - "sha256": "1x6l7wr5pgs9k0d7s2b884dpqg4g4jza4p0mhrr4lhdx4bjbyxmp" + "commit": "e084416fa3e7f91bb429edbf7ff1585aa5674367", + "sha256": "1ilwn7ml5wbwgwbhqp2nc0v9xvxrax5g3lvxajdjcpx5cipa601h" } }, { @@ -120868,14 +122650,14 @@ "repo": "Vidianos-Giannitsis/zetteldesk.el", "unstable": { "version": [ - 20220626, - 1100 + 20220702, + 1527 ], "deps": [ "zetteldesk" ], - "commit": "171fefe91fc616c94b2ec29826fa6893f5816c00", - "sha256": "07awg6zrnckjbvndmlsmcy5l99f7rmf03zfghzwgdmg7bfyfwxbq" + "commit": "99c5434a809da0b783f31b10872c8cb2a2176e2d", + "sha256": "1bw4d98k8fk9xbm4fcx03p1mc7yq3l5vmdyhwdsj92h3zarcdggk" }, "stable": { "version": [ @@ -120898,16 +122680,16 @@ "repo": "Vidianos-Giannitsis/zetteldesk.el", "unstable": { "version": [ - 20221009, - 2122 + 20221121, + 1811 ], "deps": [ "hydra", "major-mode-hydra", "zetteldesk" ], - "commit": "7d99ea13b8187cea1cc6c44fc70100a2fdd8ed15", - "sha256": "178dvb1ais0p87xf7lqnvax9fs066zdlxw0hsaplyrfwlb6p3k4a" + "commit": "b3e1479286932c59d951c68682675137acd834f9", + "sha256": "1plph3ha1prq7p5cf75d9nm6l1sv0mhd5hl3b6v15jk54mfxj7hw" }, "stable": { "version": [ @@ -120932,15 +122714,15 @@ "repo": "Vidianos-Giannitsis/zetteldesk.el", "unstable": { "version": [ - 20220619, - 2028 + 20220702, + 1527 ], "deps": [ "bibtex-completion", "zetteldesk" ], - "commit": "cac8fb90596d7d2573ef42e2a4a7de0cf49107b9", - "sha256": "1vnknrihhm54khmbawpiavl3k225prgi00y481pfjg2dvvrl3zsx" + "commit": "99c5434a809da0b783f31b10872c8cb2a2176e2d", + "sha256": "1bw4d98k8fk9xbm4fcx03p1mc7yq3l5vmdyhwdsj92h3zarcdggk" }, "stable": { "version": [ @@ -120964,15 +122746,15 @@ "repo": "Vidianos-Giannitsis/zetteldesk.el", "unstable": { "version": [ - 20220626, - 1100 + 20220702, + 1527 ], "deps": [ "org-remark", "zetteldesk" ], - "commit": "171fefe91fc616c94b2ec29826fa6893f5816c00", - "sha256": "07awg6zrnckjbvndmlsmcy5l99f7rmf03zfghzwgdmg7bfyfwxbq" + "commit": "99c5434a809da0b783f31b10872c8cb2a2176e2d", + "sha256": "1bw4d98k8fk9xbm4fcx03p1mc7yq3l5vmdyhwdsj92h3zarcdggk" }, "stable": { "version": [ @@ -120996,14 +122778,14 @@ "repo": "ymherklotz/emacs-zettelkasten", "unstable": { "version": [ - 20220819, - 2351 + 20230108, + 1724 ], "deps": [ "s" ], - "commit": "505fd41dea012e743962c3a376c1e63e7a1e127e", - "sha256": "13pf2ygyizqk3axfl7s246an9w1ih38jq1knzy5f4qn2pf5k2zjs" + "commit": "cc4d69c302a46b8f802a1871aae091df1f3398ba", + "sha256": "16an3pym99r0w6810zw1m1jydb7zvk01mw55zxl64kjc37zdlckr" }, "stable": { "version": [ @@ -121058,11 +122840,14 @@ "repo": "ziglang/zig-mode", "unstable": { "version": [ - 20220521, - 1148 + 20230121, + 1229 ], - "commit": "dbc648f5bca8f3b9ca2cc7827f326f5530115144", - "sha256": "0hwkkwhc5b2pzyqa2h0xw8wxijsrp1fk70fhyv8hx19shzlc4la3" + "deps": [ + "reformatter" + ], + "commit": "3cf8ccb55156677b77e0cafbafee8f63dcebfd49", + "sha256": "0bsinwy2nh4gwm7r8m6w4v6ksxrcmhbk62rm4fzp7mj2k7hg2584" } }, { @@ -121073,8 +122858,8 @@ "repo": "WillForan/zim-wiki-mode", "unstable": { "version": [ - 20211117, - 2000 + 20230211, + 1650 ], "deps": [ "dokuwiki-mode", @@ -121083,8 +122868,8 @@ "link-hint", "pretty-hydra" ], - "commit": "aa906931f22c34d77c65bed31121edfef714e4e2", - "sha256": "071xw635ik9jqlgmrzg11d826d3fsjgzyyj60jq6142jr5a0jpqb" + "commit": "cf3d5a0dfb53d6cba8d7d35420ec18bf81b5bf2f", + "sha256": "194wcyz1zwwkizpblq4pwixigpjyy3br7psiaj0p7fmrcicdfmlv" } }, { @@ -121113,11 +122898,11 @@ "repo": "localauthor/zk", "unstable": { "version": [ - 20221104, - 1238 + 20221121, + 1252 ], - "commit": "509b84e2eabb42f951e3a0a4f94218c285e3ac0c", - "sha256": "01pd24m95cdygnwzqqfz3k4jx7h0ibkjlsagalqckri2vpp1q03i" + "commit": "afddac4018c8cf8d8088b4ca128adb01a872e741", + "sha256": "0xmxfkrkijh0n73g0gpynb9rmrxf4mhmk0pwmf2q53wmvpvyn6bm" }, "stable": { "version": [ @@ -121155,14 +122940,14 @@ "repo": "localauthor/zk", "unstable": { "version": [ - 20221107, - 1204 + 20221209, + 1331 ], "deps": [ "zk" ], - "commit": "8cc0ca548f8fc1930bbc14b273b8a30df0c6327c", - "sha256": "0akqvgvlkfv05dl2d11gkb3ym38l1apsdp3d7l8sli7jdwqrhiaf" + "commit": "34fb7d2efffe3f0a9318da3fd3a055e805518b3d", + "sha256": "1sq1mvnnh0ynq7yn9q35dw188mlg5kzb0afd2fc10mirwryimwqi" }, "stable": { "version": [ @@ -121184,15 +122969,15 @@ "repo": "localauthor/zk-luhmann", "unstable": { "version": [ - 20220820, - 1643 + 20221210, + 1227 ], "deps": [ "zk", "zk-index" ], - "commit": "304536486ccae8129dd681265d199062f2026891", - "sha256": "1b4nmf7dicp11hn7sp0p1j5wg5fix9fg32wky29wgr8p3qsnr9wl" + "commit": "d797ce0a143e3bf40d767fa47dee914dd3a2645a", + "sha256": "1kqc6v3c3wkisz8b95727r1qj6gh9yqc9s45gfqc0n4nlh63lz15" } }, { @@ -121218,14 +123003,14 @@ "repo": "nnicandro/emacs-zmq", "unstable": { "version": [ - 20220510, - 1820 + 20230214, + 36 ], "deps": [ "cl-lib" ], - "commit": "af5299d80715b1083a18145e9c84ef9563020676", - "sha256": "1jn1jkkl0pg2psncrf0rx9csp95pg9wm1pcmy1cb3kbqla9x27p4" + "commit": "4e1355a0fbaa4581c9c7822cee7c671b6bf15eab", + "sha256": "1a2n0gr4gvyn1n7dhyaqmlpi27zmh16nbxagn1r9mj0s9whx78q2" }, "stable": { "version": [ @@ -121293,14 +123078,14 @@ "unstable": { "version": [ 20150304, - 1448 + 1702 ], "deps": [ "cl-lib", "haskell-mode" ], - "commit": "03b8d3635f65dbf38f9a19b5d1a8dfdcb38ba423", - "sha256": "0rp615k41v5v9m9g3ydyzgwr6a7wqrmsdkz3pc2frl1zij8jpjm4" + "commit": "9e99d444a387dd1634cab62ef802683f5bf5d907", + "sha256": "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz" }, "stable": { "version": [ @@ -121414,11 +123199,11 @@ "repo": "emacsorphanage/zoom-window", "unstable": { "version": [ - 20201205, - 1038 + 20221228, + 407 ], - "commit": "474ca4723517d95356145950b134652d5dc0c7f7", - "sha256": "0syr88kqzh27ap57v97prk2z0l9wkaysqf1263j7nn9pl4jswppd" + "commit": "093dd7a5d60141812762eba40b021c76ff41f83d", + "sha256": "0i3ch9r8rnk3j6qzfnhj5svdqyas1j85aggn0way6ra3png4r40d" }, "stable": { "version": [ From ec82b6a6e21c2aa7229555d3746df28c7ac21e24 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Mon, 20 Feb 2023 11:04:55 -0300 Subject: [PATCH 054/178] nongnu-packages: updated 2023-02-20 (from overlay) --- .../emacs/elisp-packages/nongnu-generated.nix | 572 +++++++++++++++--- 1 file changed, 477 insertions(+), 95 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix index 58d425a82507..801148d32fe9 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix @@ -49,10 +49,10 @@ elpaBuild { pname = "annotate"; ename = "annotate"; - version = "1.8.1"; + version = "1.8.5"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/annotate-1.8.1.tar"; - sha256 = "00rpaki0vf6aiwa4by1v3hba79jmx1g7c283q1gibp4ka7grxzc2"; + url = "https://elpa.nongnu.org/nongnu/annotate-1.8.5.tar"; + sha256 = "0f5h9ymcg4n0zn3yaq1s0h5sfrq3pbcswda9875yhlcprzbrgyq7"; }; packageRequires = []; meta = { @@ -135,6 +135,23 @@ license = lib.licenses.free; }; }) {}; + auto-dim-other-buffers = callPackage ({ elpaBuild + , fetchurl + , lib }: + elpaBuild { + pname = "auto-dim-other-buffers"; + ename = "auto-dim-other-buffers"; + version = "2.1.1"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/auto-dim-other-buffers-2.1.1.tar"; + sha256 = "0a7xdp25bny5ykf7808jwmziad8myf8yp01p07f20bsrl4m0bzz6"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/auto-dim-other-buffers.html"; + license = lib.licenses.free; + }; + }) {}; autothemer = callPackage ({ dash, elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "autothemer"; @@ -150,6 +167,21 @@ license = lib.licenses.free; }; }) {}; + bash-completion = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "bash-completion"; + ename = "bash-completion"; + version = "3.1.1"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/bash-completion-3.1.1.tar"; + sha256 = "19vs0rflqm1z4r17pv1qx6v60g03x4n2b7503rjr2d0ljrwkbpcp"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/bash-completion.html"; + license = lib.licenses.free; + }; + }) {}; better-jumper = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "better-jumper"; @@ -195,6 +227,21 @@ license = lib.licenses.free; }; }) {}; + blow = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "blow"; + ename = "blow"; + version = "1.0"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/blow-1.0.tar"; + sha256 = "0z2y3vq8m4x9ihn84x7p2vgkxprrrvhavcgwll897gsc9khp1xda"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/blow.html"; + license = lib.licenses.free; + }; + }) {}; boxquote = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: elpaBuild { pname = "boxquote"; @@ -214,10 +261,10 @@ elpaBuild { pname = "buttercup"; ename = "buttercup"; - version = "1.28"; + version = "1.29"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/buttercup-1.28.tar"; - sha256 = "0gli1cxqiqg4adln7svplcc6rk718q4gn6idwxbzx8mgcwhmw75f"; + url = "https://elpa.nongnu.org/nongnu/buttercup-1.29.tar"; + sha256 = "0k9canfnxzhbk5m33z3bfxw7l2bvvhdiv9x357lf6gs8vg19158p"; }; packageRequires = [ emacs ]; meta = { @@ -225,6 +272,21 @@ license = lib.licenses.free; }; }) {}; + camera = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "camera"; + ename = "camera"; + version = "0.2"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/camera-0.2.tar"; + sha256 = "1hdq24xy685wzjz3hfxwqmcmsvajcrkr4va4lmvgvdmkvmfk92cj"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/camera.html"; + license = lib.licenses.free; + }; + }) {}; caml = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "caml"; @@ -268,10 +330,10 @@ elpaBuild { pname = "cider"; ename = "cider"; - version = "1.5.0"; + version = "1.6.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/cider-1.5.0.tar"; - sha256 = "0vggh2l92m8hm2wqzcyka439fs0kzbbfknfgyn79hf2f2f405534"; + url = "https://elpa.nongnu.org/nongnu/cider-1.6.0.tar"; + sha256 = "038wzwi4y0240wb5i03v89x308c07nzflfv3804zyldr44yk9qky"; }; packageRequires = [ clojure-mode @@ -291,10 +353,10 @@ elpaBuild { pname = "clojure-mode"; ename = "clojure-mode"; - version = "5.15.1"; + version = "5.16.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/clojure-mode-5.15.1.tar"; - sha256 = "14j6v32cbj52n91f7ckbjlam60rszh05r09bwv579p1xs2m7s7q3"; + url = "https://elpa.nongnu.org/nongnu/clojure-mode-5.16.0.tar"; + sha256 = "1m0g7sqjs6phkkf3mx2dyxr62a48rqq69lp6r5bfa6kcbr2n4g2m"; }; packageRequires = [ emacs ]; meta = { @@ -434,6 +496,36 @@ license = lib.licenses.free; }; }) {}; + denote-refs = callPackage ({ denote, elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "denote-refs"; + ename = "denote-refs"; + version = "0.1.2"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/denote-refs-0.1.2.tar"; + sha256 = "1s2q9j2xg2g293ip7w2bq2kjk6pasaf6cmvzcbh0k00yx8aa2alp"; + }; + packageRequires = [ denote emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/denote-refs.html"; + license = lib.licenses.free; + }; + }) {}; + devhelp = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "devhelp"; + ename = "devhelp"; + version = "1.0"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/devhelp-1.0.tar"; + sha256 = "16zx748n24diqqk3jhgyz74s71kqzl7h7l6j9nkz40cpcn18ddiz"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/devhelp.html"; + license = lib.licenses.free; + }; + }) {}; diff-ansi = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "diff-ansi"; @@ -509,6 +601,21 @@ license = lib.licenses.free; }; }) {}; + eat = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "eat"; + ename = "eat"; + version = "0.6"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/eat-0.6.tar"; + sha256 = "14174hra9x3l98nrpg0x9g499lwhlxr8qg51zdrlyky0k4v0x3iw"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/eat.html"; + license = lib.licenses.free; + }; + }) {}; edit-indirect = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "edit-indirect"; @@ -574,6 +681,21 @@ license = lib.licenses.free; }; }) {}; + engine-mode = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "engine-mode"; + ename = "engine-mode"; + version = "2.2.1"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/engine-mode-2.2.1.tar"; + sha256 = "1m5i3pyi4y90jvwgypxzl3qwhq5j6gazwijalhjcgb6gnpsm81kv"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://elpa.gnu.org/packages/engine-mode.html"; + license = lib.licenses.free; + }; + }) {}; evil = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "evil"; @@ -653,6 +775,21 @@ license = lib.licenses.free; }; }) {}; + evil-iedit-state = callPackage ({ elpaBuild, evil, fetchurl, iedit, lib }: + elpaBuild { + pname = "evil-iedit-state"; + ename = "evil-iedit-state"; + version = "1.3"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/evil-iedit-state-1.3.tar"; + sha256 = "1dsdlhi58xsdsgkdhpnlkx1gkwc4m5sks99ph8lbj179vd1gszn6"; + }; + packageRequires = [ evil iedit ]; + meta = { + homepage = "https://elpa.gnu.org/packages/evil-iedit-state.html"; + license = lib.licenses.free; + }; + }) {}; evil-indent-plus = callPackage ({ cl-lib ? null , elpaBuild , evil @@ -711,10 +848,10 @@ elpaBuild { pname = "evil-nerd-commenter"; ename = "evil-nerd-commenter"; - version = "3.5.8"; + version = "3.6.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/evil-nerd-commenter-3.5.8.tar"; - sha256 = "0hrzwca24dy4g9h7v5csqpwvsfj1ns4gqlnlf1q5i0jqvhvklnj5"; + url = "https://elpa.nongnu.org/nongnu/evil-nerd-commenter-3.6.0.tar"; + sha256 = "0709qlxhvmapdnl8bhqvg39cm6x4659mg0jzz5b9hmis5bpj1kiq"; }; packageRequires = [ emacs ]; meta = { @@ -752,6 +889,36 @@ license = lib.licenses.free; }; }) {}; + flx = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "flx"; + ename = "flx"; + version = "0.6.2"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/flx-0.6.2.tar"; + sha256 = "0xmxin1k758nskrxhmvi4m5vbcfi2ncfp5n9q18mlc1j45vwawpx"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://elpa.gnu.org/packages/flx.html"; + license = lib.licenses.free; + }; + }) {}; + flx-ido = callPackage ({ cl-lib ? null, elpaBuild, fetchurl, flx, lib }: + elpaBuild { + pname = "flx-ido"; + ename = "flx-ido"; + version = "0.6.2"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/flx-ido-0.6.2.tar"; + sha256 = "1jdk87v605m4brvf0pxfd6bz0j2r217cw9pmrpl38nrszbngh67l"; + }; + packageRequires = [ cl-lib flx ]; + meta = { + homepage = "https://elpa.gnu.org/packages/flx-ido.html"; + license = lib.licenses.free; + }; + }) {}; flymake-kondor = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "flymake-kondor"; @@ -777,10 +944,10 @@ elpaBuild { pname = "flymake-popon"; ename = "flymake-popon"; - version = "0.5"; + version = "0.5.1"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/flymake-popon-0.5.tar"; - sha256 = "1q1adxsrx8sjw6pffwxvk0yrgbz0rbrzi1g7g7zq5952vnz4dnn0"; + url = "https://elpa.nongnu.org/nongnu/flymake-popon-0.5.1.tar"; + sha256 = "0vk20affwb7qcg7nm6n2ssrrgljisqn45a8jagrf947l2kgaccvd"; }; packageRequires = [ emacs flymake popon posframe ]; meta = { @@ -833,14 +1000,29 @@ license = lib.licenses.free; }; }) {}; + gc-buffers = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "gc-buffers"; + ename = "gc-buffers"; + version = "1.0"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/gc-buffers-1.0.tar"; + sha256 = "15zpg4j25bk7y2wgqsd57c4c6h3xvigf39hjnzh3g1hlrqk2lv0g"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/gc-buffers.html"; + license = lib.licenses.free; + }; + }) {}; geiser = callPackage ({ elpaBuild, emacs, fetchurl, lib, project }: elpaBuild { pname = "geiser"; ename = "geiser"; - version = "0.28"; + version = "0.28.2"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/geiser-0.28.tar"; - sha256 = "0qp732j16cdmkpqv4vjplh9kcdbb1s4gfwff2d7k1sg4wqi8sa95"; + url = "https://elpa.nongnu.org/nongnu/geiser-0.28.2.tar"; + sha256 = "1d2g673zn59ggcr2sx9dsxibaqh6b456v4wbpg3wb5ph63rzrh8m"; }; packageRequires = [ emacs project ]; meta = { @@ -932,10 +1114,10 @@ elpaBuild { pname = "geiser-guile"; ename = "geiser-guile"; - version = "0.28.0"; + version = "0.28.1"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/geiser-guile-0.28.0.tar"; - sha256 = "0nw77psyvl9lackyq5l60k84f1dyddn8y2sxm5b1z71gjkp481zi"; + url = "https://elpa.nongnu.org/nongnu/geiser-guile-0.28.1.tar"; + sha256 = "0imh2vdc757vimwxi7pjdv09f83js76nbk7dg861qg0bcqf21g3i"; }; packageRequires = [ emacs geiser transient ]; meta = { @@ -1054,14 +1236,29 @@ license = lib.licenses.free; }; }) {}; + gnu-indent = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "gnu-indent"; + ename = "gnu-indent"; + version = "1.0"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/gnu-indent-1.0.tar"; + sha256 = "0h2kj19k3b9sw1bp0fk37kmc4xwvd3ajlgfa8s13jnvggx77nn8a"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/gnu-indent.html"; + license = lib.licenses.free; + }; + }) {}; gnuplot = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "gnuplot"; ename = "gnuplot"; - version = "0.8.0"; + version = "0.8.1"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/gnuplot-0.8.0.tar"; - sha256 = "1f27y18ivcdwlkgr3ql4qcbgzdp6vk1bkw2wlryrclpydbb1nya3"; + url = "https://elpa.nongnu.org/nongnu/gnuplot-0.8.1.tar"; + sha256 = "015b8ly4wmz03bcysbwy4d63r42sicwqa0j2j4aiis1kpy4lj3xw"; }; packageRequires = [ emacs ]; meta = { @@ -1129,6 +1326,21 @@ license = lib.licenses.free; }; }) {}; + gruber-darker-theme = callPackage ({ elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "gruber-darker-theme"; + ename = "gruber-darker-theme"; + version = "0.7"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/gruber-darker-theme-0.7.tar"; + sha256 = "0k2njsg7bwy4i7ll5d9dpqawylgkfvp74bany8g487xvspjscrji"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/gruber-darker-theme.html"; + license = lib.licenses.free; + }; + }) {}; gruvbox-theme = callPackage ({ autothemer, elpaBuild, fetchurl, lib }: elpaBuild { pname = "gruvbox-theme"; @@ -1256,10 +1468,10 @@ elpaBuild { pname = "hl-block-mode"; ename = "hl-block-mode"; - version = "0.1"; + version = "0.2"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/hl-block-mode-0.1.tar"; - sha256 = "08b2n8i0qmjp5r6ijlg66g0j8aiwhrczxyf0ssr9jbga43k4swzq"; + url = "https://elpa.nongnu.org/nongnu/hl-block-mode-0.2.tar"; + sha256 = "1qrq238arblk8v8nf98kcdckfhwzi27w5zbl31yvf36xz69l9y8n"; }; packageRequires = [ emacs ]; meta = { @@ -1267,6 +1479,21 @@ license = lib.licenses.free; }; }) {}; + hl-column = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "hl-column"; + ename = "hl-column"; + version = "1.0"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/hl-column-1.0.tar"; + sha256 = "00y4g912s341p30xnb0qgj0gmzsqm696v06kjgy9yva5qgw51f03"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/hl-column.html"; + license = lib.licenses.free; + }; + }) {}; htmlize = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "htmlize"; @@ -1286,10 +1513,10 @@ elpaBuild { pname = "idle-highlight-mode"; ename = "idle-highlight-mode"; - version = "1.1.3"; + version = "1.1.4"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/idle-highlight-mode-1.1.3.tar"; - sha256 = "05w2rqc71h1f13ysdfjma90s35kj5d5i2szcw54cqyky8rymx5dp"; + url = "https://elpa.nongnu.org/nongnu/idle-highlight-mode-1.1.4.tar"; + sha256 = "1j7y03b90gf3pl0xbfirm973k31l7nx90is69m3jrfai2f9qnflr"; }; packageRequires = [ emacs ]; meta = { @@ -1355,10 +1582,10 @@ elpaBuild { pname = "inf-ruby"; ename = "inf-ruby"; - version = "2.6.2"; + version = "2.7.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/inf-ruby-2.6.2.tar"; - sha256 = "09p9pny4p0bfw6lw5pf17spyd77jb0pliapp3mfn7r3w8l8wi8xc"; + url = "https://elpa.nongnu.org/nongnu/inf-ruby-2.7.0.tar"; + sha256 = "0wzzhr10q8mnai024g5nprsnl0bcdlqfrh4nxf8qq43paah28i6f"; }; packageRequires = [ emacs ]; meta = { @@ -1381,6 +1608,21 @@ license = lib.licenses.free; }; }) {}; + iwindow = callPackage ({ compat, elpaBuild, emacs, fetchurl, lib, seq }: + elpaBuild { + pname = "iwindow"; + ename = "iwindow"; + version = "1.0"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/iwindow-1.0.tar"; + sha256 = "076i0p9kq48hxkkwzzapnni6cpdr25hdrw9bs2cly8w4v5rmd6rj"; + }; + packageRequires = [ compat emacs seq ]; + meta = { + homepage = "https://elpa.gnu.org/packages/iwindow.html"; + license = lib.licenses.free; + }; + }) {}; j-mode = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "j-mode"; @@ -1471,14 +1713,29 @@ license = lib.licenses.free; }; }) {}; + lorem-ipsum = callPackage ({ elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "lorem-ipsum"; + ename = "lorem-ipsum"; + version = "0.4"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/lorem-ipsum-0.4.tar"; + sha256 = "05zk11g0w3bnabxf5937hrkc3k58vlrh1bk61dar9gfbfdq3ijyg"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/lorem-ipsum.html"; + license = lib.licenses.free; + }; + }) {}; lua-mode = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "lua-mode"; ename = "lua-mode"; - version = "20210802"; + version = "20221027"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/lua-mode-20210802.tar"; - sha256 = "1yarwai9a0w4yywd0ajdkif4g26z98zw91lg1z78qw0k61qjmnh6"; + url = "https://elpa.nongnu.org/nongnu/lua-mode-20221027.tar"; + sha256 = "1irdlw77ny0a28msrbn4lm66ixrlf2grsj4izhpdm1n0yv66xvfc"; }; packageRequires = [ emacs ]; meta = { @@ -1598,6 +1855,36 @@ license = lib.licenses.free; }; }) {}; + meow = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "meow"; + ename = "meow"; + version = "1.4.2"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/meow-1.4.2.tar"; + sha256 = "1iwysqxmaw85k7g742nx8z9vr3nnmwaidwjmx5n96cyssf64hgkv"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/meow.html"; + license = lib.licenses.free; + }; + }) {}; + minibar = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "minibar"; + ename = "minibar"; + version = "0.2"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/minibar-0.2.tar"; + sha256 = "0idb91vp0pbichv2gfs314av6cgx5mkrn9w3yxwj81if1bvsmw0h"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/minibar.html"; + license = lib.licenses.free; + }; + }) {}; moe-theme = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "moe-theme"; @@ -1703,10 +1990,10 @@ elpaBuild { pname = "nix-mode"; ename = "nix-mode"; - version = "1.4.4"; + version = "1.5.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/nix-mode-1.4.4.tar"; - sha256 = "1nn74671273s5mjxzbdqvpwqx6w12zya21sxhzw51k2fs68vwh23"; + url = "https://elpa.nongnu.org/nongnu/nix-mode-1.5.0.tar"; + sha256 = "0zi7xmh777pqzgcv18jqwywvidpa984p0m705p6a9fns7dvv53j7"; }; packageRequires = [ emacs magit-section transient ]; meta = { @@ -1748,10 +2035,10 @@ elpaBuild { pname = "org-contrib"; ename = "org-contrib"; - version = "0.4"; + version = "0.4.1"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/org-contrib-0.4.tar"; - sha256 = "05r7w0h9v1vfhv1dd2vaabq2gm8ra70s1cirlp75s343b0z28ca6"; + url = "https://elpa.nongnu.org/nongnu/org-contrib-0.4.1.tar"; + sha256 = "0xhlsbqjj1zivlz44hdlkcwqalfjwds5fv2pcwn0rskfhr73xp9a"; }; packageRequires = [ emacs org ]; meta = { @@ -1885,6 +2172,21 @@ license = lib.licenses.free; }; }) {}; + paredit = callPackage ({ elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "paredit"; + ename = "paredit"; + version = "26"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/paredit-26.tar"; + sha256 = "08f8nm3qyk0b4x7mkgra0zjpn9mmfnpr5g7yrvdzvms38y919qlh"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/paredit.html"; + license = lib.licenses.free; + }; + }) {}; parseclj = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "parseclj"; @@ -1954,10 +2256,10 @@ elpaBuild { pname = "pdf-tools"; ename = "pdf-tools"; - version = "1.0"; + version = "1.0.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/pdf-tools-1.0.tar"; - sha256 = "0cjr7y2ikf2al43wrzlqdpbksj0ww6m0nvmlz97slx8nk94k2qyf"; + url = "https://elpa.nongnu.org/nongnu/pdf-tools-1.0.0.tar"; + sha256 = "0p9q9a11s68s95z8n0i45x1w8mg476bpnrvijg6i83779dmrpxh0"; }; packageRequires = [ emacs let-alist tablist ]; meta = { @@ -2014,10 +2316,10 @@ elpaBuild { pname = "projectile"; ename = "projectile"; - version = "2.6.0"; + version = "2.7.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/projectile-2.6.0.tar"; - sha256 = "0r0ylllx7vr903sjci1i6yf4xzn7k4azaw9l3azvc3mzrrjagvvj"; + url = "https://elpa.nongnu.org/nongnu/projectile-2.7.0.tar"; + sha256 = "1ibxsa1lv9aiplkfplamyn2wc2c6vfwfszyaicfx79aq2w9427bg"; }; packageRequires = [ emacs ]; meta = { @@ -2062,10 +2364,10 @@ elpaBuild { pname = "racket-mode"; ename = "racket-mode"; - version = "1.0.20221118.122133"; + version = "1.0.20230209.92406"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/racket-mode-1.0.20221118.122133.tar"; - sha256 = "0a2lpvkarcw5rlydm3va7ajjsyhfbj023h93n6n94pjvllhn2rp2"; + url = "https://elpa.nongnu.org/nongnu/racket-mode-1.0.20230209.92406.tar"; + sha256 = "1gs70pba6jjix6hnph6z2a2yjs9ka6xnhjl6qi8jcwyamkbpjiry"; }; packageRequires = [ emacs ]; meta = { @@ -2137,10 +2439,10 @@ elpaBuild { pname = "rfc-mode"; ename = "rfc-mode"; - version = "1.3.0"; + version = "1.4.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/rfc-mode-1.3.0.tar"; - sha256 = "1wdqp03rrx7ar21nvbnrb7518c3vgf41z00bav00pw8cdx5c4m10"; + url = "https://elpa.nongnu.org/nongnu/rfc-mode-1.4.0.tar"; + sha256 = "0036ypsjm35x8vwrlm346wcqmh85kbjmw0813q65z6k0gvmnwldj"; }; packageRequires = [ emacs ]; meta = { @@ -2201,10 +2503,10 @@ elpaBuild { pname = "scad-mode"; ename = "scad-mode"; - version = "93.1"; + version = "93.2"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/scad-mode-93.1.tar"; - sha256 = "0k9wqz2nd4j0wz2y300nn6rs8a9vpshnaa2hx6f8649k4y87bblp"; + url = "https://elpa.nongnu.org/nongnu/scad-mode-93.2.tar"; + sha256 = "0gp7ghmch5wkbby0avmlgj5kajiccbarjrx1szh9r3f3gi1ahawj"; }; packageRequires = [ emacs ]; meta = { @@ -2246,10 +2548,10 @@ elpaBuild { pname = "scroll-on-jump"; ename = "scroll-on-jump"; - version = "0.1"; + version = "0.2"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/scroll-on-jump-0.1.tar"; - sha256 = "0y6r0aa14sv8yh56w46s840bdkgq6y234qz1jbbsgklx42cw6zgg"; + url = "https://elpa.nongnu.org/nongnu/scroll-on-jump-0.2.tar"; + sha256 = "09yndis96ps18i252h66ins1hi3zn27410s5hahkj2989q4cqi1s"; }; packageRequires = [ emacs ]; meta = { @@ -2411,10 +2713,10 @@ elpaBuild { pname = "subed"; ename = "subed"; - version = "1.0.24"; + version = "1.0.29"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/subed-1.0.24.tar"; - sha256 = "1x9w858pgyhd7hlvn85h379f8sfvf8ly3a9596q4jkqbcp9riymq"; + url = "https://elpa.nongnu.org/nongnu/subed-1.0.29.tar"; + sha256 = "0q2sfdypj929y4fllk97rsb2bxm9a1izjy1f0z2viz5hz0hpqp26"; }; packageRequires = [ emacs ]; meta = { @@ -2426,10 +2728,10 @@ elpaBuild { pname = "sweeprolog"; ename = "sweeprolog"; - version = "0.8.8"; + version = "0.17.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.8.8.tar"; - sha256 = "0h9vn4kc1f1vxvzxv14hbv24skjmishg408s4d8g39bylhj5c5s4"; + url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.17.0.tar"; + sha256 = "0k51k77g1mivs3ijnkl0i51v9bfjmivwnbkqwza9kclxd4dwlvyy"; }; packageRequires = [ emacs ]; meta = { @@ -2486,10 +2788,10 @@ elpaBuild { pname = "systemd"; ename = "systemd"; - version = "1.6"; + version = "1.6.1"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/systemd-1.6.tar"; - sha256 = "1khfnx2qmg1i4m6axyya0xbzr3c9j136b8pzmqdnd6jamxh43wcg"; + url = "https://elpa.nongnu.org/nongnu/systemd-1.6.1.tar"; + sha256 = "0h6iwdi3j2ypgcwnyjs8rdlz5f8j25cya6z4v3n2phnkqbncmgx6"; }; packageRequires = [ emacs ]; meta = { @@ -2548,6 +2850,21 @@ license = lib.licenses.free; }; }) {}; + testcover-mark-line = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "testcover-mark-line"; + ename = "testcover-mark-line"; + version = "0.3"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/testcover-mark-line-0.3.tar"; + sha256 = "18nlkm7p6fmaziqqbb4jmhpypn0b6233qd0c19xp16kjbxpg7ifh"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/testcover-mark-line.html"; + license = lib.licenses.free; + }; + }) {}; textile-mode = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "textile-mode"; @@ -2642,10 +2959,10 @@ elpaBuild { pname = "undo-fu"; ename = "undo-fu"; - version = "0.4"; + version = "0.5"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/undo-fu-0.4.tar"; - sha256 = "15r0lkzbxgvnwdmaxgiwnik2z8622gdzmpxllv8pfr36y6jmsgs8"; + url = "https://elpa.nongnu.org/nongnu/undo-fu-0.5.tar"; + sha256 = "0akn8gw3wavsfhxa9m426jkjacsw3k8vaxymhqrzy18lpvg5hysw"; }; packageRequires = [ emacs ]; meta = { @@ -2657,10 +2974,10 @@ elpaBuild { pname = "undo-fu-session"; ename = "undo-fu-session"; - version = "0.2"; + version = "0.4"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/undo-fu-session-0.2.tar"; - sha256 = "1vxyazcxw2gxvxh96grsff1lijsd5fh3pjzkbkj7axn3myavp374"; + url = "https://elpa.nongnu.org/nongnu/undo-fu-session-0.4.tar"; + sha256 = "1p9qr9hzqiv1kgnglskny7m7lh2f8r4l0cf53431nf8hrp806qah"; }; packageRequires = [ emacs ]; meta = { @@ -2672,10 +2989,10 @@ elpaBuild { pname = "vc-fossil"; ename = "vc-fossil"; - version = "20220707"; + version = "20221120"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/vc-fossil-20220707.tar"; - sha256 = "0l33y8mij6rw4h47ryqpjxr1i2xzis98rbi230izkvsc6w7qf89q"; + url = "https://elpa.nongnu.org/nongnu/vc-fossil-20221120.tar"; + sha256 = "0ygacnq1w64iw8al2gcyjjwgvbnm2l97sw4lf5a2x6ms0fgnbdgk"; }; packageRequires = []; meta = { @@ -2702,10 +3019,10 @@ elpaBuild { pname = "visual-fill-column"; ename = "visual-fill-column"; - version = "2.5"; + version = "2.5.1"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/visual-fill-column-2.5.tar"; - sha256 = "0mqhm7xkxpzjk96n6qybqg2780kbjg1w7ash88zhnbp8kvy0rrwi"; + url = "https://elpa.nongnu.org/nongnu/visual-fill-column-2.5.1.tar"; + sha256 = "1q2cimrcr4knh716cdnhs8nspk08w8x7bsbhx69s9hpzgr7mjq58"; }; packageRequires = [ emacs ]; meta = { @@ -2717,10 +3034,10 @@ elpaBuild { pname = "web-mode"; ename = "web-mode"; - version = "17.3.3"; + version = "17.3.8"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/web-mode-17.3.3.tar"; - sha256 = "1ci28dfg6k4hwiqz85v9c24n7s52z29ghfyfjg971lq4mfqbx4yy"; + url = "https://elpa.nongnu.org/nongnu/web-mode-17.3.8.tar"; + sha256 = "0g163mgf1kc2bfkh8b2s9jl5cmzgcni2g25hxmyxb4rz3v30z4ca"; }; packageRequires = [ emacs ]; meta = { @@ -2748,21 +3065,36 @@ license = lib.licenses.free; }; }) {}; - wgrep = callPackage ({ elpaBuild, fetchurl, lib }: + wgrep = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "wgrep"; ename = "wgrep"; - version = "2.3.3"; + version = "3.0.0"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/wgrep-2.3.3.tar"; - sha256 = "12w9vsawqnd0rvsahx8vdiabds8rl1zkpmspmcqn28jprbql734r"; + url = "https://elpa.nongnu.org/nongnu/wgrep-3.0.0.tar"; + sha256 = "0vg23ydwkqrmhlll45gf2fjdxj9chx9bl9m0pgwrlkjw0ncxj3qp"; }; - packageRequires = []; + packageRequires = [ emacs ]; meta = { homepage = "https://elpa.gnu.org/packages/wgrep.html"; license = lib.licenses.free; }; }) {}; + why-this = callPackage ({ elpaBuild, emacs, fetchurl, lib }: + elpaBuild { + pname = "why-this"; + ename = "why-this"; + version = "2.0.4"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/why-this-2.0.4.tar"; + sha256 = "0hqvqix9hqaki23vw3xilkcr84ak2vz4lwczr54s87x13idrg4px"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://elpa.gnu.org/packages/why-this.html"; + license = lib.licenses.free; + }; + }) {}; with-editor = callPackage ({ elpaBuild, emacs, fetchurl, lib }: elpaBuild { pname = "with-editor"; @@ -2793,6 +3125,41 @@ license = lib.licenses.free; }; }) {}; + workroom = callPackage ({ compat + , elpaBuild + , emacs + , fetchurl + , lib + , project }: + elpaBuild { + pname = "workroom"; + ename = "workroom"; + version = "2.3"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/workroom-2.3.tar"; + sha256 = "0c05pbxkrcgsjk7zcyxiacxrpxyvf85rf38nhaqhxbywh4j071fg"; + }; + packageRequires = [ compat emacs project ]; + meta = { + homepage = "https://elpa.gnu.org/packages/workroom.html"; + license = lib.licenses.free; + }; + }) {}; + writegood-mode = callPackage ({ elpaBuild, fetchurl, lib }: + elpaBuild { + pname = "writegood-mode"; + ename = "writegood-mode"; + version = "2.2.0"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/writegood-mode-2.2.0.tar"; + sha256 = "08b1650v6qsb3x1s5k4n5m2aqx1n26gc4wj822fm9s49k8vcpzl8"; + }; + packageRequires = []; + meta = { + homepage = "https://elpa.gnu.org/packages/writegood-mode.html"; + license = lib.licenses.free; + }; + }) {}; ws-butler = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "ws-butler"; @@ -2815,10 +3182,10 @@ elpaBuild { pname = "xah-fly-keys"; ename = "xah-fly-keys"; - version = "22.0.20221031102959"; + version = "22.9.20230207171612"; src = fetchurl { - url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-22.0.20221031102959.tar"; - sha256 = "08i6y3ry0sp597vz0zl7c50lnp04fszydw6m1093sb5nlifbhrb8"; + url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-22.9.20230207171612.tar"; + sha256 = "0m633k8rx2k3gwbh3hndkmn3k804pg7j7xmqw6yf8j2a2ym4893b"; }; packageRequires = [ emacs ]; meta = { @@ -2826,6 +3193,21 @@ license = lib.licenses.free; }; }) {}; + xkcd = callPackage ({ elpaBuild, fetchurl, json ? null, lib }: + elpaBuild { + pname = "xkcd"; + ename = "xkcd"; + version = "1.1"; + src = fetchurl { + url = "https://elpa.nongnu.org/nongnu/xkcd-1.1.tar"; + sha256 = "1yszrba4cvisiy7m16rzpj7plbnafj4c7bdgxvqwxwhsasfmh6ag"; + }; + packageRequires = [ json ]; + meta = { + homepage = "https://elpa.gnu.org/packages/xkcd.html"; + license = lib.licenses.free; + }; + }) {}; xml-rpc = callPackage ({ elpaBuild, fetchurl, lib }: elpaBuild { pname = "xml-rpc"; From 985265c4511d6153c3c014a0b091584a6e88f3fe Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Tue, 21 Feb 2023 08:03:22 -0300 Subject: [PATCH 055/178] elpa-packages: updated 2023-02-21 (from overlay) --- .../editors/emacs/elisp-packages/elpa-generated.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix index 32560c34385e..5273daf41d40 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix @@ -5411,10 +5411,10 @@ elpaBuild { pname = "vertico-posframe"; ename = "vertico-posframe"; - version = "0.6.0"; + version = "0.7.0"; src = fetchurl { - url = "https://elpa.gnu.org/packages/vertico-posframe-0.6.0.tar"; - sha256 = "1cwi26jz9dn8la6zxxai2pfkcpz8lwf4cd8hr44lak6x0ca9bwr3"; + url = "https://elpa.gnu.org/packages/vertico-posframe-0.7.0.tar"; + sha256 = "19ic4yjm9ccnvrhccfzhn4p3brk760hf8aw6qv53gf6qlj3mcyag"; }; packageRequires = [ emacs posframe vertico ]; meta = { From dd1e49424f987c366031d50062a1e2ff440f9cbe Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Tue, 21 Feb 2023 08:03:22 -0300 Subject: [PATCH 056/178] melpa-packages: updated 2023-02-21 (from overlay) --- .../elisp-packages/recipes-archive-melpa.json | 303 +++++++++--------- 1 file changed, 152 insertions(+), 151 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json index 6f7b37b29acd..b6df720953a1 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json +++ b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json @@ -8347,15 +8347,15 @@ "repo": "emacscollective/borg", "unstable": { "version": [ - 20230122, - 1752 + 20230215, + 1517 ], "deps": [ "epkg", "magit" ], - "commit": "79850a9007fe156bac36bc2e5e05bc7be8276135", - "sha256": "14n82f2zlxwjs9p0mz24p93929qk8bdr8b2g4daxln2d9y3wmhsa" + "commit": "15a89056ceccb611c28aed8943faabec0539494a", + "sha256": "1n32wiclnlqj8xr5rbzywqrras551hjcdk2mcc21xnqk22zf7mmb" }, "stable": { "version": [ @@ -9018,14 +9018,14 @@ "repo": "swflint/buffer-sets", "unstable": { "version": [ - 20230210, - 122 + 20230220, + 2122 ], "deps": [ "cl-lib" ], - "commit": "cdc66804b8a1ec7ddf94d99c7f24b801148b64df", - "sha256": "0lz7bjmxzxkri6mvqk6lrl6dp58as6py3i41hkfkj9zjmjvsl589" + "commit": "ac40dc72ffd9073f8425e833fda7d29cbce581c4", + "sha256": "1wjzyj2hd63s575iirag04sa32sq9z9l50ik2zazggs81xlnw6ml" }, "stable": { "version": [ @@ -10577,11 +10577,11 @@ "repo": "catppuccin/emacs", "unstable": { "version": [ - 20230219, - 1437 + 20230220, + 2355 ], - "commit": "298cb2352757a16dda00bef967d484729c021d29", - "sha256": "160lq16fw9isnbk027pxq027sz3g86lb7mbmg5wzbbliwy4933y0" + "commit": "49f86fcc1b900fa9132149367248964a6e1604a5", + "sha256": "03d1yr75ghhx3y246cawbw50plmxi88n5zmwjvlc9wxq1k6v39nd" }, "stable": { "version": [ @@ -13273,15 +13273,15 @@ "repo": "magit/closql", "unstable": { "version": [ - 20230212, - 2019 + 20230220, + 1944 ], "deps": [ "compat", - "emacsql-sqlite" + "emacsql" ], - "commit": "81a6fc88634536c791ffa90981a918f738c401ee", - "sha256": "1zq795mddh83lkzrlx27qxkkwxkmzbr04pf4sa54lisa9si2jply" + "commit": "b670b88c6f2785ddfdff91439ceb332b1bf8a8ce", + "sha256": "0hffljz4353id5y7ps2saw9gsclyj1ishpvfa4vclpc9kg7mw58n" }, "stable": { "version": [ @@ -19858,8 +19858,8 @@ "repo": "emacs-lsp/dap-mode", "unstable": { "version": [ - 20230212, - 1152 + 20230220, + 1618 ], "deps": [ "bui", @@ -19872,8 +19872,8 @@ "posframe", "s" ], - "commit": "39bfaf1a3400b3ca4e9755f4d15e33abb0dda2c4", - "sha256": "0c256wir3zwy7fpj16sxlcpm018hvmifkbxrjd145cpdn6qyfdfm" + "commit": "f5a8f240d85ec4cfe87314a5ac0c245b60a7dfe0", + "sha256": "08d815lfx89wd9dligy3q9j89jhjzkcy4fffmnq0xpjdfnvmjd5n" }, "stable": { "version": [ @@ -20208,11 +20208,11 @@ "repo": "emacs-dashboard/emacs-dashboard", "unstable": { "version": [ - 20230219, - 2200 + 20230220, + 1916 ], - "commit": "482595b0eaf2498246197754713fab282bd0cae9", - "sha256": "1rprwvpkpqjbid49gi1y83xf47ap7iajnv0xlb5n38wfak76z7ga" + "commit": "221ee4b77db77199380c519c4ba52c06abc725e9", + "sha256": "19qkly4k0j326kd4979cn1z35jpjnnbbmycxdp4v2i5h7hp76954" }, "stable": { "version": [ @@ -21314,11 +21314,11 @@ "repo": "astoff/devdocs.el", "unstable": { "version": [ - 20220811, - 703 + 20230220, + 2042 ], - "commit": "61ce83b79dc64e2f99d7f016a09b97e14b331459", - "sha256": "1dbffni30h8bx04j4hmia3a6xhzrgxx53yhhvymrrr7144x6i3ap" + "commit": "2988d4d201df16d72c3bea465d2b93b554dbddfc", + "sha256": "04ghf38mdb6829b81fb0j2l8z8i5d14m72x1h3sx1m1fihr7nlxv" } }, { @@ -24377,14 +24377,14 @@ "url": "https://salsa.debian.org/emacsen-team/dpkg-dev-el.git", "unstable": { "version": [ - 20190824, - 2314 + 20230220, + 1635 ], "deps": [ "debian-el" ], - "commit": "b0de196d11a6730c21bb4be308fd8924d4a0eb7c", - "sha256": "182lp5f8qv1avvfz1gb6isbg7pf9qasl0z0rcyj6kvnsjy8c1fnv" + "commit": "af9aad721cb263e495e2f77df458e9496549c04b", + "sha256": "1vqmi32n3yz4chrbi0473hhh4klxsh63qbydcl44xa91g3ly3vp5" }, "stable": { "version": [ @@ -28827,8 +28827,8 @@ "repo": "emacs-elsa/Elsa", "unstable": { "version": [ - 20230218, - 2015 + 20230220, + 2011 ], "deps": [ "cl-lib", @@ -28837,8 +28837,8 @@ "lsp-mode", "trinary" ], - "commit": "f96b4fcd6dba8b6bbc6bc20d4d9064a52b4f7820", - "sha256": "0snvr61jlj6b3vm6i7hpiwbxlbgyzb2rm19dr1vgaqspp7mficqi" + "commit": "2776cd0c0617f99cac2da3da764d2f221f62ff2a", + "sha256": "12f7svl0nikgqja87xwqhm5xw47sqwmx86f9lx90yadacw8v71qw" } }, { @@ -29142,17 +29142,17 @@ }, { "ename": "emacsql", - "commit": "f7e6b437ceaaba30f84580656fcaee728332bece", - "sha256": "02f0667nhs4prl2zyzy2x9nz6n30g5kxmkv92zkpirxy3bh95f0h", + "commit": "4872ef038dbbf67008bfa7951574ee372d6ff68d", + "sha256": "0mip1v0mrp7b538i949q9jrqlk9sl3i0qxa4jmm99llrs82mmdj0", "fetcher": "github", "repo": "magit/emacsql", "unstable": { "version": [ - 20230217, - 2219 + 20230220, + 1858 ], - "commit": "176fd090115b3c2aea46ec9bf24401503f337a9d", - "sha256": "1rwnhx61dpzw0x7hnyxj9gfmirfs64qsqgxz3lqm8xk8ir7cpap3" + "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", + "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" }, "stable": { "version": [ @@ -29202,15 +29202,15 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230217, - 2219 + 20230220, + 1858 ], "deps": [ "emacsql", "pg" ], - "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", - "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" + "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", + "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" }, "stable": { "version": [ @@ -29294,14 +29294,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230217, - 2219 + 20230220, + 1858 ], "deps": [ "emacsql" ], - "commit": "fbe3627422964b4e6f3702bc0b2769d35c398571", - "sha256": "1w1xghnbvzzy4m0sqbawfyrv3fm2vkhw597x5zy039mxkplr9ca4" + "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", + "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" } }, { @@ -29312,15 +29312,15 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230217, - 2219 + 20230220, + 1858 ], "deps": [ "emacsql", "sqlite3" ], - "commit": "fbe3627422964b4e6f3702bc0b2769d35c398571", - "sha256": "1w1xghnbvzzy4m0sqbawfyrv3fm2vkhw597x5zy039mxkplr9ca4" + "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", + "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" } }, { @@ -30468,16 +30468,17 @@ "repo": "emacscollective/epkg", "unstable": { "version": [ - 20230214, - 2135 + 20230220, + 1945 ], "deps": [ "closql", "compat", + "emacsql", "llama" ], - "commit": "57a886da663fa40afaccfb3de6ce8dfa7a33495f", - "sha256": "1pmz8pcn9wffipvzh6n82mngyiysjk56gp3afpn9ryz25d8hbl3i" + "commit": "576ba9fedc360d2f7dfb724f9f767cc4688e5b7f", + "sha256": "1ghx8y814wi09zi3fa19nmxw7b0v6fp4mb49ibf46608k0vndq0y" }, "stable": { "version": [ @@ -32770,15 +32771,15 @@ "repo": "emacs-evil/evil", "unstable": { "version": [ - 20230214, - 956 + 20230220, + 1805 ], "deps": [ "cl-lib", "goto-chg" ], - "commit": "2ce03d412c4e93b0b89eb43d796c991806415b8a", - "sha256": "1bxlsrslx18g4i1rnjxlqmcs49mljypnza9mjjakfzfm44z90c74" + "commit": "22d76a4080e40381aae194c94f3bc16ba67a330a", + "sha256": "110gdl73jfy0r28vs34bipyq692h2v1wfinrgkpak1s09zwcmnd3" }, "stable": { "version": [ @@ -42345,14 +42346,14 @@ "repo": "magit/forge", "unstable": { "version": [ - 20230216, - 1755 + 20230220, + 1945 ], "deps": [ "closql", "compat", "dash", - "emacsql-sqlite", + "emacsql", "ghub", "let-alist", "magit", @@ -42360,8 +42361,8 @@ "transient", "yaml" ], - "commit": "f4aceb35f9d87277e23ee2017e49d11ef89bb7a5", - "sha256": "0h057faq1a1hr11smq0y5vrk0r9jsyfp6b8vsdxqj496zf4zp1vv" + "commit": "3164739dc70ee5ecf05d87dba9dc803d62a89adf", + "sha256": "01mxlikyxjl9q4gc5bp0i5vy2jvg7fc9ramilajgx37yf7nf5gn2" }, "stable": { "version": [ @@ -44992,16 +44993,16 @@ "repo": "magit/magit", "unstable": { "version": [ - 20230213, - 2015 + 20230220, + 1901 ], "deps": [ "compat", "transient", "with-editor" ], - "commit": "565818845e7a10f5fb1dafc901b841b0fe9e2d64", - "sha256": "05rg476kzyh8d103d56l20rmx6qsiy0lrpfshs8mmvqx68q8z4ly" + "commit": "76fe46c098498deab54b6c5b11731e970040a52b", + "sha256": "0jbf10w7v7bni8wvn6l8ml05hfxljjb8ns16z20f7hn9zvmgdb26" }, "stable": { "version": [ @@ -46586,8 +46587,8 @@ "repo": "deusmax/gnus-notes", "unstable": { "version": [ - 20221127, - 1316 + 20221206, + 616 ], "deps": [ "async", @@ -46598,8 +46599,8 @@ "org", "s" ], - "commit": "b21907ca67dedaac730f4d5dcba8fb778283b23d", - "sha256": "1wl3gjklj9i552bal6h5nwif5dm4csy5pzwq3kl005x58bfbyfic" + "commit": "9996b382c5c7b4f944a716baac69b556ef181462", + "sha256": "0m34dxxmhcsxmlx5ci9zzlhfm4jgp4ind5fhaj1ycyi1grwk92ca" }, "stable": { "version": [ @@ -55640,15 +55641,15 @@ }, "stable": { "version": [ - 5, - 3, - 4 + 6, + 0, + 0 ], "deps": [ "cl-lib" ], - "commit": "68d5211b2737c2ba31bbceed9b1abbb36bb83e39", - "sha256": "0qkrgar7blirhx85p0m4pjvwwh5rcs9ypy49hyg9bah1dgrnm88b" + "commit": "a9c2898b9ac8f13e57092e3d5287e05b942d4539", + "sha256": "05ss0601jqyvxqr6pblpjwlq2hl0yq3abdlvxjhdx4br4mgi3sgq" } }, { @@ -65498,14 +65499,14 @@ "repo": "slotThe/change-env", "unstable": { "version": [ - 20230219, - 1800 + 20230220, + 637 ], "deps": [ "auctex" ], - "commit": "19d422cbe5944b13dccb7606f86b8520ed709e8f", - "sha256": "1y272zkac4kkrqz70pg2j9y13sf60did4l94yfjwmx44qpn48yd1" + "commit": "748cdbb4bbf29a2e5053cf3d965e95cc7db67fac", + "sha256": "1kca90skv4pp7j08jgbhhkmvr5aiwp88gpdx869g53nqy8ssishh" } }, { @@ -67802,10 +67803,10 @@ "version": [ 1, 3, - 1 + 2 ], - "commit": "5055bfd80644e306aef4e7a7e3e9e5d765b691a4", - "sha256": "1w2xvnihk607vnmlmqz7zsjksd3mscjx2igdadxsfz398bjwl0qd" + "commit": "b7987c265a64435299d6b02f960ed2c894c4a145", + "sha256": "1jmi1j8fkvwfawd9q8b6yhqbg8frckjxsgf9jwgiqw9cvakz6wbf" } }, { @@ -73214,14 +73215,14 @@ "repo": "tarsius/minions", "unstable": { "version": [ - 20230107, - 1518 + 20230212, + 2213 ], "deps": [ "compat" ], - "commit": "69533c47449009a9533412db69c0eecedf5aa285", - "sha256": "1kn2f0x0yary3ry1kx7v94fq5zinjgcvj8fqpnfq0qn3m34cv39f" + "commit": "c5e8b65620558409a79766e86e3e8263cef765df", + "sha256": "1prs6zr924smh1kiq1rljz0vim4rl2ngi5rj7lrq60k0hq1vyddl" }, "stable": { "version": [ @@ -73929,11 +73930,11 @@ "repo": "protesilaos/modus-themes", "unstable": { "version": [ - 20230217, - 1150 + 20230220, + 1859 ], - "commit": "39ac76907ca1ffb33167c72036b35814c07e9587", - "sha256": "1k0wn3wn0xnp54zmldy1nasykhzziabad01dgqvfnciwpxirpgrb" + "commit": "f4282839d880a88062acaafbd8acea2708d3932b", + "sha256": "0nn5mkm2pn59l1bchxaz59zsl9xhvjxmqc5vizrgl77y9mjkws96" }, "stable": { "version": [ @@ -77609,14 +77610,14 @@ "repo": "emacscollective/no-littering", "unstable": { "version": [ - 20230212, - 2015 + 20230220, + 1519 ], "deps": [ "compat" ], - "commit": "97bcfebd43965751ec5d3a68f9204a654c791870", - "sha256": "1ni5y086ys4yn09n5i5b5c1byi28jnd64qql5rvbw1dfjc4azxdm" + "commit": "b1ba75ab9296ada356219ff8ae26333a79871c61", + "sha256": "0v1p6zwxkjfbk52l927wnlflnj0r25z7jyf2pjc1c39p9yg6gwl5" }, "stable": { "version": [ @@ -77952,11 +77953,11 @@ "url": "https://git.notmuchmail.org/git/notmuch", "unstable": { "version": [ - 20221115, - 1134 + 20230220, + 1258 ], - "commit": "5ba7684445b9338ab289d502d4688d9aff3d8803", - "sha256": "15f6f4wm0k99ipzd7q3iv4w1ch534wyrnm0vhqa25k0sz2skzssr" + "commit": "f63d14a8c12ad76024d2865c0223a06f6f4bb372", + "sha256": "1hk062jq6hgwfc5yv9anijn2srydpqjjab16ipvngh5ngcr71rwz" }, "stable": { "version": [ @@ -82906,15 +82907,15 @@ "repo": "beacoder/org-ivy-search", "unstable": { "version": [ - 20230203, - 301 + 20230220, + 812 ], "deps": [ "ivy", "org" ], - "commit": "278e98a4f2103919ede49a77d9b7c5e4ade945a7", - "sha256": "09pvyrggmscpa25vdyszfyf1zi8a4lilizkng5ci66j9pvla36ir" + "commit": "e7170ff613734f24edace3309d69e23ef73f4b0f", + "sha256": "0sp6qpzj69n1hir9widxdbhz3781ld5hg1h98s23v1lqqxa6ddk9" } }, { @@ -84156,15 +84157,15 @@ "repo": "oer/org-re-reveal", "unstable": { "version": [ - 20221228, - 1641 + 20230220, + 848 ], "deps": [ "htmlize", "org" ], - "commit": "91cdd82c47b86990b5eb41fe34446a042194cc83", - "sha256": "1bp3kz2awy2mizs59qsa2yl7wfa0197fklnramzifz6z2zv5kbrx" + "commit": "611d6bd1f66eedf5ee2590426990efd4ca990076", + "sha256": "1l8qjzijgbjzy4skhy9n0z05bczqlyh9lxwsd98f83mv956ghbkd" }, "stable": { "version": [ @@ -86473,14 +86474,14 @@ "repo": "minad/osm", "unstable": { "version": [ - 20230215, - 720 + 20230220, + 1723 ], "deps": [ "compat" ], - "commit": "c3fbc813f2e76c71056bf6e28ae3a997f33718d1", - "sha256": "07caffh30sgmcbhxqk3wfpml3310ldvwkqbh19czq7nx4llynixc" + "commit": "6c0054004174840be106b3627a4b704a197bad6a", + "sha256": "1wak2nif0mwvvfyswjhs6cdymhxvhdr1c5l0brhavla62npnzbah" }, "stable": { "version": [ @@ -110924,14 +110925,14 @@ "repo": "minad/tempel", "unstable": { "version": [ - 20230215, - 721 + 20230220, + 1700 ], "deps": [ "compat" ], - "commit": "66e4763087f3e851956b9a77a00527b440737d03", - "sha256": "1qhy9rp0k74hbqns67iwyzk86x7rriqyd4l48j5qqmfvr3v5sg1m" + "commit": "51773e54224bc3f5631105bf6e29cd1b4b5e41b3", + "sha256": "1qwnr6n7h05vi8jpayrrhzn6s7jn03gdl0dkc54x4nhflxx1f3f6" }, "stable": { "version": [ @@ -112006,21 +112007,21 @@ "repo": "facebook/fbthrift", "unstable": { "version": [ - 20230212, - 2005 + 20230220, + 336 ], - "commit": "399e2f7bdc7fb68cccaa45a4c94b50bc1d15f198", - "sha256": "0y0vkni9n8kvlk11pxv5kl1hnjgpb41skigm0l5kzjn6479bwwxp" + "commit": "1d01d76ff25b7d5c5d36a08f111834082277f8e7", + "sha256": "0f1cq9psqqnrxca1sh97dg4kjcqdpdjib9kwx80gg4mr5wjpcw9j" }, "stable": { "version": [ 2023, 2, - 13, + 20, 0 ], - "commit": "399e2f7bdc7fb68cccaa45a4c94b50bc1d15f198", - "sha256": "0y0vkni9n8kvlk11pxv5kl1hnjgpb41skigm0l5kzjn6479bwwxp" + "commit": "1d01d76ff25b7d5c5d36a08f111834082277f8e7", + "sha256": "0f1cq9psqqnrxca1sh97dg4kjcqdpdjib9kwx80gg4mr5wjpcw9j" } }, { @@ -112780,11 +112781,11 @@ "repo": "topikettunen/tok-theme", "unstable": { "version": [ - 20230219, - 1115 + 20230220, + 1320 ], - "commit": "0ace75bd3be5e756907d790c947a0cc15aa3c201", - "sha256": "1y80mrlr9kq1pzm8h02dsz5ci5jsvnd5bavishjkrnlbzkg4c6wx" + "commit": "4dd1efcab11576c0989c52f67c89759a43e07f0b", + "sha256": "0s4bamim86y42ahg529hj2sf7654lab1p0fb06srn1gqj8zapndj" } }, { @@ -113294,14 +113295,14 @@ "repo": "magit/transient", "unstable": { "version": [ - 20230219, - 1111 + 20230220, + 1425 ], "deps": [ "compat" ], - "commit": "6ddd4902033ab1844fc8399716f01171ec954f02", - "sha256": "1laxygkhb5s8w5iqbj6c10xii9ksyay0r9x0swwmg4s8zbas5qmi" + "commit": "0204a2432862aa187745995f1c378e6d875b35cb", + "sha256": "06qbc8ad3s4z5vihbpvyl8xdlppxkhvprnhxq0kxsasy7psfqdns" }, "stable": { "version": [ @@ -114101,11 +114102,11 @@ "repo": "renzmann/treesit-auto", "unstable": { "version": [ - 20230214, - 2233 + 20230220, + 1438 ], - "commit": "2d3f9d9680f8481945e87ed99210efbb9875c13c", - "sha256": "0xzrx8h3ciwwkyv7m5mnncm3mpz80728hjhbhknk1jwhx2dn3bwr" + "commit": "ed809a73b3bc418942efee7b682ea4cbd4605844", + "sha256": "13w74467yxhqf87cfmyl9hji3mvn1924m8l5bnkb9fms8m7r5p09" }, "stable": { "version": [ @@ -116982,8 +116983,8 @@ "repo": "gmlarumbe/verilog-ext", "unstable": { "version": [ - 20230219, - 1437 + 20230220, + 1852 ], "deps": [ "ag", @@ -116999,8 +117000,8 @@ "verilog-mode", "yasnippet" ], - "commit": "dfda62a739a22b75695d53831d2a8d18a8f4f3f4", - "sha256": "1wy45w0h4c94851rhm4j87wrx9p92g93hfcl7ii0vpklqw8vdbhb" + "commit": "6872a42791c5105bfe1de1d63abae537559c7ca9", + "sha256": "15p160yrlxxdlby2fr5aavsxzagdc31wrb2902frgix9zr2z3igx" } }, { @@ -117684,11 +117685,11 @@ "repo": "k-talo/volatile-highlights.el", "unstable": { "version": [ - 20230219, - 1522 + 20230220, + 1415 ], - "commit": "adb4fd02b295c2848c71ab2ed4ecc5249c053905", - "sha256": "1c7af99ixy7hk1bxas58rr0hqg233f0j8dskg7nhxkzgyidv9rar" + "commit": "513c8b73cd3bc06cb9936a100468c227f649851c", + "sha256": "0a2r492plzxcl5sl2n75xqywk6yjkgj07xzbkcabvibj33bf1mz7" }, "stable": { "version": [ @@ -121868,14 +121869,14 @@ "repo": "AndreaCrotti/yasnippet-snippets", "unstable": { "version": [ - 20230216, - 942 + 20230220, + 1659 ], "deps": [ "yasnippet" ], - "commit": "0235f2b3f2d011e2875b4bc8cc6ec17d867a8fb6", - "sha256": "1yq25mlhdfznnfanjxvcmayclq5sm1m5kn50ji0qhl3nrj3c3z98" + "commit": "9580874944cce78b3bb2296ae10de1443b0a57e8", + "sha256": "0ig8ywpw1ql49fp1nlxrgaiadd6zxf2npxnpiv09vj6vij0pank4" }, "stable": { "version": [ From 1d49c42c9424d0eb88c28b3bb44c528c12143558 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 12:10:29 +0100 Subject: [PATCH 057/178] python311Packages.typish: add changelog to meta --- pkgs/development/python-modules/typish/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/typish/default.nix b/pkgs/development/python-modules/typish/default.nix index c0942c701683..c2f343c1e843 100644 --- a/pkgs/development/python-modules/typish/default.nix +++ b/pkgs/development/python-modules/typish/default.nix @@ -34,6 +34,7 @@ buildPythonPackage rec { meta = with lib; { description = "Python module for checking types of objects"; homepage = "https://github.com/ramonhagenaars/typish"; + changelog = "https://github.com/ramonhagenaars/typish/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fmoda3 ]; }; From 76121747a663cbe12afecbcdcbfda2b5542a01e9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 12:15:53 +0100 Subject: [PATCH 058/178] python311Packages.typish: disable on unsupported Python releases --- pkgs/development/python-modules/typish/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/typish/default.nix b/pkgs/development/python-modules/typish/default.nix index c2f343c1e843..0bad77767013 100644 --- a/pkgs/development/python-modules/typish/default.nix +++ b/pkgs/development/python-modules/typish/default.nix @@ -3,11 +3,15 @@ , fetchFromGitHub , numpy , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "typish"; version = "1.9.3"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "ramonhagenaars"; From 486df414530d0ee2218c754a2337efd35e058946 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 12:53:33 +0100 Subject: [PATCH 059/178] python310Packages.typish: use tag --- pkgs/development/python-modules/typish/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/typish/default.nix b/pkgs/development/python-modules/typish/default.nix index 0bad77767013..63fce293d671 100644 --- a/pkgs/development/python-modules/typish/default.nix +++ b/pkgs/development/python-modules/typish/default.nix @@ -16,8 +16,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "ramonhagenaars"; repo = "typish"; - rev = "7875850f55e2df8a9e2426e2d484ab618e347c7f"; - sha256 = "0mc5hw92f15mwd92rb2q9isc4wi7xq76449w7ph5bskcspas0wrf"; + rev = "refs/tags/v${version}"; + hash = "sha256-LnOg1dVs6lXgPTwRYg7uJ3LCdExYrCxS47UEJxKHhVU="; }; nativeCheckInputs = [ From 60ba095d7b34d4fd8f74b95fd1ff24fc53cab4ea Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 13:13:36 +0100 Subject: [PATCH 060/178] python310Packages.jsons: add changelog to meta --- pkgs/development/python-modules/jsons/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/python-modules/jsons/default.nix b/pkgs/development/python-modules/jsons/default.nix index 457bcf4f6525..29d5e8c27aaa 100644 --- a/pkgs/development/python-modules/jsons/default.nix +++ b/pkgs/development/python-modules/jsons/default.nix @@ -41,6 +41,7 @@ buildPythonPackage rec { meta = with lib; { description = "Turn Python objects into dicts or json strings and back"; homepage = "https://github.com/ramonhagenaars/jsons"; + changelog = "https://github.com/ramonhagenaars/jsons/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fmoda3 ]; }; From ee1dcddd159c9d12bebabe3c7033c786222d1543 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 13:14:30 +0100 Subject: [PATCH 061/178] python310Packages.jsons: disable on unsupported Python releases --- pkgs/development/python-modules/jsons/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/jsons/default.nix b/pkgs/development/python-modules/jsons/default.nix index 29d5e8c27aaa..416ab8d9cbc5 100644 --- a/pkgs/development/python-modules/jsons/default.nix +++ b/pkgs/development/python-modules/jsons/default.nix @@ -1,8 +1,9 @@ { lib +, attrs , buildPythonPackage , fetchFromGitHub -, attrs , pytestCheckHook +, pythonOlder , typish , tzdata }: @@ -10,6 +11,9 @@ buildPythonPackage rec { pname = "jsons"; version = "1.6.3"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "ramonhagenaars"; From 348edf4ff97648e7e6ac75c3b887132b7e91e210 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 13:17:16 +0100 Subject: [PATCH 062/178] python310Packages.jsons: disable failing test on Python 3.11 --- pkgs/development/python-modules/jsons/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/jsons/default.nix b/pkgs/development/python-modules/jsons/default.nix index 416ab8d9cbc5..9a5116c94d6a 100644 --- a/pkgs/development/python-modules/jsons/default.nix +++ b/pkgs/development/python-modules/jsons/default.nix @@ -3,6 +3,7 @@ , buildPythonPackage , fetchFromGitHub , pytestCheckHook +, pythonAtLeast , pythonOlder , typish , tzdata @@ -18,8 +19,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "ramonhagenaars"; repo = "jsons"; - rev = "v${version}"; - sha256 = "0sdwc57f3lwzhbcapjdbay9f8rn65rlspxa67a2i5apcgg403qpc"; + rev = "refs/tags/v${version}"; + hash = "sha256-7OIByHvsqhKFOkb1q2kuxmbkkleryavYgp/T4U5hvGk="; }; propagatedBuildInputs = [ @@ -38,6 +39,11 @@ buildPythonPackage rec { "tests/test_performance.py" ]; + disabledTests = lib.optionals (pythonAtLeast "3.11") [ + # https://github.com/ramonhagenaars/jsons/issues/187 + "test_dump_load_parameterized_collections" + ]; + pythonImportsCheck = [ "jsons" ]; From c9fb0b33d722be28a53bb07deeb34bfef96ced37 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 12:51:22 +0100 Subject: [PATCH 063/178] python310Packages.typish: disable failing test on Python 3.11 --- pkgs/development/python-modules/typish/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/typish/default.nix b/pkgs/development/python-modules/typish/default.nix index 63fce293d671..c05518c257f0 100644 --- a/pkgs/development/python-modules/typish/default.nix +++ b/pkgs/development/python-modules/typish/default.nix @@ -3,6 +3,7 @@ , fetchFromGitHub , numpy , pytestCheckHook +, pythonAtLeast , pythonOlder }: @@ -31,6 +32,11 @@ buildPythonPackage rec { "tests/functions/test_instance_of.py" ]; + disabledTests = lib.optionals (pythonAtLeast "3.11") [ + # https://github.com/ramonhagenaars/typish/issues/32 + "test_get_origin" + ]; + pythonImportsCheck = [ "typish" ]; From a19884ea5c4e029f4e3c0de9c46586c9c9e09f64 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 21 Feb 2023 14:11:26 +0000 Subject: [PATCH 064/178] ngtcp2: 0.13.0 -> 0.13.1 --- pkgs/development/libraries/ngtcp2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ngtcp2/default.nix b/pkgs/development/libraries/ngtcp2/default.nix index 3ea84895eb9b..b100450b732d 100644 --- a/pkgs/development/libraries/ngtcp2/default.nix +++ b/pkgs/development/libraries/ngtcp2/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "ngtcp2"; - version = "0.13.0"; + version = "0.13.1"; src = fetchFromGitHub { owner = "ngtcp2"; repo = pname; rev = "v${version}"; - sha256 = "sha256-rKEF5R1GubgFiblmdTqh26PxTRxIqXUJHxj0Qwd3N00="; + sha256 = "sha256-bkTbnf7vyTxA623JVGUgrwAuXK7d8kzijOK1F4Sh4yY="; }; outputs = [ "out" "dev" "doc" ]; From 680d8810eea4c6d5b04dfdd1329e9632953894d0 Mon Sep 17 00:00:00 2001 From: harvidsen Date: Tue, 21 Feb 2023 15:55:09 +0100 Subject: [PATCH 065/178] python3Packages.asyncua: 1.0.0 -> 1.0.1 Fixes tests for python 3.11 --- pkgs/development/python-modules/asyncua/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/asyncua/default.nix b/pkgs/development/python-modules/asyncua/default.nix index 253640b50bb2..8faa98cfda06 100644 --- a/pkgs/development/python-modules/asyncua/default.nix +++ b/pkgs/development/python-modules/asyncua/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { pname = "asyncua"; - version = "1.0.0"; + version = "1.0.1"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "FreeOpcUa"; repo = "opcua-asyncio"; rev = "v${version}"; - hash = "sha256-wBtI3ZlsvOkNvl/q0X9cm2hNRUBW1oB/kZOo8lqo4dQ="; + hash = "sha256-6A4z+tiQ2oUlB9t44wlW64j5sjWFMAgqT3Xt0FdJCBs="; }; propagatedBuildInputs = [ From 662ae9bef72fc99a8ca80903c35451c4592cc820 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 21 Feb 2023 16:32:21 +0000 Subject: [PATCH 066/178] rtsp-simple-server: 0.21.2 -> 0.21.4 --- pkgs/servers/rtsp-simple-server/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/rtsp-simple-server/default.nix b/pkgs/servers/rtsp-simple-server/default.nix index 0ff710ae6349..668f6f8fdf84 100644 --- a/pkgs/servers/rtsp-simple-server/default.nix +++ b/pkgs/servers/rtsp-simple-server/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "rtsp-simple-server"; - version = "0.21.2"; + version = "0.21.4"; src = fetchFromGitHub { owner = "aler9"; repo = pname; rev = "v${version}"; - hash = "sha256-dg+Xl3yHiWJPV+3iFcMVCPHOpHo0+pFiJv+ZVXDAK6k="; + hash = "sha256-56BHSRwiYxQHo32d0ZVKJB44GCEG6GRwrjQq6GlIHBc="; }; - vendorHash = "sha256-KvG0+wxe0D+TxQmxaskTa228zUlOxCZE9rGqMYkdwzM="; + vendorHash = "sha256-HYuW129TQjcG+JGO6OtweIwjcs6hmgaikDaaM4VFSd0="; # Tests need docker doCheck = false; From a65c82e33266abd07fdaaef38f42c58fe64a2320 Mon Sep 17 00:00:00 2001 From: Matthew Penner Date: Tue, 21 Feb 2023 10:32:27 -0700 Subject: [PATCH 067/178] crc: 2.13.1 -> 2.14.0 --- pkgs/applications/networking/cluster/crc/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/cluster/crc/default.nix b/pkgs/applications/networking/cluster/crc/default.nix index 2c55802c726b..c47062fdfc41 100644 --- a/pkgs/applications/networking/cluster/crc/default.nix +++ b/pkgs/applications/networking/cluster/crc/default.nix @@ -10,22 +10,22 @@ }: let - openShiftVersion = "4.12.0"; + openShiftVersion = "4.12.1"; okdVersion = "4.11.0-0.okd-2022-11-05-030711"; podmanVersion = "4.3.1"; writeKey = "cvpHsNcmGCJqVzf6YxrSnVlwFSAZaYtp"; in buildGoModule rec { - version = "2.13.1"; + version = "2.14.0"; pname = "crc"; - gitCommit = "b5b864fdd4ed047027f439db96c2658aa194d2bc"; + gitCommit = "868d96cd4f73dad72df54475c52c65f9741dc240"; modRoot = "cmd/crc"; src = fetchFromGitHub { owner = "crc-org"; repo = "crc"; rev = "v${version}"; - sha256 = "sha256-0e62mQ01pt0kClrEx4ss2T8BN1+0aQiCFPyDg5agbTU"; + sha256 = "sha256-q1OJJTveXoNzW9lohQOY7LVR3jOyiQZX5nHBgRupxTM="; }; vendorSha256 = null; @@ -55,7 +55,6 @@ buildGoModule rec { export HOME=$(mktemp -d) ''; - passthru.tests.version = testers.testVersion { package = crc; command = '' @@ -69,6 +68,6 @@ buildGoModule rec { description = "Manages a local OpenShift 4.x cluster or a Podman VM optimized for testing and development purposes"; homepage = "https://crc.dev"; license = licenses.asl20; - maintainers = with maintainers; [ shikanime tricktron ]; + maintainers = with maintainers; [ matthewpi shikanime tricktron ]; }; } From 96ba652a1c924d582a009a1a1bfb2a3a0ef212e3 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 19:33:09 +0100 Subject: [PATCH 068/178] python310Packages.multimethod: add changelog to meta --- pkgs/development/python-modules/multimethod/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/multimethod/default.nix b/pkgs/development/python-modules/multimethod/default.nix index 3523563693c3..d23eedcfa5fb 100644 --- a/pkgs/development/python-modules/multimethod/default.nix +++ b/pkgs/development/python-modules/multimethod/default.nix @@ -31,7 +31,8 @@ buildPythonPackage rec { meta = with lib; { description = "Multiple argument dispatching"; - homepage = "https://github.com/coady/multimethod"; + homepage = "https://coady.github.io/multimethod/"; + changelog = "https://github.com/coady/multimethod/tree/v${version}#changes"; license = licenses.asl20; maintainers = teams.determinatesystems.members; }; From ff2833772f301482ffdb01c3607997aa92c19848 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 19:35:21 +0100 Subject: [PATCH 069/178] python310Packages.multimethod: 1.6 -> 1.9.1 Diff: https://github.com/coady/multimethod/compare/refs/tags/v1.6...v1.9.1 Changelog: https://github.com/coady/multimethod/tree/v1.9.1#changes --- pkgs/development/python-modules/multimethod/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/multimethod/default.nix b/pkgs/development/python-modules/multimethod/default.nix index d23eedcfa5fb..90e596a51166 100644 --- a/pkgs/development/python-modules/multimethod/default.nix +++ b/pkgs/development/python-modules/multimethod/default.nix @@ -3,18 +3,21 @@ , fetchFromGitHub , setuptools , pytestCheckHook +, pythonOlder }: buildPythonPackage rec { pname = "multimethod"; - version = "1.6"; + version = "1.9.1"; format = "pyproject"; + disabled = pythonOlder "3.7"; + src = fetchFromGitHub { owner = "coady"; repo = pname; - rev = "v${version}"; - sha256 = "09vrxzv8q0lqsbh6d83wjdd29ja66rj31y7wmyha14jk603fd9k0"; + rev = "refs/tags/v${version}"; + hash = "sha256-KfO+6bZOZOv9SWTV4eqJTWb3/PeCpnXknSF47ddZR5o="; }; nativeBuildInputs = [ From 2ce66cf3798da56506b00ce23e1304cf289826be Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Thu, 16 Feb 2023 00:21:29 -0800 Subject: [PATCH 070/178] broot: fix cross compilation Co-authored-by: Artturin --- pkgs/tools/misc/broot/default.nix | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/misc/broot/default.nix b/pkgs/tools/misc/broot/default.nix index 4daab1ef99c6..1c805452ca19 100644 --- a/pkgs/tools/misc/broot/default.nix +++ b/pkgs/tools/misc/broot/default.nix @@ -11,6 +11,7 @@ , Security , xorg , zlib +, buildPackages }: rustPlatform.buildRustPackage rec { @@ -47,24 +48,20 @@ rustPlatform.buildRustPackage rec { --replace "#version" "${version}" ''; - postInstall = '' - # Do not nag users about installing shell integration, since - # it is impure. - wrapProgram $out/bin/broot \ - --set BR_INSTALL no - + postInstall = lib.optionalString (stdenv.hostPlatform.emulatorAvailable buildPackages) '' # Install shell function for bash. - $out/bin/broot --print-shell-function bash > br.bash + ${stdenv.hostPlatform.emulator buildPackages} $out/bin/broot --print-shell-function bash > br.bash install -Dm0444 -t $out/etc/profile.d br.bash # Install shell function for zsh. - $out/bin/broot --print-shell-function zsh > br.zsh + ${stdenv.hostPlatform.emulator buildPackages} $out/bin/broot --print-shell-function zsh > br.zsh install -Dm0444 br.zsh $out/share/zsh/site-functions/br # Install shell function for fish - $out/bin/broot --print-shell-function fish > br.fish + ${stdenv.hostPlatform.emulator buildPackages} $out/bin/broot --print-shell-function fish > br.fish install -Dm0444 -t $out/share/fish/vendor_functions.d br.fish + '' + '' # install shell completion files OUT_DIR=$releaseDir/build/broot-*/out @@ -73,6 +70,11 @@ rustPlatform.buildRustPackage rec { installShellCompletion --zsh $OUT_DIR/{_br,_broot} installManPage man/broot.1 + + # Do not nag users about installing shell integration, since + # it is impure. + wrapProgram $out/bin/broot \ + --set BR_INSTALL no ''; doInstallCheck = true; From 5f29a5628bb53f45db26aaff22d0817b6b9bd53d Mon Sep 17 00:00:00 2001 From: Wei Ren Date: Sat, 18 Feb 2023 16:08:27 -0600 Subject: [PATCH 071/178] outline: fix broken links to public assets Revert changes in 06a70ad. Instead, use symlink to fix the issue that 06a70ad tries to solve. --- pkgs/servers/web-apps/outline/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/web-apps/outline/default.nix b/pkgs/servers/web-apps/outline/default.nix index 35df24afd468..c438c7918692 100644 --- a/pkgs/servers/web-apps/outline/default.nix +++ b/pkgs/servers/web-apps/outline/default.nix @@ -56,15 +56,16 @@ stdenv.mkDerivation rec { runHook preInstall mkdir -p $out/bin $out/share/outline - mv node_modules build $out/share/outline/ + mv public node_modules build $out/share/outline/ + + node_modules=$out/share/outline/node_modules + build=$out/share/outline/build + # On NixOS the WorkingDirectory is set to the build directory, as # this contains files needed in the onboarding process. This folder # must also contain the `public` folder for mail notifications to # work, as it contains the mail templates. - mv public $out/share/outline/build - - node_modules=$out/share/outline/node_modules - build=$out/share/outline/build + ln -s $out/share/outline/public $build/public makeWrapper ${nodejs}/bin/node $out/bin/outline-server \ --add-flags $build/server/index.js \ From c5bdf25a86603bb36889fbb0f2c8c1dd60dccb99 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 21 Feb 2023 20:03:35 +0000 Subject: [PATCH 072/178] appgate-sdp: 6.0.3 -> 6.1.2 --- pkgs/applications/networking/appgate-sdp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/appgate-sdp/default.nix b/pkgs/applications/networking/appgate-sdp/default.nix index f776c2c0388d..bcd0e1f88b2f 100644 --- a/pkgs/applications/networking/appgate-sdp/default.nix +++ b/pkgs/applications/networking/appgate-sdp/default.nix @@ -86,11 +86,11 @@ let in stdenv.mkDerivation rec { pname = "appgate-sdp"; - version = "6.0.3"; + version = "6.1.2"; src = fetchurl { url = "https://bin.appgate-sdp.com/${lib.versions.majorMinor version}/client/appgate-sdp_${version}_amd64.deb"; - sha256 = "sha256-UDyVPoQM78CKVWXgr08An77QTiFVmRNHwQPGaj1jAIM="; + sha256 = "sha256-nTQDQxXWMHkHgKlr7mIlazH7kW3HJqNLrUATo4s0N1g="; }; # just patch interpreter From 47ae163795e90ef1b7221944085c55f2e1ae560c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 21:13:33 +0100 Subject: [PATCH 073/178] python310Packages.adafruit-platformdetect: 3.40.2 -> 3.40.3 Changelog: https://github.com/adafruit/Adafruit_Python_PlatformDetect/releases/tag/3.40.3 --- .../python-modules/adafruit-platformdetect/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/adafruit-platformdetect/default.nix b/pkgs/development/python-modules/adafruit-platformdetect/default.nix index 62188429171e..147e5805b806 100644 --- a/pkgs/development/python-modules/adafruit-platformdetect/default.nix +++ b/pkgs/development/python-modules/adafruit-platformdetect/default.nix @@ -7,7 +7,7 @@ buildPythonPackage rec { pname = "adafruit-platformdetect"; - version = "3.40.2"; + version = "3.40.3"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -15,7 +15,7 @@ buildPythonPackage rec { src = fetchPypi { pname = "Adafruit-PlatformDetect"; inherit version; - hash = "sha256-NLbKvC/7N10Y7l94sfiWCmBz92qlgufb1S62Adod4WA="; + hash = "sha256-phG9DEl4JlrIN3zil0SQRZ+DnktpunK094nxVQ9Cksw="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; From 2ca5a88f8e7396b022ae7345f6a2592cb0301187 Mon Sep 17 00:00:00 2001 From: Eduard Bachmakov Date: Tue, 21 Feb 2023 22:27:27 +0100 Subject: [PATCH 074/178] nixos/plasma5: remove non-existant/unused PAM service configs. This removes two unused service configs from /etc/pam.d/ and, more importantly, reduces confusion. * kdm no longer exists in nixpkgs * `pam.d/gdm` is not used by gdm * `pam.d/lightdm` IS used by lightdm but hardcoded using .text rather than attrset+template. --- nixos/modules/services/x11/desktop-managers/plasma5.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index ab666ba39490..9a26681d1f92 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -379,11 +379,6 @@ in security.pam.services.kde = { allowNullPassword = true; }; - # Doing these one by one seems silly, but we currently lack a better - # construct for handling common pam configs. - security.pam.services.gdm.enableKwallet = true; - security.pam.services.kdm.enableKwallet = true; - security.pam.services.lightdm.enableKwallet = true; security.pam.services.sddm.enableKwallet = true; systemd.user.services = { From 89d7cda873b6399c15a0cea3028abd02e5ef387c Mon Sep 17 00:00:00 2001 From: Philipp Bartsch Date: Tue, 21 Feb 2023 22:44:50 +0100 Subject: [PATCH 075/178] binwalk: 2.3.3 -> 2.3.4 Fixes CVE-2022-4510 The release fixes a PFS directory traversal / code execution bug. Credit: Quentin Kaiser. --- pkgs/development/python-modules/binwalk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/binwalk/default.nix b/pkgs/development/python-modules/binwalk/default.nix index c3a0b8feedfd..4cadf33f1a6d 100644 --- a/pkgs/development/python-modules/binwalk/default.nix +++ b/pkgs/development/python-modules/binwalk/default.nix @@ -22,13 +22,13 @@ buildPythonPackage rec { pname = "binwalk${lib.optionalString visualizationSupport "-full"}"; - version = "2.3.3"; + version = "2.3.4"; src = fetchFromGitHub { owner = "ReFirmLabs"; repo = "binwalk"; rev = "v${version}"; - sha256 = "0phqyqv34vhh80dgipiggs4n3iq2vfjk9ywx2c5d8g61vzgbd2g8"; + sha256 = "sha256-hlPbzqGRSXcIqlI+SNKq37CnnHd1IoMBNSjhyeAM1TE="; }; patches = [ From 45a6488f9c18c57e05c248a3cd5722be114e9952 Mon Sep 17 00:00:00 2001 From: Eduard Bachmakov Date: Tue, 21 Feb 2023 22:48:03 +0100 Subject: [PATCH 076/178] nixos/sddm + nixos/plasma5: switch PAM service to `login`. GDM and LightDM are already using this approach. It also allows us to enable Kwallet integration more globally without generating stray PAM services. The default configuration of login service includes both options sddm was setting explicitly. --- .../modules/services/x11/desktop-managers/plasma5.nix | 2 +- nixos/modules/services/x11/display-managers/sddm.nix | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index 9a26681d1f92..73322696aeac 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -379,7 +379,7 @@ in security.pam.services.kde = { allowNullPassword = true; }; - security.pam.services.sddm.enableKwallet = true; + security.pam.services.login.enableKwallet = true; systemd.user.services = { plasma-early-setup = mkIf cfg.runUsingSystemd { diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index a3f03d7a19a6..0ddeac0f1098 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -215,10 +215,12 @@ in }; security.pam.services = { - sddm = { - allowNullPassword = true; - startSession = true; - }; + sddm.text = '' + auth substack login + account include login + password substack login + session include login + ''; sddm-greeter.text = '' auth required pam_succeed_if.so audit quiet_success user = sddm From 5daf760ccabcfd61c7f6603fe4bf372789f3730b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:09:05 +0100 Subject: [PATCH 077/178] python310Packages.hatasmota: 0.6.3 -> 0.6.4 Diff: https://github.com/emontnemery/hatasmota/compare/refs/tags/0.6.3...0.6.4 Changelog: https://github.com/emontnemery/hatasmota/releases/tag/0.6.4 --- pkgs/development/python-modules/hatasmota/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/hatasmota/default.nix b/pkgs/development/python-modules/hatasmota/default.nix index 0d7e6a037ed7..8cb980f84067 100644 --- a/pkgs/development/python-modules/hatasmota/default.nix +++ b/pkgs/development/python-modules/hatasmota/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "hatasmota"; - version = "0.6.3"; + version = "0.6.4"; format = "setuptools"; disabled = pythonOlder "3.6"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "emontnemery"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-aGCAQAZb8mChe/N43h6O21mhiPPm3XPM56cGqScWlxE="; + hash = "sha256-fE5klk4ToayRyUmE2xtcMMsH4VKOKZHqvBCa9GG84rU="; }; propagatedBuildInputs = [ From fda1935b0bfd3c7f2f25a83b6b234f8bc9eda93a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:14:10 +0100 Subject: [PATCH 078/178] python310Packages.nextdns: 1.2.2 -> 1.3.0 Diff: https://github.com/bieniu/nextdns/compare/refs/tags/1.2.2...1.3.0 Changelog: https://github.com/bieniu/nextdns/releases/tag/1.3.0 --- pkgs/development/python-modules/nextdns/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/nextdns/default.nix b/pkgs/development/python-modules/nextdns/default.nix index 18eae73ca000..4c633aa4ce2e 100644 --- a/pkgs/development/python-modules/nextdns/default.nix +++ b/pkgs/development/python-modules/nextdns/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "nextdns"; - version = "1.2.2"; + version = "1.3.0"; format = "setuptools"; disabled = pythonOlder "3.8"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "bieniu"; repo = pname; rev = "refs/tags/${version}"; - hash = "sha256-F6vTOwE8WdcELH+W7VuRbGDLD+7+a09iai/TDMBfv4s="; + hash = "sha256-+ApchGB/+mV5i751jTfZoP8XJ3VAYPCwx6VoRkq5950="; }; propagatedBuildInputs = [ From 36a399fff8e8ffc98604ae9f4f5948ee896c6eb8 Mon Sep 17 00:00:00 2001 From: Winter Date: Tue, 21 Feb 2023 17:17:11 -0500 Subject: [PATCH 079/178] jackett: add changelog --- pkgs/servers/jackett/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/jackett/default.nix b/pkgs/servers/jackett/default.nix index bb4a946edb15..d33a18ac98b6 100644 --- a/pkgs/servers/jackett/default.nix +++ b/pkgs/servers/jackett/default.nix @@ -41,6 +41,7 @@ buildDotnetModule rec { meta = with lib; { description = "API Support for your favorite torrent trackers"; homepage = "https://github.com/Jackett/Jackett/"; + changelog = "https://github.com/Jackett/Jackett/releases/tag/v${version}"; license = licenses.gpl2Only; maintainers = with maintainers; [ edwtjo nyanloutre purcell ]; }; From f5447ca65dda0bedf157b5dfa56a5045cd537a3a Mon Sep 17 00:00:00 2001 From: Winter Date: Tue, 21 Feb 2023 17:19:19 -0500 Subject: [PATCH 080/178] radarr: add changelog --- pkgs/servers/radarr/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/servers/radarr/default.nix b/pkgs/servers/radarr/default.nix index 99a52827b0f9..aef97256c1ad 100644 --- a/pkgs/servers/radarr/default.nix +++ b/pkgs/servers/radarr/default.nix @@ -47,6 +47,7 @@ in stdenv.mkDerivation rec { meta = with lib; { description = "A Usenet/BitTorrent movie downloader"; homepage = "https://radarr.video/"; + changelog = "https://github.com/Radarr/Radarr/releases/tag/v${version}"; license = licenses.gpl3Only; maintainers = with maintainers; [ edwtjo purcell ]; platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ]; From 0c51d5eac3859fa62b77f8454e99759db7282580 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:19:34 +0100 Subject: [PATCH 081/178] python310Packages.archinfo: 9.2.38 -> 9.2.39 --- pkgs/development/python-modules/archinfo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/archinfo/default.nix b/pkgs/development/python-modules/archinfo/default.nix index 87d33b235c2b..7886230e0625 100644 --- a/pkgs/development/python-modules/archinfo/default.nix +++ b/pkgs/development/python-modules/archinfo/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "archinfo"; - version = "9.2.38"; + version = "9.2.39"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "angr"; repo = pname; rev = "v${version}"; - hash = "sha256-fpYoX5+TrZaozq7E3qBlhYUPrbbL3fb+wadQToLqtU0="; + hash = "sha256-vmavJwt8YPpG0xW15lzX1gvuOiViWazqHUDiImlZGPo="; }; nativeBuildInputs = [ From 7f6d65ce3b5dced94a18d92ad74449a7b690fbb4 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:19:38 +0100 Subject: [PATCH 082/178] python310Packages.ailment: 9.2.38 -> 9.2.39 --- pkgs/development/python-modules/ailment/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ailment/default.nix b/pkgs/development/python-modules/ailment/default.nix index fa0611385b01..e9efffff9727 100644 --- a/pkgs/development/python-modules/ailment/default.nix +++ b/pkgs/development/python-modules/ailment/default.nix @@ -8,7 +8,7 @@ buildPythonPackage rec { pname = "ailment"; - version = "9.2.38"; + version = "9.2.39"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -17,7 +17,7 @@ buildPythonPackage rec { owner = "angr"; repo = pname; rev = "v${version}"; - hash = "sha256-nhvFBXOoxCWaSjUdPyQP234URI50DM3ZoweRK9d1LIA="; + hash = "sha256-JO46r+eNBmMzCaXvpcQU3pnn833ABeMYnFlxh7bTHB8="; }; nativeBuildInputs = [ From 15694fd2a13e730dea587d50854b9a93e3b0c82e Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:19:42 +0100 Subject: [PATCH 083/178] python310Packages.pyvex: 9.2.38 -> 9.2.39 --- pkgs/development/python-modules/pyvex/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyvex/default.nix b/pkgs/development/python-modules/pyvex/default.nix index 4d56399d1491..9440ccad2982 100644 --- a/pkgs/development/python-modules/pyvex/default.nix +++ b/pkgs/development/python-modules/pyvex/default.nix @@ -13,14 +13,14 @@ buildPythonPackage rec { pname = "pyvex"; - version = "9.2.38"; + version = "9.2.39"; format = "pyproject"; disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-9Cv0Quh0uN/DxOG1J2QCFb8fqRJTyovixmU8X721t8o="; + hash = "sha256-IQCMvP4o/aV+/tkP9SS5tlSNAdI6yRxYPczdF9jm1aY="; }; nativeBuildInputs = [ From 0a72f9129707549837f47b85e04c1bcfd1c47d52 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:19:47 +0100 Subject: [PATCH 084/178] python310Packages.claripy: 9.2.38 -> 9.2.39 --- pkgs/development/python-modules/claripy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/claripy/default.nix b/pkgs/development/python-modules/claripy/default.nix index 109a29ac79ef..be39e1d8d753 100644 --- a/pkgs/development/python-modules/claripy/default.nix +++ b/pkgs/development/python-modules/claripy/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { pname = "claripy"; - version = "9.2.38"; + version = "9.2.39"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -22,7 +22,7 @@ buildPythonPackage rec { owner = "angr"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-nKUp8N1T6fcXd1V9Ppqb5fFy8UHGPE/tiyHIanhgUoE="; + hash = "sha256-Qr/wyaa5vDWd/0TEn9utdeaq6SINtopd49LuQddECvw="; }; nativeBuildInputs = [ From c29190c3b9a98aad490e1c4ed4fcacdd982fab4f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:19:51 +0100 Subject: [PATCH 085/178] python310Packages.cle: 9.2.38 -> 9.2.39 --- pkgs/development/python-modules/cle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cle/default.nix b/pkgs/development/python-modules/cle/default.nix index 512d105914b3..913ddbf282ec 100644 --- a/pkgs/development/python-modules/cle/default.nix +++ b/pkgs/development/python-modules/cle/default.nix @@ -16,7 +16,7 @@ let # The binaries are following the argr projects release cycle - version = "9.2.38"; + version = "9.2.39"; # Binary files from https://github.com/angr/binaries (only used for testing and only here) binaries = fetchFromGitHub { @@ -38,7 +38,7 @@ buildPythonPackage rec { owner = "angr"; repo = pname; rev = "v${version}"; - hash = "sha256-3B62NMlAGv4Q6HOkACafBETbOj4QsWsvfrTAM+5b9NY="; + hash = "sha256-RwcVh2lmY5l4mbd4GG0C0PH+u4NDuTkGJRgyAVgpFMM="; }; nativeBuildInputs = [ From 51af9e596f2aea2acefa6f89adf2e4b5481e5806 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:19:57 +0100 Subject: [PATCH 086/178] python310Packages.angr: 9.2.38 -> 9.2.39 --- pkgs/development/python-modules/angr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/angr/default.nix b/pkgs/development/python-modules/angr/default.nix index 8c80631bc1a9..94b291fcb3fb 100644 --- a/pkgs/development/python-modules/angr/default.nix +++ b/pkgs/development/python-modules/angr/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { pname = "angr"; - version = "9.2.38"; + version = "9.2.39"; format = "pyproject"; disabled = pythonOlder "3.8"; @@ -40,7 +40,7 @@ buildPythonPackage rec { owner = pname; repo = pname; rev = "v${version}"; - hash = "sha256-9/7GiF+Q7AUmKEqleVF8brCFSAqswalXxgPCApD19ZE="; + hash = "sha256-De8np0Q+/JeWYAVmT7DtMOTOsdSh8DddTeNTBOl1KXk="; }; propagatedBuildInputs = [ From a6c59a5fc0cf70568d26b2c0d87d3e432c0d8619 Mon Sep 17 00:00:00 2001 From: kilianar Date: Tue, 21 Feb 2023 23:27:06 +0100 Subject: [PATCH 087/178] fava: 1.23.1 -> 1.24 https://github.com/beancount/fava/releases/tag/v1.24 --- pkgs/applications/office/fava/default.nix | 15 +++------------ pkgs/applications/office/fava/flask-babel.patch | 14 -------------- 2 files changed, 3 insertions(+), 26 deletions(-) delete mode 100644 pkgs/applications/office/fava/flask-babel.patch diff --git a/pkgs/applications/office/fava/default.nix b/pkgs/applications/office/fava/default.nix index ce6988e6e61b..0c14eedd47ae 100644 --- a/pkgs/applications/office/fava/default.nix +++ b/pkgs/applications/office/fava/default.nix @@ -2,24 +2,15 @@ python3.pkgs.buildPythonApplication rec { pname = "fava"; - version = "1.23.1"; + version = "1.24"; format = "pyproject"; src = python3.pkgs.fetchPypi { inherit pname version; - sha256 = "sha256-Uw8UIJa+Dtsy+o31I1ynLyhZrFNX42NFRXu1O2ISbzU="; + hash = "sha256-Ep+8O93L/CG4qcBFzCBMRasK/ySp8+cU59LcyZRTJtg="; }; - patches = [ - ./flask-babel.patch - ]; - - pythonRelaxDeps = [ - "cheroot" - "Flask-Babel" - ]; - - nativeBuildInputs = with python3.pkgs; [ setuptools-scm pythonRelaxDepsHook ]; + nativeBuildInputs = with python3.pkgs; [ setuptools-scm ]; propagatedBuildInputs = with python3.pkgs; [ babel diff --git a/pkgs/applications/office/fava/flask-babel.patch b/pkgs/applications/office/fava/flask-babel.patch deleted file mode 100644 index 739be6327ca8..000000000000 --- a/pkgs/applications/office/fava/flask-babel.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff --git a/src/fava/application.py b/src/fava/application.py -index 811c1de4..19de051a 100644 ---- a/src/fava/application.py -+++ b/src/fava/application.py -@@ -148,8 +148,7 @@ def get_locale() -> str | None: - return request.accept_languages.best_match(["en"] + LANGUAGES) - - --BABEL = Babel(app) --BABEL.localeselector(get_locale) -+BABEL = Babel(app, locale_selector=get_locale) - - - for function in template_filters.FILTERS: From 13c5fbef8b77c67424d69a8299cd2e6a9d8b8f2f Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:36:28 +0100 Subject: [PATCH 088/178] termscp: 0.10.0 -> 0.11.0 Diff: https://github.com/veeso/termscp/compare/v0.10.0...v0.11.0 --- pkgs/tools/networking/termscp/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/termscp/default.nix b/pkgs/tools/networking/termscp/default.nix index 35d76009f380..0eac2744280d 100644 --- a/pkgs/tools/networking/termscp/default.nix +++ b/pkgs/tools/networking/termscp/default.nix @@ -13,16 +13,16 @@ rustPlatform.buildRustPackage rec { pname = "termscp"; - version = "0.10.0"; + version = "0.11.0"; src = fetchFromGitHub { owner = "veeso"; repo = pname; rev = "v${version}"; - hash = "sha256-AyDENQj73HzNh1moO/KJl7OG80w65XiYmIl8d9/iAtE="; + hash = "sha256-+5ljnCVbaiqqfXCJjMMInoLjLmZjCIoDkQi9pS6VKpc="; }; - cargoHash = "sha256-NgBQvWtwkAvp0V7zWGw+lNAcVqqDMAeNC0KNIBrwjEE="; + cargoHash = "sha256-GoWVDU1XVjbzZlGPEuHucnxcvhf4Rqx/nSEVygD9gCo="; nativeBuildInputs = [ pkg-config From 6c33bd35e2016923f057c8ad5f7b01a7812dbfa9 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 21 Feb 2023 23:42:42 +0100 Subject: [PATCH 089/178] termscp: add changelog to meta --- pkgs/tools/networking/termscp/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/termscp/default.nix b/pkgs/tools/networking/termscp/default.nix index 0eac2744280d..4a65620e48b7 100644 --- a/pkgs/tools/networking/termscp/default.nix +++ b/pkgs/tools/networking/termscp/default.nix @@ -1,4 +1,5 @@ { lib +, stdenv , dbus , fetchFromGitHub , openssl @@ -8,7 +9,6 @@ , Cocoa , Foundation , Security -, stdenv }: rustPlatform.buildRustPackage rec { @@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec { src = fetchFromGitHub { owner = "veeso"; repo = pname; - rev = "v${version}"; + rev = "refs/tags/v${version}"; hash = "sha256-+5ljnCVbaiqqfXCJjMMInoLjLmZjCIoDkQi9pS6VKpc="; }; @@ -51,6 +51,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { description = "Terminal tool for file transfer and explorer"; homepage = "https://github.com/veeso/termscp"; + changelog = "https://github.com/veeso/termscp/blob/v${version}/CHANGELOG.md"; license = with licenses; [ mit ]; maintainers = with maintainers; [ fab ]; }; From e5ffc94ea942bb76c90016ea893f828513f523fa Mon Sep 17 00:00:00 2001 From: Luflosi Date: Wed, 21 Dec 2022 21:54:33 +0100 Subject: [PATCH 090/178] nixos/mautrix-facebook: fix copy&paste error Closes https://github.com/NixOS/nixpkgs/issues/166312. --- nixos/modules/services/matrix/mautrix-facebook.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/matrix/mautrix-facebook.nix b/nixos/modules/services/matrix/mautrix-facebook.nix index e74f25df764d..e995f1aecf27 100644 --- a/nixos/modules/services/matrix/mautrix-facebook.nix +++ b/nixos/modules/services/matrix/mautrix-facebook.nix @@ -96,7 +96,7 @@ in { type = types.nullOr types.path; default = null; description = lib.mdDoc '' - File containing environment variables to be passed to the mautrix-telegram service. + File containing environment variables to be passed to the mautrix-facebook service. Any config variable can be overridden by setting `MAUTRIX_FACEBOOK_SOME_KEY` to override the `some.key` variable. ''; From 7503c1d7017795d74797aed5f3c6aaffbd4fd6a6 Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Tue, 21 Feb 2023 20:05:26 -0300 Subject: [PATCH 091/178] elpa-packages: updated 2023-02-21 (from overlay) --- .../editors/emacs/elisp-packages/elpa-generated.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix index 5273daf41d40..41329ec143e0 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix @@ -5411,10 +5411,10 @@ elpaBuild { pname = "vertico-posframe"; ename = "vertico-posframe"; - version = "0.7.0"; + version = "0.7.1"; src = fetchurl { - url = "https://elpa.gnu.org/packages/vertico-posframe-0.7.0.tar"; - sha256 = "19ic4yjm9ccnvrhccfzhn4p3brk760hf8aw6qv53gf6qlj3mcyag"; + url = "https://elpa.gnu.org/packages/vertico-posframe-0.7.1.tar"; + sha256 = "18a65hnacavy375ry5qmfj454b10h2yg9p6wbx1wdx30fwpi247a"; }; packageRequires = [ emacs posframe vertico ]; meta = { @@ -5749,10 +5749,10 @@ elpaBuild { pname = "xref"; ename = "xref"; - version = "1.6.1"; + version = "1.6.2"; src = fetchurl { - url = "https://elpa.gnu.org/packages/xref-1.6.1.tar"; - sha256 = "0z9kpbnrdh9y9qlj2fa64v660biakvw6x3z9klqa47qcx8gbyqp6"; + url = "https://elpa.gnu.org/packages/xref-1.6.2.tar"; + sha256 = "16vzjl2dv5nmb40xfw7mfrk8i64fac3cy4sf2d2hy832rwlg15q0"; }; packageRequires = [ emacs ]; meta = { From 297ba7ca32f6e25069f26ded417256b99f9c479d Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Tue, 21 Feb 2023 20:05:28 -0300 Subject: [PATCH 092/178] melpa-packages: updated 2023-02-21 (from overlay) --- .../elisp-packages/recipes-archive-melpa.json | 217 +++++++++--------- 1 file changed, 107 insertions(+), 110 deletions(-) diff --git a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json index b6df720953a1..61557a95e1c7 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json +++ b/pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json @@ -10577,11 +10577,11 @@ "repo": "catppuccin/emacs", "unstable": { "version": [ - 20230220, - 2355 + 20230221, + 737 ], - "commit": "49f86fcc1b900fa9132149367248964a6e1604a5", - "sha256": "03d1yr75ghhx3y246cawbw50plmxi88n5zmwjvlc9wxq1k6v39nd" + "commit": "046358639b3b6948f0779a16bef51cec44c606c3", + "sha256": "01r3xpx55i4wwk2xzrl3y7ajckkwzpxlyx4ccpzn0l3rl8dbsw9c" }, "stable": { "version": [ @@ -16519,8 +16519,8 @@ "repo": "necaris/conda.el", "unstable": { "version": [ - 20230104, - 2059 + 20230221, + 1603 ], "deps": [ "dash", @@ -16528,8 +16528,8 @@ "pythonic", "s" ], - "commit": "667968184e40afa8514ece090893a160ae16b258", - "sha256": "1f0avca4gglrrh7qphfqnb35l41qxr4s0v46dh51y774mbm5xfm8" + "commit": "28f51e49fd25abff14c1b46dea196a90a77ced64", + "sha256": "1wvlpsz68m4nq499nhyspg5xls2ib5sxcha3mf7vn13kyl994si6" }, "stable": { "version": [ @@ -24180,14 +24180,14 @@ "repo": "doomemacs/themes", "unstable": { "version": [ - 20221112, - 2247 + 20230221, + 610 ], "deps": [ "cl-lib" ], - "commit": "b5ff201f4bea4286e9ed015a2043cf2394182232", - "sha256": "04xq0v50rhikwfkzhwx2rzismipb2b57niks7s1svfp4jl1sg5fm" + "commit": "4c239dbe42232e81c28901000f435746de2a55ab", + "sha256": "1d4hi0gpal589gv2mhq73g928xwrykx075ivfqm2i875vb6yhy3m" }, "stable": { "version": [ @@ -26815,14 +26815,14 @@ "repo": "ahyatt/ekg", "unstable": { "version": [ - 20230218, - 2019 + 20230221, + 602 ], "deps": [ "triples" ], - "commit": "7a112094e34ad54406e028e83afcff90ccab143f", - "sha256": "10s4bmkghh71wz1ck2cp9gq889a72msnxnq1iyyqrpv3gnns2qv5" + "commit": "cb3dfbf8c6faa0aa95f603b855eb37260acdc89d", + "sha256": "1za8smby0sshl0icfjqwh6rlwvjzj0mflhf4pwnhynf5n7p3jdjg" } }, { @@ -28036,11 +28036,11 @@ "repo": "ideasman42/emacs-elisp-autofmt", "unstable": { "version": [ - 20230210, - 521 + 20230221, + 1124 ], - "commit": "10e3a79a7a058e4956236b98852712b8b7b33e04", - "sha256": "12bglm0dc74q4r8x96h59rr6z7w0lkcwl7pbjfp8iigyx5my15p7" + "commit": "153785d7e7d392ae07fe0f91a8ba3af6dd6d7df6", + "sha256": "1q1xbgwbsd2ma7axlajhkq20z446wk5x9an60wynsxshnsjxrlfy" } }, { @@ -29148,11 +29148,11 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230220, - 1858 + 20230221, + 1532 ], - "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", - "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29172,14 +29172,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230217, - 2219 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", - "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29202,15 +29202,15 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230220, - 1858 + 20230221, + 1532 ], "deps": [ "emacsql", "pg" ], - "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", - "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29234,14 +29234,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230217, - 2219 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", - "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29264,14 +29264,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230217, - 2219 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "65357c6b8e96f4d1533bcc3100eeee6c34f70f46", - "sha256": "1ki38hwdxx15wqk0mji3agwwmzxzkblc9qj3zvh2m0jdpzivii5r" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" }, "stable": { "version": [ @@ -29294,14 +29294,14 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230220, - 1858 + 20230221, + 1532 ], "deps": [ "emacsql" ], - "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", - "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" } }, { @@ -29312,15 +29312,15 @@ "repo": "magit/emacsql", "unstable": { "version": [ - 20230220, - 1858 + 20230221, + 1532 ], "deps": [ "emacsql", "sqlite3" ], - "commit": "8dd25b030701c1f9c8fe6c38b89399a82dfa558b", - "sha256": "12mmmdn3lwvalzb3jh6pdfv2nkg4fqn42xhpmx8bqn78h24ghvjl" + "commit": "f0249f655fd1a2c066c5a1b3daa93c80c5ed9865", + "sha256": "1hic3rq48l7yvn8sgri66risnlbnjvg86wwmfihhx3xdxh5hgyyg" } }, { @@ -47768,30 +47768,28 @@ "repo": "nlamirault/gotest.el", "unstable": { "version": [ - 20220728, - 750 + 20230221, + 945 ], "deps": [ "f", - "go-mode", "s" ], - "commit": "2ec82dcc70d5f6aa22f66b44f8b537be33bd7903", - "sha256": "0jm4i5axw19451z8m79iv1zqlhqpr8mn4r9mcli5j9hrvb7wczrd" + "commit": "490189e68d743a851bfb42d0017428a7550e8615", + "sha256": "19lpr9wa73415jmdl1acijz54h5sdsj95wxigigbiqdhq6pd301p" }, "stable": { "version": [ 0, - 15, + 16, 0 ], "deps": [ "f", - "go-mode", "s" ], - "commit": "9b1dc4eba1b22d751cb2f0a12e29912e010fac60", - "sha256": "0693fcli1nv9mn60gh30xspwiwhab8vxf09i1s9yxs80ai712i12" + "commit": "490189e68d743a851bfb42d0017428a7550e8615", + "sha256": "19lpr9wa73415jmdl1acijz54h5sdsj95wxigigbiqdhq6pd301p" } }, { @@ -50117,15 +50115,15 @@ "repo": "emacs-helm/helm", "unstable": { "version": [ - 20230216, - 1255 + 20230221, + 819 ], "deps": [ "helm-core", "popup" ], - "commit": "df927fae1f0a17c5c540429b010b4639ae89fa65", - "sha256": "1spw1jxpizmnk7hr1s2j871psfqb88ipspq7k44r8gdwpzb31jxj" + "commit": "fb3df89c7b0a68c79d6725beb20d3dc6ccd348a1", + "sha256": "189d1ldhaw83ahvjpi1l5q6v1agglvbll9qimfyv8g2h4nj50730" }, "stable": { "version": [ @@ -55630,14 +55628,14 @@ "repo": "mihaimaruseac/hindent", "unstable": { "version": [ - 20220625, - 444 + 20230221, + 619 ], "deps": [ "cl-lib" ], - "commit": "68d5211b2737c2ba31bbceed9b1abbb36bb83e39", - "sha256": "0qkrgar7blirhx85p0m4pjvwwh5rcs9ypy49hyg9bah1dgrnm88b" + "commit": "a9c2898b9ac8f13e57092e3d5287e05b942d4539", + "sha256": "05ss0601jqyvxqr6pblpjwlq2hl0yq3abdlvxjhdx4br4mgi3sgq" }, "stable": { "version": [ @@ -56259,11 +56257,11 @@ "repo": "axelf4/hotfuzz", "unstable": { "version": [ - 20221017, - 1506 + 20230221, + 844 ], - "commit": "05330fc7208c654631e7484c3c7c441716901237", - "sha256": "0s38pip10k4sfjffcx96pbjvrjlx7ijjgs4plr9axxdvdgnjwjvy" + "commit": "90d95663f9ff667786b71071a039502d873ef4aa", + "sha256": "1bllfjj4s4lqdb7r9r4nmwb31qdlcrswbxxyfwzyv0ygw7cmaz76" } }, { @@ -64991,14 +64989,14 @@ "repo": "abrochard/kubernetes-helm", "unstable": { "version": [ - 20210902, - 2232 + 20230221, + 1438 ], "deps": [ "yaml-mode" ], - "commit": "95cf92600436f67bd7bfe650763e68635f5ecc8e", - "sha256": "0k1kk472yianf5sn05hxqfpza5yxm9lmr917wmw3mca17758hsgm" + "commit": "f70e2efa6ef869143ccb2f158f4ab7df91dcc58f", + "sha256": "1nsjnfabg4nqvy5z2pbxjcsqykk9as12frq5lgrypiax42rx2wp0" } }, { @@ -68830,8 +68828,8 @@ "repo": "emacs-lsp/lsp-mode", "unstable": { "version": [ - 20230220, - 326 + 20230221, + 1558 ], "deps": [ "dash", @@ -68842,8 +68840,8 @@ "markdown-mode", "spinner" ], - "commit": "771342f03986fe8d77696ae9b08e72741006843e", - "sha256": "1hm4h7gf7fxz5axvfb6p26pad2fsskfblhhx23is5kahg73skf18" + "commit": "e6293251a65554fa23f87d0e883d121b4f0aed4e", + "sha256": "1gkn3zw9h2kgpcmmpsadnh9aazgyyp9lmxkl6i7wd7gx5mg6fp49" }, "stable": { "version": [ @@ -69777,8 +69775,8 @@ "repo": "magit/magit", "unstable": { "version": [ - 20230219, - 1247 + 20230221, + 648 ], "deps": [ "compat", @@ -69788,8 +69786,8 @@ "transient", "with-editor" ], - "commit": "451cbe5c24f2af7ed505f1422af6ad4e8f05205b", - "sha256": "1f5r2aphsnv1m2wi75kk2gw2q584akdr6k9bqbzc9lj1nqv85llf" + "commit": "97a95f70079b6613bf98d2306279d3e03fe51234", + "sha256": "1mm13lpq2ank0pnnf6q4qfpaw4k6fw3zjd1qgdi73l4lw8rrbvrx" }, "stable": { "version": [ @@ -77953,11 +77951,11 @@ "url": "https://git.notmuchmail.org/git/notmuch", "unstable": { "version": [ - 20230220, - 1258 + 20230221, + 1455 ], - "commit": "f63d14a8c12ad76024d2865c0223a06f6f4bb372", - "sha256": "1hk062jq6hgwfc5yv9anijn2srydpqjjab16ipvngh5ngcr71rwz" + "commit": "48d774bbf4dc6e442e1be96aab712947b408fc5a", + "sha256": "1wl88x1h275f4lbmxq00r85qs3rkc0lviwn1k4ajmgwfhx591f3d" }, "stable": { "version": [ @@ -82622,8 +82620,8 @@ "repo": "Trevoke/org-gtd.el", "unstable": { "version": [ - 20230218, - 1624 + 20230221, + 1602 ], "deps": [ "f", @@ -82632,8 +82630,8 @@ "org-edna", "transient" ], - "commit": "59c0905c8832845a36666f45b04bcc8ba8194f39", - "sha256": "1rpq1dpmgzqrbch6wa8pabbm5mrx9bc2l5zzkvfhdqy9rwankf2k" + "commit": "05689a73f9e4841818948e97ecec431b8ca39948", + "sha256": "0f7c799xnp8abk70my8yc6kpbyy48dmkzbzxf2hnakgdpnpkdgin" }, "stable": { "version": [ @@ -83113,14 +83111,14 @@ "url": "https://repo.or.cz/org-link-beautify.git", "unstable": { "version": [ - 20221209, - 420 + 20230221, + 1311 ], "deps": [ "all-the-icons" ], - "commit": "098684c0fd8b9c9d940122faf96f62f579d98699", - "sha256": "0r0whjkwm5vdaargax7shrx91nvdsw2ma6ims0qd2psrs7x9wnav" + "commit": "370535e4259888f686cb6cedcabb79c5b389e6bb", + "sha256": "113q1axrhl1y5lq5pf799nlh0i7vinrikphb90fwmx35y0gkpgj7" } }, { @@ -88170,11 +88168,11 @@ "repo": "melpa/package-build", "unstable": { "version": [ - 20230212, - 1950 + 20230221, + 1303 ], - "commit": "ab5b94e3bf5d011fcf1f81e370af47f98b0749d3", - "sha256": "06x1h793wqbpnkah86b6xhnwvhw2y3xg2nw3r64zhd053cv55msa" + "commit": "9199271d78dc0f4f85047d6daef0e9721a6e63cd", + "sha256": "0vr9v826yypa3zsycs6j7l4kw3ydvdv2ih16lqlj16ici6h2gy8w" }, "stable": { "version": [ @@ -109992,14 +109990,14 @@ "repo": "emacs-berlin/syntactic-close", "unstable": { "version": [ - 20230122, - 1946 + 20230221, + 937 ], "deps": [ "cl-lib" ], - "commit": "9686e48edd6223a64ee7cc70ca2adb636992297e", - "sha256": "1xqyqjs8krh24b624h3dhzclminnk22kxk5a61z4y81fbk7mvv5d" + "commit": "830fc4d4fb5d31a018d32319c6e0d2dc29e3de34", + "sha256": "01i3vc0a7jngfwa16yp4knlyiwnak3srxp4lxjnw5fdq2hvgwhz1" } }, { @@ -117090,15 +117088,15 @@ "repo": "radian-software/prescient.el", "unstable": { "version": [ - 20221216, - 112 + 20230221, + 1257 ], "deps": [ "prescient", "vertico" ], - "commit": "72b023f5fc1ae2bbf2f51f1786cc012d40671bf4", - "sha256": "1mc9pjb80bxcmzaylfwh0sgpvwbx3h35jalznwz464hw3vqfff83" + "commit": "822481e722502081deedbe6b1a9776eda0ca7bfe", + "sha256": "1h9chc5bipvmn6vqzr150dk91hfcj6yzdn3ylb4lgk70x8if4xvn" }, "stable": { "version": [ @@ -117165,20 +117163,19 @@ "repo": "gmlarumbe/vhdl-ext", "unstable": { "version": [ - 20230219, - 2252 + 20230221, + 1447 ], "deps": [ "ag", "eglot", "flycheck", - "ggtags", "hydra", "lsp-mode", "ripgrep" ], - "commit": "751f1d63ab6e08fec40ef8fda1cbead25dfbb316", - "sha256": "10nfyhxpan9if5zddff7szrc8al3ybcpvpd9rwn9a6nn0i0hj3xp" + "commit": "6b9cbfeedc4914b08b65e498fb3213bba3221155", + "sha256": "0dkl6h4v6gs7mp14597jd0wdli8jmcfyl4wfmnw7lvzwmah1mjal" } }, { From 297a5a5c71a7edbb28aa5484a7bedef9ce716c35 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Tue, 21 Feb 2023 18:15:43 -0500 Subject: [PATCH 093/178] plasma-sdk: Fix plasmoidviewer ``` file://.../org.kde.plasma.plasmoidviewershell/contents/configuration/AppletConfiguration.qml:16:1: module "org.kde.kitemmodels" is not installed ``` --- pkgs/desktops/plasma-5/plasma-sdk.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/desktops/plasma-5/plasma-sdk.nix b/pkgs/desktops/plasma-5/plasma-sdk.nix index 8ab2d635b28d..58fac85690d0 100644 --- a/pkgs/desktops/plasma-5/plasma-sdk.nix +++ b/pkgs/desktops/plasma-5/plasma-sdk.nix @@ -11,6 +11,7 @@ , ki18n , kiconthemes , kio +, kitemmodels , plasma-framework , kservice , ktexteditor @@ -33,6 +34,7 @@ mkDerivation { ki18n kiconthemes kio + kitemmodels plasma-framework kservice ktexteditor From 6b5f0307b2a8e980e5bf529104d48be0c21f5743 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 22 Feb 2023 00:57:17 +0100 Subject: [PATCH 094/178] python310Packages.peaqevcore: 12.0.1 -> 12.0.2 --- pkgs/development/python-modules/peaqevcore/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/peaqevcore/default.nix b/pkgs/development/python-modules/peaqevcore/default.nix index 151389fbfd9d..f171d211a688 100644 --- a/pkgs/development/python-modules/peaqevcore/default.nix +++ b/pkgs/development/python-modules/peaqevcore/default.nix @@ -6,14 +6,14 @@ buildPythonPackage rec { pname = "peaqevcore"; - version = "12.0.1"; + version = "12.0.2"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-nhipggmTd0BgYOPo4SoezrvPmw7wQL71K5y1EKoHRDw="; + hash = "sha256-TfIzTbVXhS+DxroxBqfodS4HAQBPJQ4/Vo4Jh8VjYfM="; }; postPatch = '' From 916bb1088e04e150afa6aefeec3f20f4913794b3 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 21 Feb 2023 23:56:19 +0000 Subject: [PATCH 095/178] linuxManualConfig: remove obsolete firmware code The versionOlder check will not evaluate to true for any kernel in Nixpkgs. --- pkgs/os-specific/linux/kernel/manual-config.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix index 18c32930f368..9b3e8b717520 100644 --- a/pkgs/os-specific/linux/kernel/manual-config.nix +++ b/pkgs/os-specific/linux/kernel/manual-config.nix @@ -86,9 +86,6 @@ let buildDTBs = kernelConf.DTB or false; - installsFirmware = (config.isEnabled "FW_LOADER") && - (isModular || (config.isDisabled "FIRMWARE_IN_KERNEL")) && - (lib.versionOlder version "4.14"); in (optionalAttrs isModular { outputs = [ "out" "dev" ]; }) // { passthru = rec { inherit version modDirVersion config kernelPatches configfile @@ -201,7 +198,6 @@ let installFlags = [ "INSTALL_PATH=$(out)" ] ++ (optional isModular "INSTALL_MOD_PATH=$(out)") - ++ optional installsFirmware "INSTALL_FW_PATH=$(out)/lib/firmware" ++ optionals buildDTBs ["dtbs_install" "INSTALL_DTBS_PATH=$(out)/dtbs"]; preInstall = let @@ -268,9 +264,7 @@ let else "install")) ]; - postInstall = (optionalString installsFirmware '' - mkdir -p $out/lib/firmware - '') + (if isModular then '' + postInstall = optionalString isModular '' mkdir -p $dev cp vmlinux $dev/ if [ -z "''${dontStrip-}" ]; then @@ -343,10 +337,7 @@ let # Remove reference to kmod sed -i Makefile -e 's|= ${buildPackages.kmod}/bin/depmod|= depmod|' - '' else optionalString installsFirmware '' - make firmware_install $makeFlags "''${makeFlagsArray[@]}" \ - $installFlags "''${installFlagsArray[@]}" - ''); + ''; requiredSystemFeatures = [ "big-parallel" ]; From d1773f8f5d01011796e7cae8972c7699594c0954 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 21 Feb 2023 23:58:14 +0000 Subject: [PATCH 096/178] linuxManualConfig: drop gen-kheaders-metadata.patch All affected kernels are now EOL and no longer in Nixpkgs. --- .../linux/kernel/gen-kheaders-metadata.patch | 86 ------------------- .../linux/kernel/manual-config.nix | 2 - 2 files changed, 88 deletions(-) delete mode 100644 pkgs/os-specific/linux/kernel/gen-kheaders-metadata.patch diff --git a/pkgs/os-specific/linux/kernel/gen-kheaders-metadata.patch b/pkgs/os-specific/linux/kernel/gen-kheaders-metadata.patch deleted file mode 100644 index 0639f8b4e8fb..000000000000 --- a/pkgs/os-specific/linux/kernel/gen-kheaders-metadata.patch +++ /dev/null @@ -1,86 +0,0 @@ -From 2cc99c9cdc8fde5e92e34f9655829449cebd3e00 Mon Sep 17 00:00:00 2001 -From: Dmitry Goldin -Date: Fri, 4 Oct 2019 10:40:07 +0000 -Subject: kheaders: make headers archive reproducible - -In commit 43d8ce9d65a5 ("Provide in-kernel headers to make -extending kernel easier") a new mechanism was introduced, for kernels ->=5.2, which embeds the kernel headers in the kernel image or a module -and exposes them in procfs for use by userland tools. - -The archive containing the header files has nondeterminism caused by -header files metadata. This patch normalizes the metadata and utilizes -KBUILD_BUILD_TIMESTAMP if provided and otherwise falls back to the -default behaviour. - -In commit f7b101d33046 ("kheaders: Move from proc to sysfs") it was -modified to use sysfs and the script for generation of the archive was -renamed to what is being patched. - -Signed-off-by: Dmitry Goldin -Reviewed-by: Greg Kroah-Hartman -Reviewed-by: Joel Fernandes (Google) -Signed-off-by: Masahiro Yamada - ---- - -nixos note: This patch is from -https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git/commit/?h=fixes&id=2cc99c9cdc8fde5e92e34f9655829449cebd3e00 -I commented out the documentation part here, so that it easily applies -to linux 5.2 and 5.3, which does not ship with the reproducible build -documentation yet, which only was introduced recently. - ---- - Documentation/kbuild/reproducible-builds.rst | 13 +++++++++---- - kernel/gen_kheaders.sh | 5 ++++- - 2 files changed, 13 insertions(+), 5 deletions(-) - -#diff --git a/Documentation/kbuild/reproducible-builds.rst b/Documentation/kbuild/reproducible-builds.rst -#index ab92e98c89c8..503393854e2e 100644 -# --- a/Documentation/kbuild/reproducible-builds.rst -#+++ b/Documentation/kbuild/reproducible-builds.rst -#@@ -16,16 +16,21 @@ the kernel may be unreproducible, and how to avoid them. -# Timestamps -# ---------- -# -#-The kernel embeds a timestamp in two places: -#+The kernel embeds timestamps in three places: -# -# * The version string exposed by ``uname()`` and included in -# ``/proc/version`` -# -# * File timestamps in the embedded initramfs -# -#-By default the timestamp is the current time. This must be overridden -#-using the `KBUILD_BUILD_TIMESTAMP`_ variable. If you are building -#-from a git commit, you could use its commit date. -#+* If enabled via ``CONFIG_IKHEADERS``, file timestamps of kernel -#+ headers embedded in the kernel or respective module, -#+ exposed via ``/sys/kernel/kheaders.tar.xz`` -#+ -#+By default the timestamp is the current time and in the case of -#+``kheaders`` the various files' modification times. This must -#+be overridden using the `KBUILD_BUILD_TIMESTAMP`_ variable. -#+If you are building from a git commit, you could use its commit date. -# -# The kernel does *not* use the ``__DATE__`` and ``__TIME__`` macros, -# and enables warnings if they are used. If you incorporate external -diff --git a/kernel/gen_kheaders.sh b/kernel/gen_kheaders.sh -index 9ff449888d9c..aff79e461fc9 100755 ---- a/kernel/gen_kheaders.sh -+++ b/kernel/gen_kheaders.sh -@@ -71,7 +71,10 @@ done | cpio --quiet -pd $cpio_dir >/dev/null 2>&1 - find $cpio_dir -type f -print0 | - xargs -0 -P8 -n1 perl -pi -e 'BEGIN {undef $/;}; s/\/\*((?!SPDX).)*?\*\///smg;' - --tar -Jcf $tarfile -C $cpio_dir/ . > /dev/null -+# Create archive and try to normalize metadata for reproducibility -+tar "${KBUILD_BUILD_TIMESTAMP:+--mtime=$KBUILD_BUILD_TIMESTAMP}" \ -+ --owner=0 --group=0 --sort=name --numeric-owner \ -+ -Jcf $tarfile -C $cpio_dir/ . > /dev/null - - echo "$src_files_md5" > kernel/kheaders.md5 - echo "$obj_files_md5" >> kernel/kheaders.md5 --- -cgit 1.2-0.3.lf.el7 - diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix index 9b3e8b717520..21e6790eb0b6 100644 --- a/pkgs/os-specific/linux/kernel/manual-config.nix +++ b/pkgs/os-specific/linux/kernel/manual-config.nix @@ -104,8 +104,6 @@ let # Required for deterministic builds along with some postPatch magic. ++ optional (lib.versionOlder version "5.19") ./randstruct-provide-seed.patch ++ optional (lib.versionAtLeast version "5.19") ./randstruct-provide-seed-5.19.patch - # Fixes determinism by normalizing metadata for the archive of kheaders - ++ optional (lib.versionAtLeast version "5.2" && lib.versionOlder version "5.4") ./gen-kheaders-metadata.patch # Linux 5.12 marked certain PowerPC-only symbols as GPL, which breaks # OpenZFS; this was fixed in Linux 5.19 so we backport the fix # https://github.com/openzfs/zfs/pull/13367 From e49dc267614001cfa1e492a2f0a4934f301435f3 Mon Sep 17 00:00:00 2001 From: Antoine Pietri Date: Wed, 22 Feb 2023 01:07:11 +0100 Subject: [PATCH 097/178] transmission: use gentoo patch to load legacy openssl provider Previous patch had a memory leak, see: https://github.com/NixOS/nixpkgs/issues/207047 The gentoo downstream patch is a lot simpler and does not seem to cause a memory leak. --- pkgs/applications/networking/p2p/transmission/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/p2p/transmission/default.nix b/pkgs/applications/networking/p2p/transmission/default.nix index 0bb11affed22..8f44d79f817d 100644 --- a/pkgs/applications/networking/p2p/transmission/default.nix +++ b/pkgs/applications/networking/p2p/transmission/default.nix @@ -50,8 +50,8 @@ in stdenv.mkDerivation { patches = [ # fix build with openssl 3.0 (fetchurl { - url = "https://salsa.debian.org/debian/transmission/-/raw/debian/3.00-2.1/debian/patches/openssl3-compat.patch"; - hash = "sha256-v+SDTW/lCtc8B3TuhQB1pmjW/QRAGLtYncaImNNwpes="; + url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/net-p2p/transmission/files/transmission-3.00-openssl-3.patch"; + hash = "sha256-peVrkGck8AfbC9uYNfv1CIu1alIewpca7A6kRXjVlVs="; }) ]; From 935570ce06712041929fb0f1e0559adf7a5bf4c9 Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Mon, 20 Feb 2023 12:17:41 +0000 Subject: [PATCH 098/178] amqpcat: init at 0.2.4 --- pkgs/development/tools/amqpcat/default.nix | 33 ++++++++++++++++++++++ pkgs/development/tools/amqpcat/shards.nix | 12 ++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 47 insertions(+) create mode 100644 pkgs/development/tools/amqpcat/default.nix create mode 100644 pkgs/development/tools/amqpcat/shards.nix diff --git a/pkgs/development/tools/amqpcat/default.nix b/pkgs/development/tools/amqpcat/default.nix new file mode 100644 index 000000000000..a7c30cc9e4b6 --- /dev/null +++ b/pkgs/development/tools/amqpcat/default.nix @@ -0,0 +1,33 @@ +{ stdenv, lib, fetchFromGitHub, crystal, openssl, testers, amqpcat }: + +crystal.buildCrystalPackage rec { + pname = "amqpcat"; + version = "0.2.4"; + + src = fetchFromGitHub { + owner = "cloudamqp"; + repo = "amqpcat"; + rev = "v${version}"; + hash = "sha256-Ec8LlOYYp3fXYgvps/ikeB4MqBEXTw1BAF5nJyL7dI0="; + }; + + format = "shards"; + shardsFile = ./shards.nix; + + buildInputs = [ openssl ]; + + # Tests require network access + doCheck = false; + + passthru.tests.version = testers.testVersion { + package = amqpcat; + }; + + meta = with lib; { + description = "A CLI tool for publishing to and consuming from AMQP servers"; + homepage = "https://github.com/cloudamqp/amqpcat"; + license = licenses.mit; + maintainers = with maintainers; [ aaronjheng ]; + broken = stdenv.isDarwin; # Linking errors. Hope someone can help fix it. + }; +} diff --git a/pkgs/development/tools/amqpcat/shards.nix b/pkgs/development/tools/amqpcat/shards.nix new file mode 100644 index 000000000000..3321c4c9e170 --- /dev/null +++ b/pkgs/development/tools/amqpcat/shards.nix @@ -0,0 +1,12 @@ +{ + amq-protocol = { + url = "https://github.com/cloudamqp/amq-protocol.cr.git"; + rev = "v0.3.24"; + sha256 = "011xia60wkmbjsk8j4qnswx0lg1i7vrchjwnxlksjv3npp2z98a3"; + }; + amqp-client = { + url = "https://github.com/cloudamqp/amqp-client.cr.git"; + rev = "v0.6.2"; + sha256 = "0h9c2v7ks776msm3dn2d68y85i6mm4gm5s3jlrs8dlp36kndkplc"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6494d4885af2..afc59dc5bd87 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -238,6 +238,8 @@ with pkgs; althttpd = callPackage ../servers/althttpd { }; + amqpcat = callPackage ../development/tools/amqpcat { }; + anders = callPackage ../applications/science/logic/anders { }; ankisyncd = callPackage ../servers/ankisyncd { From b53ab7f158e87224636afefa042e1027962f071d Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 18 Feb 2023 20:15:20 +1000 Subject: [PATCH 099/178] nixos/tests/podman: split podman into rootful/rootless --- nixos/tests/podman/default.nix | 80 ++++++++++++++++++---------------- 1 file changed, 42 insertions(+), 38 deletions(-) diff --git a/nixos/tests/podman/default.nix b/nixos/tests/podman/default.nix index c9b234d2b609..54ead3a8a586 100644 --- a/nixos/tests/podman/default.nix +++ b/nixos/tests/podman/default.nix @@ -6,7 +6,10 @@ import ../make-test-python.nix ( }; nodes = { - podman = { pkgs, ... }: { + rootful = { pkgs, ... }: { + virtualisation.podman.enable = true; + }; + rootless = { pkgs, ... }: { virtualisation.podman.enable = true; users.users.alice = { @@ -49,83 +52,84 @@ import ../make-test-python.nix ( return f"su {user} -l -c {cmd}" - podman.wait_for_unit("sockets.target") + rootful.wait_for_unit("sockets.target") + rootless.wait_for_unit("sockets.target") dns.wait_for_unit("sockets.target") docker.wait_for_unit("sockets.target") start_all() with subtest("Run container as root with runc"): - podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg") - podman.succeed( + rootful.succeed("tar cv --files-from /dev/null | podman import - scratchimg") + rootful.succeed( "podman run --runtime=runc -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10" ) - podman.succeed("podman ps | grep sleeping") - podman.succeed("podman stop sleeping") - podman.succeed("podman rm sleeping") + rootful.succeed("podman ps | grep sleeping") + rootful.succeed("podman stop sleeping") + rootful.succeed("podman rm sleeping") with subtest("Run container as root with crun"): - podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg") - podman.succeed( + rootful.succeed("tar cv --files-from /dev/null | podman import - scratchimg") + rootful.succeed( "podman run --runtime=crun -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10" ) - podman.succeed("podman ps | grep sleeping") - podman.succeed("podman stop sleeping") - podman.succeed("podman rm sleeping") + rootful.succeed("podman ps | grep sleeping") + rootful.succeed("podman stop sleeping") + rootful.succeed("podman rm sleeping") with subtest("Run container as root with the default backend"): - podman.succeed("tar cv --files-from /dev/null | podman import - scratchimg") - podman.succeed( + rootful.succeed("tar cv --files-from /dev/null | podman import - scratchimg") + rootful.succeed( "podman run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10" ) - podman.succeed("podman ps | grep sleeping") - podman.succeed("podman stop sleeping") - podman.succeed("podman rm sleeping") + rootful.succeed("podman ps | grep sleeping") + rootful.succeed("podman stop sleeping") + rootful.succeed("podman rm sleeping") # start systemd session for rootless - podman.succeed("loginctl enable-linger alice") - podman.succeed(su_cmd("whoami")) - podman.sleep(1) + rootless.succeed("loginctl enable-linger alice") + rootless.succeed(su_cmd("whoami")) + rootless.sleep(1) with subtest("Run container rootless with runc"): - podman.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg")) - podman.succeed( + rootless.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg")) + rootless.succeed( su_cmd( "podman run --runtime=runc -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10" ) ) - podman.succeed(su_cmd("podman ps | grep sleeping")) - podman.succeed(su_cmd("podman stop sleeping")) - podman.succeed(su_cmd("podman rm sleeping")) + rootless.succeed(su_cmd("podman ps | grep sleeping")) + rootless.succeed(su_cmd("podman stop sleeping")) + rootless.succeed(su_cmd("podman rm sleeping")) with subtest("Run container rootless with crun"): - podman.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg")) - podman.succeed( + rootless.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg")) + rootless.succeed( su_cmd( "podman run --runtime=crun -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10" ) ) - podman.succeed(su_cmd("podman ps | grep sleeping")) - podman.succeed(su_cmd("podman stop sleeping")) - podman.succeed(su_cmd("podman rm sleeping")) + rootless.succeed(su_cmd("podman ps | grep sleeping")) + rootless.succeed(su_cmd("podman stop sleeping")) + rootless.succeed(su_cmd("podman rm sleeping")) with subtest("Run container rootless with the default backend"): - podman.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg")) - podman.succeed( + rootless.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg")) + rootless.succeed( su_cmd( "podman run -d --name=sleeping -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg /bin/sleep 10" ) ) - podman.succeed(su_cmd("podman ps | grep sleeping")) - podman.succeed(su_cmd("podman stop sleeping")) - podman.succeed(su_cmd("podman rm sleeping")) + rootless.succeed(su_cmd("podman ps | grep sleeping")) + rootless.succeed(su_cmd("podman stop sleeping")) + rootless.succeed(su_cmd("podman rm sleeping")) with subtest("Run container with init"): - podman.succeed( + rootful.succeed( "tar cv -C ${pkgs.pkgsStatic.busybox} . | podman import - busybox" ) - pid = podman.succeed("podman run --rm busybox readlink /proc/self").strip() + pid = rootful.succeed("podman run --rm busybox readlink /proc/self").strip() assert pid == "1" - pid = podman.succeed("podman run --rm --init busybox readlink /proc/self").strip() + pid = rootful.succeed("podman run --rm --init busybox readlink /proc/self").strip() assert pid == "2" with subtest("aardvark-dns"): From 9ab047538fa0dc1ca1a0e64380553308731bf775 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 18 Feb 2023 20:51:36 +1000 Subject: [PATCH 100/178] nixos/tests/podman: refactor dns test and fix indentation --- nixos/tests/podman/default.nix | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/nixos/tests/podman/default.nix b/nixos/tests/podman/default.nix index 54ead3a8a586..87e212eb8cd1 100644 --- a/nixos/tests/podman/default.nix +++ b/nixos/tests/podman/default.nix @@ -133,21 +133,16 @@ import ../make-test-python.nix ( assert pid == "2" with subtest("aardvark-dns"): - dns.succeed("tar cv --files-from /dev/null | podman import - scratchimg") - dns.succeed( - "podman run -d --name=webserver -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin -w ${pkgs.writeTextDir "index.html" "

Hi

"} scratchimg ${pkgs.python3}/bin/python -m http.server 8000" - ) - dns.succeed("podman ps | grep webserver") - dns.succeed(""" - for i in `seq 0 120`; do - podman run --rm --name=client -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg ${pkgs.curl}/bin/curl http://webserver:8000 >/dev/console \ - && exit 0 - sleep 0.5 - done - exit 1 - """) - dns.succeed("podman stop webserver") - dns.succeed("podman rm webserver") + dns.succeed("tar cv --files-from /dev/null | podman import - scratchimg") + dns.succeed( + "podman run -d --name=webserver -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin -w ${pkgs.writeTextDir "index.html" "

Testing

"} scratchimg ${pkgs.python3}/bin/python -m http.server 8000" + ) + dns.succeed("podman ps | grep webserver") + dns.wait_until_succeeds( + "podman run --rm --name=client -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin scratchimg ${pkgs.curl}/bin/curl http://webserver:8000 | grep Testing" + ) + dns.succeed("podman stop webserver") + dns.succeed("podman rm webserver") with subtest("A podman member can use the docker cli"): docker.succeed(su_cmd("docker version")) From 07b8c65c77c7fbafc28dcefb4041bc7ff9e5bdc6 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 18 Feb 2023 20:52:04 +1000 Subject: [PATCH 101/178] nixos/tests/podman: add test for rootless port forwarding --- nixos/tests/podman/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nixos/tests/podman/default.nix b/nixos/tests/podman/default.nix index 87e212eb8cd1..69397197775f 100644 --- a/nixos/tests/podman/default.nix +++ b/nixos/tests/podman/default.nix @@ -123,6 +123,18 @@ import ../make-test-python.nix ( rootless.succeed(su_cmd("podman stop sleeping")) rootless.succeed(su_cmd("podman rm sleeping")) + with subtest("rootlessport"): + rootless.succeed(su_cmd("tar cv --files-from /dev/null | podman import - scratchimg")) + rootless.succeed( + su_cmd( + "podman run -d -p 9000:8888 --name=rootlessport -v /nix/store:/nix/store -v /run/current-system/sw/bin:/bin -w ${pkgs.writeTextDir "index.html" "

Testing

"} scratchimg ${pkgs.python3}/bin/python -m http.server 8888" + ) + ) + rootless.succeed(su_cmd("podman ps | grep rootlessport")) + rootless.wait_until_succeeds(su_cmd("${pkgs.curl}/bin/curl localhost:9000 | grep Testing")) + rootless.succeed(su_cmd("podman stop rootlessport")) + rootless.succeed(su_cmd("podman rm rootlessport")) + with subtest("Run container with init"): rootful.succeed( "tar cv -C ${pkgs.pkgsStatic.busybox} . | podman import - busybox" From 294f94582559690359b28a044cbe96659091f118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 7 Feb 2023 17:22:44 -0800 Subject: [PATCH 102/178] python310Packages.mistune: 2.0.4 -> 2.0.5 https://github.com/lepture/mistune/releases/tag/v2.0.5 --- pkgs/development/python-modules/mistune/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mistune/default.nix b/pkgs/development/python-modules/mistune/default.nix index 600c77e8e0a6..8025fbd48628 100644 --- a/pkgs/development/python-modules/mistune/default.nix +++ b/pkgs/development/python-modules/mistune/default.nix @@ -7,13 +7,13 @@ buildPythonPackage rec { pname = "mistune"; - version = "2.0.4"; + version = "2.0.5"; format = "pyproject"; src = fetchPypi { inherit pname version; - sha256 = "9ee0a66053e2267aba772c71e06891fa8f1af6d4b01d5e84e267b4570d4d9808"; + hash = "sha256-AkYRPLJJLbh1xr5Wl0p8iTMzvybNkokchfYxUc7gnTQ="; }; nativeBuildInputs = [ @@ -27,6 +27,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "mistune" ]; meta = with lib; { + changelog = "https://github.com/lepture/mistune/blob/v${version}/docs/changes.rst"; description = "A sane Markdown parser with useful plugins and renderers"; homepage = "https://github.com/lepture/mistune"; license = licenses.bsd3; From e56db577a1f69c02e80d8bc26d514c01a2c5cc61 Mon Sep 17 00:00:00 2001 From: 1sixth <1sixth@shinta.ro> Date: Fri, 17 Feb 2023 20:42:13 +0800 Subject: [PATCH 103/178] nixos/polkit: set static gid for polkituser polkituser needs a group since https://github.com/NixOS/nixpkgs/pull/130522. --- nixos/modules/misc/ids.nix | 2 +- nixos/modules/security/polkit.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index a434932497d9..108ab5d4f318 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -392,7 +392,7 @@ in tape = 25; video = 26; dialout = 27; - #polkituser = 28; # currently unused, polkitd doesn't need a group + polkituser = 28; utmp = 29; # ddclient = 30; # converted to DynamicUser = true davfs2 = 31; diff --git a/nixos/modules/security/polkit.nix b/nixos/modules/security/polkit.nix index de427ccb295b..903bbbcab072 100644 --- a/nixos/modules/security/polkit.nix +++ b/nixos/modules/security/polkit.nix @@ -113,7 +113,7 @@ in group = "polkituser"; }; - users.groups.polkituser = {}; + users.groups.polkituser.gid = config.ids.gids.polkituser; }; } From 3139d99b4dd0a39b9a09d10a339d920c38562d50 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 21 Feb 2023 20:19:50 -0500 Subject: [PATCH 104/178] maturin.passthru.tests: replace patch with Cargo.lock This allows usage of importCargoLock --- .../tools/rust/maturin/pyo3-test/Cargo.lock | 682 +++++++++++++++++ .../rust/maturin/pyo3-test/Cargo.lock.patch | 688 ------------------ .../tools/rust/maturin/pyo3-test/generic.nix | 10 +- 3 files changed, 687 insertions(+), 693 deletions(-) create mode 100644 pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock delete mode 100644 pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock.patch diff --git a/pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock b/pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock new file mode 100644 index 000000000000..5e698d4ff735 --- /dev/null +++ b/pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock @@ -0,0 +1,682 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "ahash" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" + +[[package]] +name = "assert_approx_eq" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c07dab4369547dbe5114677b33fbbf724971019f3818172d59a97a61c774ffd" + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" + +[[package]] +name = "byteorder" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "const_fn" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b9d6de7f49e22cf97ad17fc4036ece69300032f45f78f30b4a4482cdc3f4a6" + +[[package]] +name = "crossbeam-channel" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d" +dependencies = [ + "cfg-if", + "const_fn", + "crossbeam-utils", + "lazy_static", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d" +dependencies = [ + "autocfg", + "cfg-if", + "lazy_static", +] + +[[package]] +name = "ctor" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8f45d9ad417bcef4817d614a501ab55cdd96a6fdb24f49aab89a54acfd66b19" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "ghost" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "glob" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" + +[[package]] +name = "hashbrown" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" +dependencies = [ + "ahash", +] + +[[package]] +name = "hermit-abi" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" +dependencies = [ + "libc", +] + +[[package]] +name = "indoc" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" +dependencies = [ + "indoc-impl", + "proc-macro-hack", +] + +[[package]] +name = "indoc-impl" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" +dependencies = [ + "proc-macro-hack", + "proc-macro2", + "quote", + "syn", + "unindent", +] + +[[package]] +name = "instant" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "inventory" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f0f7efb804ec95e33db9ad49e4252f049e37e8b0a4652e3cd61f7999f2eff7f" +dependencies = [ + "ctor", + "ghost", + "inventory-impl", +] + +[[package]] +name = "inventory-impl" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75c094e94816723ab936484666968f5b58060492e880f3c8d00489a1e244fa51" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "itoa" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.86" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c" + +[[package]] +name = "lock_api" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "memoffset" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num-bigint" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e9a41747ae4633fce5adffb4d2e81ffc5e89593cb19917f8fb2cc5ff76507bf" +dependencies = [ + "autocfg", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-complex" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-integer" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" +dependencies = [ + "autocfg", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "parking_lot" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" +dependencies = [ + "instant", + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" +dependencies = [ + "cfg-if", + "instant", + "libc", + "redox_syscall", + "smallvec", + "winapi", +] + +[[package]] +name = "paste" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" +dependencies = [ + "paste-impl", + "proc-macro-hack", +] + +[[package]] +name = "paste-impl" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" +dependencies = [ + "proc-macro-hack", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" + +[[package]] +name = "proc-macro-hack" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" + +[[package]] +name = "proc-macro2" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" +dependencies = [ + "unicode-xid", +] + +[[package]] +name = "proptest" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12e6c80c1139113c28ee4670dc50cc42915228b51f56a9e407f0ec60f966646f" +dependencies = [ + "bitflags", + "byteorder", + "lazy_static", + "num-traits", + "quick-error", + "rand", + "rand_chacha", + "rand_xorshift", + "regex-syntax", +] + +[[package]] +name = "pyo3" +version = "0.13.2" +dependencies = [ + "assert_approx_eq", + "cfg-if", + "ctor", + "hashbrown", + "indoc", + "inventory", + "libc", + "num-bigint", + "num-complex", + "parking_lot", + "paste", + "proptest", + "pyo3", + "pyo3-macros", + "rustversion", + "serde", + "serde_json", + "trybuild", + "unindent", +] + +[[package]] +name = "pyo3-macros" +version = "0.13.2" +dependencies = [ + "pyo3-macros-backend", + "quote", + "syn", +] + +[[package]] +name = "pyo3-macros-backend" +version = "0.13.2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom", + "libc", + "rand_chacha", + "rand_core", + "rand_hc", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rand_xorshift" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rayon" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674" +dependencies = [ + "autocfg", + "crossbeam-deque", + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "lazy_static", + "num_cpus", +] + +[[package]] +name = "redox_syscall" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex-syntax" +version = "0.6.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581" + +[[package]] +name = "rustapi-module" +version = "0.1.0" +dependencies = [ + "pyo3", +] + +[[package]] +name = "rustversion" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd" + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "serde" +version = "1.0.123" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.123" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.62" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea1c6153794552ea7cf7cf63b1231a25de00ec90db326ba6264440fa08e31486" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "smallvec" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" + +[[package]] +name = "syn" +version = "1.0.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "termcolor" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "toml" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" +dependencies = [ + "serde", +] + +[[package]] +name = "trybuild" +version = "1.0.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99471a206425fba51842a9186315f32d91c56eadc21ea4c21f847b59cf778f8b" +dependencies = [ + "glob", + "lazy_static", + "serde", + "serde_json", + "termcolor", + "toml", +] + +[[package]] +name = "unicode-xid" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" + +[[package]] +name = "unindent" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7" + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "word-count" +version = "0.1.0" +dependencies = [ + "pyo3", + "rayon", +] diff --git a/pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock.patch b/pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock.patch deleted file mode 100644 index 3aca2e4803a9..000000000000 --- a/pkgs/development/tools/rust/maturin/pyo3-test/Cargo.lock.patch +++ /dev/null @@ -1,688 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -new file mode 100644 -index 000000000..5e698d4ff ---- /dev/null -+++ b/Cargo.lock -@@ -0,0 +1,682 @@ -+# This file is automatically @generated by Cargo. -+# It is not intended for manual editing. -+[[package]] -+name = "ahash" -+version = "0.4.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "739f4a8db6605981345c5654f3a85b056ce52f37a39d34da03f25bf2151ea16e" -+ -+[[package]] -+name = "assert_approx_eq" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3c07dab4369547dbe5114677b33fbbf724971019f3818172d59a97a61c774ffd" -+ -+[[package]] -+name = "autocfg" -+version = "1.0.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" -+ -+[[package]] -+name = "bitflags" -+version = "1.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -+ -+[[package]] -+name = "byteorder" -+version = "1.4.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b" -+ -+[[package]] -+name = "cfg-if" -+version = "1.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -+ -+[[package]] -+name = "const_fn" -+version = "0.4.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "28b9d6de7f49e22cf97ad17fc4036ece69300032f45f78f30b4a4482cdc3f4a6" -+ -+[[package]] -+name = "crossbeam-channel" -+version = "0.5.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dca26ee1f8d361640700bde38b2c37d8c22b3ce2d360e1fc1c74ea4b0aa7d775" -+dependencies = [ -+ "cfg-if", -+ "crossbeam-utils", -+] -+ -+[[package]] -+name = "crossbeam-deque" -+version = "0.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "94af6efb46fef72616855b036a624cf27ba656ffc9be1b9a3c931cfc7749a9a9" -+dependencies = [ -+ "cfg-if", -+ "crossbeam-epoch", -+ "crossbeam-utils", -+] -+ -+[[package]] -+name = "crossbeam-epoch" -+version = "0.9.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a1aaa739f95311c2c7887a76863f500026092fb1dce0161dab577e559ef3569d" -+dependencies = [ -+ "cfg-if", -+ "const_fn", -+ "crossbeam-utils", -+ "lazy_static", -+ "memoffset", -+ "scopeguard", -+] -+ -+[[package]] -+name = "crossbeam-utils" -+version = "0.8.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "02d96d1e189ef58269ebe5b97953da3274d83a93af647c2ddd6f9dab28cedb8d" -+dependencies = [ -+ "autocfg", -+ "cfg-if", -+ "lazy_static", -+] -+ -+[[package]] -+name = "ctor" -+version = "0.1.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e8f45d9ad417bcef4817d614a501ab55cdd96a6fdb24f49aab89a54acfd66b19" -+dependencies = [ -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "either" -+version = "1.6.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" -+ -+[[package]] -+name = "getrandom" -+version = "0.1.16" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -+dependencies = [ -+ "cfg-if", -+ "libc", -+ "wasi", -+] -+ -+[[package]] -+name = "ghost" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "glob" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" -+ -+[[package]] -+name = "hashbrown" -+version = "0.9.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" -+dependencies = [ -+ "ahash", -+] -+ -+[[package]] -+name = "hermit-abi" -+version = "0.1.18" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "indoc" -+version = "0.3.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8" -+dependencies = [ -+ "indoc-impl", -+ "proc-macro-hack", -+] -+ -+[[package]] -+name = "indoc-impl" -+version = "0.3.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0" -+dependencies = [ -+ "proc-macro-hack", -+ "proc-macro2", -+ "quote", -+ "syn", -+ "unindent", -+] -+ -+[[package]] -+name = "instant" -+version = "0.1.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "61124eeebbd69b8190558df225adf7e4caafce0d743919e5d6b19652314ec5ec" -+dependencies = [ -+ "cfg-if", -+] -+ -+[[package]] -+name = "inventory" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0f0f7efb804ec95e33db9ad49e4252f049e37e8b0a4652e3cd61f7999f2eff7f" -+dependencies = [ -+ "ctor", -+ "ghost", -+ "inventory-impl", -+] -+ -+[[package]] -+name = "inventory-impl" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "75c094e94816723ab936484666968f5b58060492e880f3c8d00489a1e244fa51" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "itoa" -+version = "0.4.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" -+ -+[[package]] -+name = "lazy_static" -+version = "1.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -+ -+[[package]] -+name = "libc" -+version = "0.2.86" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c" -+ -+[[package]] -+name = "lock_api" -+version = "0.4.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dd96ffd135b2fd7b973ac026d28085defbe8983df057ced3eb4f2130b0831312" -+dependencies = [ -+ "scopeguard", -+] -+ -+[[package]] -+name = "memoffset" -+version = "0.6.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "157b4208e3059a8f9e78d559edc658e13df41410cb3ae03979c83130067fdd87" -+dependencies = [ -+ "autocfg", -+] -+ -+[[package]] -+name = "num-bigint" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5e9a41747ae4633fce5adffb4d2e81ffc5e89593cb19917f8fb2cc5ff76507bf" -+dependencies = [ -+ "autocfg", -+ "num-integer", -+ "num-traits", -+] -+ -+[[package]] -+name = "num-complex" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "747d632c0c558b87dbabbe6a82f3b4ae03720d0646ac5b7b4dae89394be5f2c5" -+dependencies = [ -+ "num-traits", -+] -+ -+[[package]] -+name = "num-integer" -+version = "0.1.44" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" -+dependencies = [ -+ "autocfg", -+ "num-traits", -+] -+ -+[[package]] -+name = "num-traits" -+version = "0.2.14" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" -+dependencies = [ -+ "autocfg", -+] -+ -+[[package]] -+name = "num_cpus" -+version = "1.13.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" -+dependencies = [ -+ "hermit-abi", -+ "libc", -+] -+ -+[[package]] -+name = "parking_lot" -+version = "0.11.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6d7744ac029df22dca6284efe4e898991d28e3085c706c972bcd7da4a27a15eb" -+dependencies = [ -+ "instant", -+ "lock_api", -+ "parking_lot_core", -+] -+ -+[[package]] -+name = "parking_lot_core" -+version = "0.8.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fa7a782938e745763fe6907fc6ba86946d72f49fe7e21de074e08128a99fb018" -+dependencies = [ -+ "cfg-if", -+ "instant", -+ "libc", -+ "redox_syscall", -+ "smallvec", -+ "winapi", -+] -+ -+[[package]] -+name = "paste" -+version = "0.1.18" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" -+dependencies = [ -+ "paste-impl", -+ "proc-macro-hack", -+] -+ -+[[package]] -+name = "paste-impl" -+version = "0.1.18" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" -+dependencies = [ -+ "proc-macro-hack", -+] -+ -+[[package]] -+name = "ppv-lite86" -+version = "0.2.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" -+ -+[[package]] -+name = "proc-macro-hack" -+version = "0.5.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" -+ -+[[package]] -+name = "proc-macro2" -+version = "1.0.24" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71" -+dependencies = [ -+ "unicode-xid", -+] -+ -+[[package]] -+name = "proptest" -+version = "0.10.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "12e6c80c1139113c28ee4670dc50cc42915228b51f56a9e407f0ec60f966646f" -+dependencies = [ -+ "bitflags", -+ "byteorder", -+ "lazy_static", -+ "num-traits", -+ "quick-error", -+ "rand", -+ "rand_chacha", -+ "rand_xorshift", -+ "regex-syntax", -+] -+ -+[[package]] -+name = "pyo3" -+version = "0.13.2" -+dependencies = [ -+ "assert_approx_eq", -+ "cfg-if", -+ "ctor", -+ "hashbrown", -+ "indoc", -+ "inventory", -+ "libc", -+ "num-bigint", -+ "num-complex", -+ "parking_lot", -+ "paste", -+ "proptest", -+ "pyo3", -+ "pyo3-macros", -+ "rustversion", -+ "serde", -+ "serde_json", -+ "trybuild", -+ "unindent", -+] -+ -+[[package]] -+name = "pyo3-macros" -+version = "0.13.2" -+dependencies = [ -+ "pyo3-macros-backend", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "pyo3-macros-backend" -+version = "0.13.2" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "quick-error" -+version = "1.2.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" -+ -+[[package]] -+name = "quote" -+version = "1.0.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" -+dependencies = [ -+ "proc-macro2", -+] -+ -+[[package]] -+name = "rand" -+version = "0.7.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -+dependencies = [ -+ "getrandom", -+ "libc", -+ "rand_chacha", -+ "rand_core", -+ "rand_hc", -+] -+ -+[[package]] -+name = "rand_chacha" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -+dependencies = [ -+ "ppv-lite86", -+ "rand_core", -+] -+ -+[[package]] -+name = "rand_core" -+version = "0.5.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -+dependencies = [ -+ "getrandom", -+] -+ -+[[package]] -+name = "rand_hc" -+version = "0.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -+dependencies = [ -+ "rand_core", -+] -+ -+[[package]] -+name = "rand_xorshift" -+version = "0.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "77d416b86801d23dde1aa643023b775c3a462efc0ed96443add11546cdf1dca8" -+dependencies = [ -+ "rand_core", -+] -+ -+[[package]] -+name = "rayon" -+version = "1.5.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8b0d8e0819fadc20c74ea8373106ead0600e3a67ef1fe8da56e39b9ae7275674" -+dependencies = [ -+ "autocfg", -+ "crossbeam-deque", -+ "either", -+ "rayon-core", -+] -+ -+[[package]] -+name = "rayon-core" -+version = "1.9.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9ab346ac5921dc62ffa9f89b7a773907511cdfa5490c572ae9be1be33e8afa4a" -+dependencies = [ -+ "crossbeam-channel", -+ "crossbeam-deque", -+ "crossbeam-utils", -+ "lazy_static", -+ "num_cpus", -+] -+ -+[[package]] -+name = "redox_syscall" -+version = "0.2.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "94341e4e44e24f6b591b59e47a8a027df12e008d73fd5672dbea9cc22f4507d9" -+dependencies = [ -+ "bitflags", -+] -+ -+[[package]] -+name = "regex-syntax" -+version = "0.6.22" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b5eb417147ba9860a96cfe72a0b93bf88fee1744b5636ec99ab20c1aa9376581" -+ -+[[package]] -+name = "rustapi-module" -+version = "0.1.0" -+dependencies = [ -+ "pyo3", -+] -+ -+[[package]] -+name = "rustversion" -+version = "1.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cb5d2a036dc6d2d8fd16fde3498b04306e29bd193bf306a57427019b823d5acd" -+ -+[[package]] -+name = "ryu" -+version = "1.0.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" -+ -+[[package]] -+name = "scopeguard" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" -+ -+[[package]] -+name = "serde" -+version = "1.0.123" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae" -+dependencies = [ -+ "serde_derive", -+] -+ -+[[package]] -+name = "serde_derive" -+version = "1.0.123" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "serde_json" -+version = "1.0.62" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ea1c6153794552ea7cf7cf63b1231a25de00ec90db326ba6264440fa08e31486" -+dependencies = [ -+ "itoa", -+ "ryu", -+ "serde", -+] -+ -+[[package]] -+name = "smallvec" -+version = "1.6.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e" -+ -+[[package]] -+name = "syn" -+version = "1.0.60" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "unicode-xid", -+] -+ -+[[package]] -+name = "termcolor" -+version = "1.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" -+dependencies = [ -+ "winapi-util", -+] -+ -+[[package]] -+name = "toml" -+version = "0.5.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a31142970826733df8241ef35dc040ef98c679ab14d7c3e54d827099b3acecaa" -+dependencies = [ -+ "serde", -+] -+ -+[[package]] -+name = "trybuild" -+version = "1.0.41" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "99471a206425fba51842a9186315f32d91c56eadc21ea4c21f847b59cf778f8b" -+dependencies = [ -+ "glob", -+ "lazy_static", -+ "serde", -+ "serde_json", -+ "termcolor", -+ "toml", -+] -+ -+[[package]] -+name = "unicode-xid" -+version = "0.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" -+ -+[[package]] -+name = "unindent" -+version = "0.1.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f14ee04d9415b52b3aeab06258a3f07093182b88ba0f9b8d203f211a7a7d41c7" -+ -+[[package]] -+name = "wasi" -+version = "0.9.0+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" -+ -+[[package]] -+name = "winapi" -+version = "0.3.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -+dependencies = [ -+ "winapi-i686-pc-windows-gnu", -+ "winapi-x86_64-pc-windows-gnu", -+] -+ -+[[package]] -+name = "winapi-i686-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -+ -+[[package]] -+name = "winapi-util" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" -+dependencies = [ -+ "winapi", -+] -+ -+[[package]] -+name = "winapi-x86_64-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -+ -+[[package]] -+name = "word-count" -+version = "0.1.0" -+dependencies = [ -+ "pyo3", -+ "rayon", -+] diff --git a/pkgs/development/tools/rust/maturin/pyo3-test/generic.nix b/pkgs/development/tools/rust/maturin/pyo3-test/generic.nix index 547f11125b70..7bc7e8d43bcb 100644 --- a/pkgs/development/tools/rust/maturin/pyo3-test/generic.nix +++ b/pkgs/development/tools/rust/maturin/pyo3-test/generic.nix @@ -24,13 +24,13 @@ python.pkgs.buildPythonPackage rec { hash = "sha256-NOMrrfo8WjlPhtGxWUOPJS/UDDdbLQRCXR++Zd6JmIA="; }; - cargoDeps = rustPlatform.fetchCargoTarball { - inherit src patches; - name = "${pname}-${version}"; - hash = "sha256-u3L9nXHKILznyZTgxdvZyOCQZFZhuADrtI7zXYQzrbE="; + cargoDeps = rustPlatform.importCargoLock { + lockFile = ./Cargo.lock; }; - patches = [ ./Cargo.lock.patch ]; + postPatch = '' + ln -s ${./Cargo.lock} Cargo.lock + ''; inherit buildAndTestSubdir format nativeBuildInputs preConfigure; From 85323f302e4789bac58cfb5da83f9bf965d3ea01 Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Mon, 20 Feb 2023 11:58:05 -0500 Subject: [PATCH 105/178] xgboost: CMakeLists.txt does not respect CUDA_HOST_COMPILER --- .../development/libraries/xgboost/default.nix | 28 +++++++++++++++---- 1 file changed, 22 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix index 4370a27012dc..319b447818cf 100644 --- a/pkgs/development/libraries/xgboost/default.nix +++ b/pkgs/development/libraries/xgboost/default.nix @@ -1,6 +1,18 @@ -{ config, stdenv, lib, fetchFromGitHub, cmake, gtest, doCheck ? true -, cudaSupport ? config.cudaSupport or false, ncclSupport ? false -, rLibrary ? false, cudaPackages, llvmPackages, R, rPackages }: +{ config +, stdenv +, lib +, fetchFromGitHub +, cmake +, gtest +, doCheck ? true +, cudaSupport ? config.cudaSupport or false +, ncclSupport ? false +, rLibrary ? false +, cudaPackages +, llvmPackages +, R +, rPackages +}: assert ncclSupport -> cudaSupport; # Disable regular tests when building the R package @@ -51,9 +63,13 @@ stdenv.mkDerivation rec { cmakeFlags = lib.optionals doCheck [ "-DGOOGLE_TEST=ON" ] ++ lib.optionals cudaSupport [ - "-DUSE_CUDA=ON" - "-DCUDA_HOST_COMPILER=${cudaPackages.cudatoolkit.cc}/bin/cc" - ] ++ lib.optionals (cudaSupport + "-DUSE_CUDA=ON" + # Their CMakeLists.txt does not respect CUDA_HOST_COMPILER, instead using the CXX compiler. + # https://github.com/dmlc/xgboost/blob/ccf43d4ba0a94e2f0a3cc5a526197539ae46f410/CMakeLists.txt#L145 + "-DCMAKE_C_COMPILER=${cudaPackages.cudatoolkit.cc}/bin/gcc" + "-DCMAKE_CXX_COMPILER=${cudaPackages.cudatoolkit.cc}/bin/g++" + ] ++ lib.optionals + (cudaSupport && lib.versionAtLeast cudaPackages.cudatoolkit.version "11.4.0") [ "-DBUILD_WITH_CUDA_CUB=ON" ] ++ lib.optionals ncclSupport [ "-DUSE_NCCL=ON" ] From c52479efd9bfb9184b582dabbae82ffacbbd1ff5 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 21 Feb 2023 20:28:56 -0500 Subject: [PATCH 106/178] rustc-demangle: replace patch with Cargo.lock https://github.com/NixOS/nixpkgs/pull/217084 plans to migrate Rust packages to use `importCargoLock`, but the migration script cannot handle `cargoPatches`: https://github.com/NixOS/nixpkgs/pull/217084#discussion_r1111253151 --- .../libraries/rustc-demangle/Cargo.lock | 67 +++++++++++++++++ .../rustc-demangle/add-Cargo.lock.patch | 73 ------------------- .../libraries/rustc-demangle/default.nix | 13 +++- 3 files changed, 76 insertions(+), 77 deletions(-) create mode 100644 pkgs/development/libraries/rustc-demangle/Cargo.lock delete mode 100644 pkgs/development/libraries/rustc-demangle/add-Cargo.lock.patch diff --git a/pkgs/development/libraries/rustc-demangle/Cargo.lock b/pkgs/development/libraries/rustc-demangle/Cargo.lock new file mode 100644 index 000000000000..0268b3bdd463 --- /dev/null +++ b/pkgs/development/libraries/rustc-demangle/Cargo.lock @@ -0,0 +1,67 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "arbitrary" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "237430fd6ed3740afe94eefcc278ae21e050285be882804e0d6e8695f0c94691" + +[[package]] +name = "cc" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2" + +[[package]] +name = "compiler_builtins" +version = "0.1.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20b1438ef42c655665a8ab2c1c6d605a305f031d38d9be689ddfef41a20f3aa2" + +[[package]] +name = "libfuzzer-sys" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36a9a84a6e8b55dfefb04235e55edb2b9a2a18488fcae777a6bdaa6f06f1deb3" +dependencies = [ + "arbitrary", + "cc", + "once_cell", +] + +[[package]] +name = "once_cell" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" + +[[package]] +name = "rustc-demangle" +version = "0.1.20" +dependencies = [ + "compiler_builtins", + "rustc-std-workspace-core", +] + +[[package]] +name = "rustc-demangle-capi" +version = "0.1.0" +dependencies = [ + "rustc-demangle", +] + +[[package]] +name = "rustc-demangle-fuzz" +version = "0.0.0" +dependencies = [ + "libfuzzer-sys", + "rustc-demangle", +] + +[[package]] +name = "rustc-std-workspace-core" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1956f5517128a2b6f23ab2dadf1a976f4f5b27962e7724c2bf3d45e539ec098c" diff --git a/pkgs/development/libraries/rustc-demangle/add-Cargo.lock.patch b/pkgs/development/libraries/rustc-demangle/add-Cargo.lock.patch deleted file mode 100644 index 66e8bead8a26..000000000000 --- a/pkgs/development/libraries/rustc-demangle/add-Cargo.lock.patch +++ /dev/null @@ -1,73 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -new file mode 100644 -index 0000000..0268b3b ---- /dev/null -+++ b/Cargo.lock -@@ -0,0 +1,67 @@ -+# This file is automatically @generated by Cargo. -+# It is not intended for manual editing. -+version = 3 -+ -+[[package]] -+name = "arbitrary" -+version = "1.0.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "237430fd6ed3740afe94eefcc278ae21e050285be882804e0d6e8695f0c94691" -+ -+[[package]] -+name = "cc" -+version = "1.0.69" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2" -+ -+[[package]] -+name = "compiler_builtins" -+version = "0.1.49" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "20b1438ef42c655665a8ab2c1c6d605a305f031d38d9be689ddfef41a20f3aa2" -+ -+[[package]] -+name = "libfuzzer-sys" -+version = "0.4.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "36a9a84a6e8b55dfefb04235e55edb2b9a2a18488fcae777a6bdaa6f06f1deb3" -+dependencies = [ -+ "arbitrary", -+ "cc", -+ "once_cell", -+] -+ -+[[package]] -+name = "once_cell" -+version = "1.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" -+ -+[[package]] -+name = "rustc-demangle" -+version = "0.1.20" -+dependencies = [ -+ "compiler_builtins", -+ "rustc-std-workspace-core", -+] -+ -+[[package]] -+name = "rustc-demangle-capi" -+version = "0.1.0" -+dependencies = [ -+ "rustc-demangle", -+] -+ -+[[package]] -+name = "rustc-demangle-fuzz" -+version = "0.0.0" -+dependencies = [ -+ "libfuzzer-sys", -+ "rustc-demangle", -+] -+ -+[[package]] -+name = "rustc-std-workspace-core" -+version = "1.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1956f5517128a2b6f23ab2dadf1a976f4f5b27962e7724c2bf3d45e539ec098c" diff --git a/pkgs/development/libraries/rustc-demangle/default.nix b/pkgs/development/libraries/rustc-demangle/default.nix index e0329085bd56..6dd6d46e30bb 100644 --- a/pkgs/development/libraries/rustc-demangle/default.nix +++ b/pkgs/development/libraries/rustc-demangle/default.nix @@ -11,12 +11,17 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-elxclyuLmr3N66s+pR4/6OU98k1oXI2wKVJtzWPY8FI="; }; - cargoPatches = [ + cargoLock = { # generated using `cargo generate-lockfile` since repo is missing lockfile - ./add-Cargo.lock.patch - ]; - cargoSha256 = "sha256-1tW5TOap5MstxTXAFij3IB8TIpI+FryEX9TXlVXjRl4="; + lockFile = ./Cargo.lock; + }; + cargoBuildFlags = [ "-p" "rustc-demangle-capi" ]; + + postPatch = '' + ln -s ${./Cargo.lock} Cargo.lock + ''; + postInstall = '' mkdir -p $out/lib cp target/${rust.toRustTargetSpec stdenv.hostPlatform}/release/librustc_demangle.so $out/lib From 291db05669ce38ff830af858aacea5c20fb13cbf Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Mon, 20 Feb 2023 11:27:55 -0500 Subject: [PATCH 107/178] caffe: use pre-CUDNN 8.x --- pkgs/applications/science/math/caffe/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/science/math/caffe/default.nix b/pkgs/applications/science/math/caffe/default.nix index d6c95633dd52..ed6836afbd92 100644 --- a/pkgs/applications/science/math/caffe/default.nix +++ b/pkgs/applications/science/math/caffe/default.nix @@ -21,7 +21,13 @@ }: let - inherit (cudaPackages) cudatoolkit cudnn nccl; + inherit (cudaPackages) cudatoolkit nccl; + # The default for cudatoolkit 10.1 is CUDNN 8.0.5, the last version to support CUDA 10.1. + # However, this caffe does not build with CUDNN 8.x, so we use CUDNN 7.6.5 instead. + # Earlier versions of cudatoolkit use pre-8.x CUDNN, so we use the default. + cudnn = if lib.versionOlder cudatoolkit.version "10.1" + then cudaPackages.cudnn + else cudaPackages.cudnn_7_6_5; in assert leveldbSupport -> (leveldb != null && snappy != null); From 4023fb81ddbcab51cd7c65131bb9d4c1cb1dc1c8 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 21 Feb 2023 20:59:26 -0500 Subject: [PATCH 108/178] netease-music-tui: replace patch with Cargo.lock https://github.com/NixOS/nixpkgs/pull/217084 plans to migrate Rust packages to use `importCargoLock`, but the migration script cannot handle `cargoPatches`: https://github.com/NixOS/nixpkgs/pull/217084#discussion_r1111253151 --- .../audio/netease-music-tui/Cargo.lock | 2778 ++++++++++++++++ .../audio/netease-music-tui/cargo-lock.patch | 2784 ----------------- .../audio/netease-music-tui/default.nix | 8 +- 3 files changed, 2785 insertions(+), 2785 deletions(-) create mode 100644 pkgs/applications/audio/netease-music-tui/Cargo.lock delete mode 100644 pkgs/applications/audio/netease-music-tui/cargo-lock.patch diff --git a/pkgs/applications/audio/netease-music-tui/Cargo.lock b/pkgs/applications/audio/netease-music-tui/Cargo.lock new file mode 100644 index 000000000000..471b1a53eae7 --- /dev/null +++ b/pkgs/applications/audio/netease-music-tui/Cargo.lock @@ -0,0 +1,2778 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "addr2line" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "aho-corasick" +version = "0.7.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" +dependencies = [ + "memchr", +] + +[[package]] +name = "alsa" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b" +dependencies = [ + "alsa-sys", + "bitflags", + "libc", + "nix", +] + +[[package]] +name = "alsa-sys" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "async-compression" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" +dependencies = [ + "bytes 0.5.6", + "flate2", + "futures-core", + "memchr", + "pin-project-lite 0.2.9", +] + +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + +[[package]] +name = "backtrace" +version = "0.3.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" +dependencies = [ + "addr2line", + "cc", + "cfg-if 1.0.0", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "base-x" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" + +[[package]] +name = "base64" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "bindgen" +version = "0.61.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a022e58a142a46fea340d68012b9201c094e93ec3d033a944a24f8fd4a4f09a" +dependencies = [ + "bitflags", + "cexpr", + "clang-sys", + "lazy_static 1.4.0", + "lazycell", + "peeking_take_while", + "proc-macro2", + "quote", + "regex", + "rustc-hash", + "shlex", + "syn", +] + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bumpalo" +version = "3.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "bytes" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" +dependencies = [ + "byteorder", + "iovec", +] + +[[package]] +name = "bytes" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" + +[[package]] +name = "bytes" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" + +[[package]] +name = "cassowary" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" + +[[package]] +name = "cc" +version = "1.0.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" +dependencies = [ + "jobserver", +] + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cexpr" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" +dependencies = [ + "nom 7.1.1", +] + +[[package]] +name = "cfg-if" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" +dependencies = [ + "iana-time-zone", + "js-sys", + "num-integer", + "num-traits 0.2.15", + "time 0.1.44", + "wasm-bindgen", + "winapi 0.3.9", +] + +[[package]] +name = "clang-sys" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" +dependencies = [ + "glob", + "libc", + "libloading", +] + +[[package]] +name = "claxon" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bfbf56724aa9eca8afa4fcfadeb479e722935bb2a0900c2d37e0cc477af0688" + +[[package]] +name = "codespan-reporting" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" +dependencies = [ + "termcolor", + "unicode-width", +] + +[[package]] +name = "combine" +version = "4.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" +dependencies = [ + "bytes 1.2.1", + "memchr", +] + +[[package]] +name = "config" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9107d78ed62b3fa5a86e7d18e647abed48cfd8f8fab6c72f4cdb982d196f7e6" +dependencies = [ + "lazy_static 1.4.0", + "nom 4.2.3", + "rust-ini", + "serde 1.0.147", + "serde-hjson", + "serde_json", + "toml 0.4.10", + "yaml-rust", +] + +[[package]] +name = "const_fn" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" + +[[package]] +name = "cookie" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951" +dependencies = [ + "percent-encoding", + "time 0.2.27", + "version_check 0.9.4", +] + +[[package]] +name = "cookie_store" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3818dfca4b0cb5211a659bbcbb94225b7127407b2b135e650d717bfb78ab10d3" +dependencies = [ + "cookie", + "idna 0.2.3", + "log", + "publicsuffix", + "serde 1.0.147", + "serde_json", + "time 0.2.27", + "url", +] + +[[package]] +name = "core-foundation" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" + +[[package]] +name = "coreaudio-rs" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88" +dependencies = [ + "bitflags", + "coreaudio-sys", +] + +[[package]] +name = "coreaudio-sys" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a9444b94b8024feecc29e01a9706c69c1e26bfee480221c90764200cfd778fb" +dependencies = [ + "bindgen", +] + +[[package]] +name = "cpal" +version = "0.13.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74117836a5124f3629e4b474eed03e479abaf98988b4bb317e29f08cfe0e4116" +dependencies = [ + "alsa", + "core-foundation-sys", + "coreaudio-rs", + "jni", + "js-sys", + "lazy_static 1.4.0", + "libc", + "mach", + "ndk", + "ndk-glue", + "nix", + "oboe", + "parking_lot", + "stdweb 0.1.3", + "thiserror", + "web-sys", + "winapi 0.3.9", +] + +[[package]] +name = "crc32fast" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "cxx" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453" +dependencies = [ + "cc", + "cxxbridge-flags", + "cxxbridge-macro", + "link-cplusplus", +] + +[[package]] +name = "cxx-build" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0" +dependencies = [ + "cc", + "codespan-reporting", + "once_cell", + "proc-macro2", + "quote", + "scratch", + "syn", +] + +[[package]] +name = "cxxbridge-flags" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71" + +[[package]] +name = "cxxbridge-macro" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "darling" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn", +] + +[[package]] +name = "darling_macro" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" +dependencies = [ + "darling_core", + "quote", + "syn", +] + +[[package]] +name = "dbus" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "add8dd36d6d34a084220eb9fe216d3e230d52b37c31702e1ffda4fb2d4ef950e" +dependencies = [ + "libc", + "libdbus-sys", +] + +[[package]] +name = "dirs" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3" +dependencies = [ + "cfg-if 0.1.10", + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" +dependencies = [ + "libc", + "redox_users", + "winapi 0.3.9", +] + +[[package]] +name = "discard" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" + +[[package]] +name = "dtoa" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" + +[[package]] +name = "either" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" + +[[package]] +name = "encoding_rs" +version = "0.8.31" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "failure" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" +dependencies = [ + "backtrace", + "failure_derive", +] + +[[package]] +name = "failure_derive" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "fastrand" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" +dependencies = [ + "instant", +] + +[[package]] +name = "flate2" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +dependencies = [ + "bitflags", + "fuchsia-zircon-sys", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" + +[[package]] +name = "futures" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" + +[[package]] +name = "futures-executor" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" + +[[package]] +name = "futures-macro" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" + +[[package]] +name = "futures-task" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" + +[[package]] +name = "futures-util" +version = "0.3.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite 0.2.9", + "pin-utils", + "slab", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "wasi 0.11.0+wasi-snapshot-preview1", +] + +[[package]] +name = "gimli" +version = "0.26.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" + +[[package]] +name = "glob" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" + +[[package]] +name = "h2" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535" +dependencies = [ + "bytes 0.5.6", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap", + "slab", + "tokio", + "tokio-util", + "tracing", + "tracing-futures", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hound" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d13cdbd5dbb29f9c88095bbdc2590c9cba0d0a1269b983fef6b2cdd7e9f4db1" + +[[package]] +name = "http" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" +dependencies = [ + "bytes 1.2.1", + "fnv", + "itoa 1.0.4", +] + +[[package]] +name = "http-body" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b" +dependencies = [ + "bytes 0.5.6", + "http", +] + +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "httpdate" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" + +[[package]] +name = "hyper" +version = "0.13.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb" +dependencies = [ + "bytes 0.5.6", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa 0.4.8", + "pin-project", + "socket2", + "tokio", + "tower-service", + "tracing", + "want", +] + +[[package]] +name = "hyper-tls" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed" +dependencies = [ + "bytes 0.5.6", + "hyper", + "native-tls", + "tokio", + "tokio-tls", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.53" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "winapi 0.3.9", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" +dependencies = [ + "cxx", + "cxx-build", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" +dependencies = [ + "matches", + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "idna" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" +dependencies = [ + "unicode-bidi", + "unicode-normalization", +] + +[[package]] +name = "indexmap" +version = "1.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" +dependencies = [ + "autocfg", + "hashbrown", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "iovec" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" +dependencies = [ + "libc", +] + +[[package]] +name = "ipnet" +version = "2.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745" + +[[package]] +name = "itertools" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" + +[[package]] +name = "itoa" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" + +[[package]] +name = "jni" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" +dependencies = [ + "cesu8", + "combine", + "jni-sys", + "log", + "thiserror", + "walkdir", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + +[[package]] +name = "jobserver" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" +dependencies = [ + "libc", +] + +[[package]] +name = "js-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +dependencies = [ + "winapi 0.2.8", + "winapi-build", +] + +[[package]] +name = "lazy_static" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "lazycell" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" + +[[package]] +name = "lewton" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "777b48df9aaab155475a83a7df3070395ea1ac6902f5cd062b8f2b028075c030" +dependencies = [ + "byteorder", + "ogg", + "tinyvec", +] + +[[package]] +name = "libc" +version = "0.2.137" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" + +[[package]] +name = "libdbus-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b" +dependencies = [ + "pkg-config", +] + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if 1.0.0", + "winapi 0.3.9", +] + +[[package]] +name = "link-cplusplus" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" +dependencies = [ + "cc", +] + +[[package]] +name = "linked-hash-map" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d262045c5b87c0861b3f004610afd0e2c851e2908d08b6c870cbb9d5f494ecd" +dependencies = [ + "serde 0.8.23", + "serde_test", +] + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "lock_api" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "log-panics" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68f9dd8546191c1850ecf67d22f5ff00a935b890d0e84713159a55495cc2ac5f" +dependencies = [ + "log", +] + +[[package]] +name = "mach" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" +dependencies = [ + "libc", +] + +[[package]] +name = "matches" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" + +[[package]] +name = "memchr" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" + +[[package]] +name = "memoffset" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" +dependencies = [ + "autocfg", +] + +[[package]] +name = "mime" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" + +[[package]] +name = "mime_guess" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" +dependencies = [ + "mime", + "unicase", +] + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "minimp3" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "985438f75febf74c392071a975a29641b420dd84431135a6e6db721de4b74372" +dependencies = [ + "minimp3-sys", + "slice-deque", + "thiserror", +] + +[[package]] +name = "minimp3-sys" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90" +dependencies = [ + "cc", +] + +[[package]] +name = "miniz_oxide" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" +dependencies = [ + "adler", +] + +[[package]] +name = "mio" +version = "0.6.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" +dependencies = [ + "cfg-if 0.1.10", + "fuchsia-zircon", + "fuchsia-zircon-sys", + "iovec", + "kernel32-sys", + "libc", + "log", + "miow", + "net2", + "slab", + "winapi 0.2.8", +] + +[[package]] +name = "miow" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" +dependencies = [ + "kernel32-sys", + "net2", + "winapi 0.2.8", + "ws2_32-sys", +] + +[[package]] +name = "mp3-duration" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "348bdc7300502f0801e5b57c448815713cd843b744ef9bda252a2698fdf90a0f" +dependencies = [ + "thiserror", +] + +[[package]] +name = "native-tls" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" +dependencies = [ + "lazy_static 1.4.0", + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "ndk" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" +dependencies = [ + "bitflags", + "jni-sys", + "ndk-sys", + "num_enum", + "thiserror", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "ndk-glue" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d0c4a7b83860226e6b4183edac21851f05d5a51756e97a1144b7f5a6b63e65f" +dependencies = [ + "lazy_static 1.4.0", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-macro", + "ndk-sys", +] + +[[package]] +name = "ndk-macro" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0df7ac00c4672f9d5aece54ee3347520b7e20f158656c7db2e6de01902eb7a6c" +dependencies = [ + "darling", + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "ndk-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" +dependencies = [ + "jni-sys", +] + +[[package]] +name = "net2" +version = "0.2.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631" +dependencies = [ + "cfg-if 0.1.10", + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "netease_music_tui" +version = "0.1.3" +dependencies = [ + "base64 0.11.0", + "byteorder", + "bytes 0.4.12", + "chrono", + "config", + "cpal", + "dbus", + "dirs", + "failure", + "futures", + "hex", + "lazy_static 1.4.0", + "log", + "log-panics", + "mp3-duration", + "num-bigint", + "openssl", + "rand", + "regex", + "reqwest", + "rodio", + "serde 1.0.147", + "serde_derive", + "serde_json", + "serde_urlencoded 0.6.1", + "simple-logging", + "tempfile", + "termion", + "tokio", + "tui", + "unicode-width", +] + +[[package]] +name = "nix" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" +dependencies = [ + "bitflags", + "cc", + "cfg-if 1.0.0", + "libc", + "memoffset", +] + +[[package]] +name = "nom" +version = "4.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" +dependencies = [ + "memchr", + "version_check 0.1.5", +] + +[[package]] +name = "nom" +version = "7.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "num-bigint" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" +dependencies = [ + "autocfg", + "num-integer", + "num-traits 0.2.15", +] + +[[package]] +name = "num-derive" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "num-integer" +version = "0.1.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" +dependencies = [ + "autocfg", + "num-traits 0.2.15", +] + +[[package]] +name = "num-traits" +version = "0.1.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" +dependencies = [ + "num-traits 0.2.15", +] + +[[package]] +name = "num-traits" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "num_enum" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" +dependencies = [ + "num_enum_derive", +] + +[[package]] +name = "num_enum_derive" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" +dependencies = [ + "proc-macro-crate", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "numtoa" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" + +[[package]] +name = "object" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" +dependencies = [ + "memchr", +] + +[[package]] +name = "oboe" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27f63c358b4fa0fbcfefd7c8be5cfc39c08ce2389f5325687e7762a48d30a5c1" +dependencies = [ + "jni", + "ndk", + "ndk-context", + "num-derive", + "num-traits 0.2.15", + "oboe-sys", +] + +[[package]] +name = "oboe-sys" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3370abb7372ed744232c12954d920d1a40f1c4686de9e79e800021ef492294bd" +dependencies = [ + "cc", +] + +[[package]] +name = "ogg" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e" +dependencies = [ + "byteorder", +] + +[[package]] +name = "once_cell" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" + +[[package]] +name = "openssl" +version = "0.10.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13" +dependencies = [ + "bitflags", + "cfg-if 1.0.0", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "openssl-sys" +version = "0.9.77" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b03b84c3b2d099b81f0953422b4d4ad58761589d0229b5506356afca05a3670a" +dependencies = [ + "autocfg", + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "parking_lot" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" +dependencies = [ + "instant", + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" +dependencies = [ + "cfg-if 1.0.0", + "instant", + "libc", + "redox_syscall 0.2.16", + "smallvec", + "winapi 0.3.9", +] + +[[package]] +name = "peeking_take_while" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" + +[[package]] +name = "percent-encoding" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" + +[[package]] +name = "pin-project" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" +dependencies = [ + "pin-project-internal", +] + +[[package]] +name = "pin-project-internal" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "pin-project-lite" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" + +[[package]] +name = "pin-project-lite" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" + +[[package]] +name = "ppv-lite86" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" + +[[package]] +name = "proc-macro-crate" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" +dependencies = [ + "once_cell", + "thiserror", + "toml 0.5.9", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" + +[[package]] +name = "proc-macro2" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "publicsuffix" +version = "1.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f" +dependencies = [ + "idna 0.2.3", + "url", +] + +[[package]] +name = "quote" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha", + "rand_core", + "rand_hc", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core", +] + +[[package]] +name = "redox_syscall" +version = "0.1.57" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" + +[[package]] +name = "redox_syscall" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" +dependencies = [ + "bitflags", +] + +[[package]] +name = "redox_termios" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f" +dependencies = [ + "redox_syscall 0.2.16", +] + +[[package]] +name = "redox_users" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" +dependencies = [ + "getrandom 0.2.8", + "redox_syscall 0.2.16", + "thiserror", +] + +[[package]] +name = "regex" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.6.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" + +[[package]] +name = "remove_dir_all" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "reqwest" +version = "0.10.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c" +dependencies = [ + "async-compression", + "base64 0.13.1", + "bytes 0.5.6", + "cookie", + "cookie_store", + "encoding_rs", + "futures-core", + "futures-util", + "http", + "http-body", + "hyper", + "hyper-tls", + "ipnet", + "js-sys", + "lazy_static 1.4.0", + "log", + "mime", + "mime_guess", + "native-tls", + "percent-encoding", + "pin-project-lite 0.2.9", + "serde 1.0.147", + "serde_urlencoded 0.7.1", + "time 0.2.27", + "tokio", + "tokio-socks", + "tokio-tls", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", +] + +[[package]] +name = "rodio" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0939e9f626e6c6f1989adb6226a039c855ca483053f0ee7c98b90e41cf731e" +dependencies = [ + "claxon", + "cpal", + "hound", + "lewton", + "minimp3", +] + +[[package]] +name = "rust-ini" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2" + +[[package]] +name = "rustc-demangle" +version = "0.1.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +dependencies = [ + "semver", +] + +[[package]] +name = "ryu" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schannel" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" +dependencies = [ + "lazy_static 1.4.0", + "windows-sys", +] + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "scratch" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" + +[[package]] +name = "security-framework" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" +dependencies = [ + "bitflags", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +dependencies = [ + "semver-parser", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" + +[[package]] +name = "serde" +version = "0.8.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8" + +[[package]] +name = "serde" +version = "1.0.147" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde-hjson" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b833c5ad67d52ced5f5938b2980f32a9c1c5ef047f0b4fb3127e7a423c76153" +dependencies = [ + "lazy_static 0.2.11", + "linked-hash-map 0.3.0", + "num-traits 0.1.43", + "regex", + "serde 0.8.23", +] + +[[package]] +name = "serde_derive" +version = "1.0.147" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7" +dependencies = [ + "itoa 1.0.4", + "ryu", + "serde 1.0.147", +] + +[[package]] +name = "serde_test" +version = "0.8.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "110b3dbdf8607ec493c22d5d947753282f3bae73c0f56d322af1e8c78e4c23d5" +dependencies = [ + "serde 0.8.23", +] + +[[package]] +name = "serde_urlencoded" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97" +dependencies = [ + "dtoa", + "itoa 0.4.8", + "serde 1.0.147", + "url", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa 1.0.4", + "ryu", + "serde 1.0.147", +] + +[[package]] +name = "sha1" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" +dependencies = [ + "sha1_smol", +] + +[[package]] +name = "sha1_smol" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" + +[[package]] +name = "shlex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" + +[[package]] +name = "simple-logging" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00d48e85675326bb182a2286ea7c1a0b264333ae10f27a937a72be08628b542" +dependencies = [ + "lazy_static 1.4.0", + "log", + "thread-id", +] + +[[package]] +name = "slab" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" +dependencies = [ + "autocfg", +] + +[[package]] +name = "slice-deque" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31ef6ee280cdefba6d2d0b4b78a84a1c1a3f3a4cec98c2d4231c8bc225de0f25" +dependencies = [ + "libc", + "mach", + "winapi 0.3.9", +] + +[[package]] +name = "smallvec" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" + +[[package]] +name = "socket2" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "winapi 0.3.9", +] + +[[package]] +name = "standback" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" +dependencies = [ + "version_check 0.9.4", +] + +[[package]] +name = "stdweb" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef5430c8e36b713e13b48a9f709cc21e046723fe44ce34587b73a830203b533e" + +[[package]] +name = "stdweb" +version = "0.4.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" +dependencies = [ + "discard", + "rustc_version", + "stdweb-derive", + "stdweb-internal-macros", + "stdweb-internal-runtime", + "wasm-bindgen", +] + +[[package]] +name = "stdweb-derive" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" +dependencies = [ + "proc-macro2", + "quote", + "serde 1.0.147", + "serde_derive", + "syn", +] + +[[package]] +name = "stdweb-internal-macros" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" +dependencies = [ + "base-x", + "proc-macro2", + "quote", + "serde 1.0.147", + "serde_derive", + "serde_json", + "sha1", + "syn", +] + +[[package]] +name = "stdweb-internal-runtime" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" + +[[package]] +name = "strsim" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" + +[[package]] +name = "syn" +version = "1.0.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "synstructure" +version = "0.12.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "unicode-xid", +] + +[[package]] +name = "tempfile" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +dependencies = [ + "cfg-if 1.0.0", + "fastrand", + "libc", + "redox_syscall 0.2.16", + "remove_dir_all", + "winapi 0.3.9", +] + +[[package]] +name = "termcolor" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "termion" +version = "1.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e" +dependencies = [ + "libc", + "numtoa", + "redox_syscall 0.2.16", + "redox_termios", +] + +[[package]] +name = "thiserror" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "thread-id" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1" +dependencies = [ + "libc", + "redox_syscall 0.1.57", + "winapi 0.3.9", +] + +[[package]] +name = "time" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" +dependencies = [ + "libc", + "wasi 0.10.0+wasi-snapshot-preview1", + "winapi 0.3.9", +] + +[[package]] +name = "time" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" +dependencies = [ + "const_fn", + "libc", + "standback", + "stdweb 0.4.20", + "time-macros", + "version_check 0.9.4", + "winapi 0.3.9", +] + +[[package]] +name = "time-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" +dependencies = [ + "proc-macro-hack", + "time-macros-impl", +] + +[[package]] +name = "time-macros-impl" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" +dependencies = [ + "proc-macro-hack", + "proc-macro2", + "quote", + "standback", + "syn", +] + +[[package]] +name = "tinyvec" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" + +[[package]] +name = "tokio" +version = "0.2.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092" +dependencies = [ + "bytes 0.5.6", + "fnv", + "futures-core", + "iovec", + "lazy_static 1.4.0", + "memchr", + "mio", + "num_cpus", + "pin-project-lite 0.1.12", + "slab", + "tokio-macros", +] + +[[package]] +name = "tokio-macros" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tokio-socks" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d611fd5d241872372d52a0a3d309c52d0b95a6a67671a6c8f7ab2c4a37fb2539" +dependencies = [ + "bytes 0.4.12", + "either", + "futures", + "thiserror", + "tokio", +] + +[[package]] +name = "tokio-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499" +dependencies = [ + "bytes 0.5.6", + "futures-core", + "futures-sink", + "log", + "pin-project-lite 0.1.12", + "tokio", +] + +[[package]] +name = "toml" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" +dependencies = [ + "serde 1.0.147", +] + +[[package]] +name = "toml" +version = "0.5.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" +dependencies = [ + "serde 1.0.147", +] + +[[package]] +name = "tower-service" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" + +[[package]] +name = "tracing" +version = "0.1.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if 1.0.0", + "log", + "pin-project-lite 0.2.9", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tracing-futures" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" +dependencies = [ + "pin-project", + "tracing", +] + +[[package]] +name = "try-lock" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" + +[[package]] +name = "tui" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73b422ff4986065d33272b587907654f918a3fe8702786a8110bf68dede0d8ee" +dependencies = [ + "bitflags", + "cassowary", + "either", + "itertools", + "log", + "termion", + "unicode-segmentation", + "unicode-width", +] + +[[package]] +name = "unicase" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" +dependencies = [ + "version_check 0.9.4", +] + +[[package]] +name = "unicode-bidi" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" + +[[package]] +name = "unicode-ident" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" + +[[package]] +name = "unicode-normalization" +version = "0.1.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-segmentation" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" + +[[package]] +name = "unicode-width" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" + +[[package]] +name = "unicode-xid" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" + +[[package]] +name = "url" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" +dependencies = [ + "form_urlencoded", + "idna 0.3.0", + "percent-encoding", +] + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version_check" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" + +[[package]] +name = "version_check" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" + +[[package]] +name = "walkdir" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" +dependencies = [ + "same-file", + "winapi 0.3.9", + "winapi-util", +] + +[[package]] +name = "want" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" +dependencies = [ + "log", + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.10.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" +dependencies = [ + "cfg-if 1.0.0", + "serde 1.0.147", + "serde_json", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" +dependencies = [ + "cfg-if 1.0.0", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" + +[[package]] +name = "web-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-sys" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" +dependencies = [ + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" + +[[package]] +name = "windows_i686_gnu" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" + +[[package]] +name = "windows_i686_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.36.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" + +[[package]] +name = "winreg" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" +dependencies = [ + "winapi 0.3.9", +] + +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" +dependencies = [ + "winapi 0.2.8", + "winapi-build", +] + +[[package]] +name = "yaml-rust" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" +dependencies = [ + "linked-hash-map 0.5.6", +] diff --git a/pkgs/applications/audio/netease-music-tui/cargo-lock.patch b/pkgs/applications/audio/netease-music-tui/cargo-lock.patch deleted file mode 100644 index 45754a1f9e5d..000000000000 --- a/pkgs/applications/audio/netease-music-tui/cargo-lock.patch +++ /dev/null @@ -1,2784 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -new file mode 100644 -index 0000000..471b1a5 ---- /dev/null -+++ b/Cargo.lock -@@ -0,0 +1,2778 @@ -+# This file is automatically @generated by Cargo. -+# It is not intended for manual editing. -+version = 3 -+ -+[[package]] -+name = "addr2line" -+version = "0.17.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" -+dependencies = [ -+ "gimli", -+] -+ -+[[package]] -+name = "adler" -+version = "1.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" -+ -+[[package]] -+name = "aho-corasick" -+version = "0.7.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" -+dependencies = [ -+ "memchr", -+] -+ -+[[package]] -+name = "alsa" -+version = "0.6.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5915f52fe2cf65e83924d037b6c5290b7cee097c6b5c8700746e6168a343fd6b" -+dependencies = [ -+ "alsa-sys", -+ "bitflags", -+ "libc", -+ "nix", -+] -+ -+[[package]] -+name = "alsa-sys" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "db8fee663d06c4e303404ef5f40488a53e062f89ba8bfed81f42325aafad1527" -+dependencies = [ -+ "libc", -+ "pkg-config", -+] -+ -+[[package]] -+name = "android_system_properties" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "async-compression" -+version = "0.3.15" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" -+dependencies = [ -+ "bytes 0.5.6", -+ "flate2", -+ "futures-core", -+ "memchr", -+ "pin-project-lite 0.2.9", -+] -+ -+[[package]] -+name = "autocfg" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" -+ -+[[package]] -+name = "backtrace" -+version = "0.3.66" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" -+dependencies = [ -+ "addr2line", -+ "cc", -+ "cfg-if 1.0.0", -+ "libc", -+ "miniz_oxide", -+ "object", -+ "rustc-demangle", -+] -+ -+[[package]] -+name = "base-x" -+version = "0.2.11" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" -+ -+[[package]] -+name = "base64" -+version = "0.11.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" -+ -+[[package]] -+name = "base64" -+version = "0.13.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" -+ -+[[package]] -+name = "bindgen" -+version = "0.61.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8a022e58a142a46fea340d68012b9201c094e93ec3d033a944a24f8fd4a4f09a" -+dependencies = [ -+ "bitflags", -+ "cexpr", -+ "clang-sys", -+ "lazy_static 1.4.0", -+ "lazycell", -+ "peeking_take_while", -+ "proc-macro2", -+ "quote", -+ "regex", -+ "rustc-hash", -+ "shlex", -+ "syn", -+] -+ -+[[package]] -+name = "bitflags" -+version = "1.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" -+ -+[[package]] -+name = "bumpalo" -+version = "3.11.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" -+ -+[[package]] -+name = "byteorder" -+version = "1.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -+ -+[[package]] -+name = "bytes" -+version = "0.4.12" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -+dependencies = [ -+ "byteorder", -+ "iovec", -+] -+ -+[[package]] -+name = "bytes" -+version = "0.5.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0e4cec68f03f32e44924783795810fa50a7035d8c8ebe78580ad7e6c703fba38" -+ -+[[package]] -+name = "bytes" -+version = "1.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db" -+ -+[[package]] -+name = "cassowary" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53" -+ -+[[package]] -+name = "cc" -+version = "1.0.76" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" -+dependencies = [ -+ "jobserver", -+] -+ -+[[package]] -+name = "cesu8" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" -+ -+[[package]] -+name = "cexpr" -+version = "0.6.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766" -+dependencies = [ -+ "nom 7.1.1", -+] -+ -+[[package]] -+name = "cfg-if" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" -+ -+[[package]] -+name = "cfg-if" -+version = "1.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -+ -+[[package]] -+name = "chrono" -+version = "0.4.23" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" -+dependencies = [ -+ "iana-time-zone", -+ "js-sys", -+ "num-integer", -+ "num-traits 0.2.15", -+ "time 0.1.44", -+ "wasm-bindgen", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "clang-sys" -+version = "1.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" -+dependencies = [ -+ "glob", -+ "libc", -+ "libloading", -+] -+ -+[[package]] -+name = "claxon" -+version = "0.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4bfbf56724aa9eca8afa4fcfadeb479e722935bb2a0900c2d37e0cc477af0688" -+ -+[[package]] -+name = "codespan-reporting" -+version = "0.11.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" -+dependencies = [ -+ "termcolor", -+ "unicode-width", -+] -+ -+[[package]] -+name = "combine" -+version = "4.6.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" -+dependencies = [ -+ "bytes 1.2.1", -+ "memchr", -+] -+ -+[[package]] -+name = "config" -+version = "0.9.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f9107d78ed62b3fa5a86e7d18e647abed48cfd8f8fab6c72f4cdb982d196f7e6" -+dependencies = [ -+ "lazy_static 1.4.0", -+ "nom 4.2.3", -+ "rust-ini", -+ "serde 1.0.147", -+ "serde-hjson", -+ "serde_json", -+ "toml 0.4.10", -+ "yaml-rust", -+] -+ -+[[package]] -+name = "const_fn" -+version = "0.4.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" -+ -+[[package]] -+name = "cookie" -+version = "0.14.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951" -+dependencies = [ -+ "percent-encoding", -+ "time 0.2.27", -+ "version_check 0.9.4", -+] -+ -+[[package]] -+name = "cookie_store" -+version = "0.12.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3818dfca4b0cb5211a659bbcbb94225b7127407b2b135e650d717bfb78ab10d3" -+dependencies = [ -+ "cookie", -+ "idna 0.2.3", -+ "log", -+ "publicsuffix", -+ "serde 1.0.147", -+ "serde_json", -+ "time 0.2.27", -+ "url", -+] -+ -+[[package]] -+name = "core-foundation" -+version = "0.9.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" -+dependencies = [ -+ "core-foundation-sys", -+ "libc", -+] -+ -+[[package]] -+name = "core-foundation-sys" -+version = "0.8.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" -+ -+[[package]] -+name = "coreaudio-rs" -+version = "0.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "11894b20ebfe1ff903cbdc52259693389eea03b94918a2def2c30c3bf227ad88" -+dependencies = [ -+ "bitflags", -+ "coreaudio-sys", -+] -+ -+[[package]] -+name = "coreaudio-sys" -+version = "0.2.11" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1a9444b94b8024feecc29e01a9706c69c1e26bfee480221c90764200cfd778fb" -+dependencies = [ -+ "bindgen", -+] -+ -+[[package]] -+name = "cpal" -+version = "0.13.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "74117836a5124f3629e4b474eed03e479abaf98988b4bb317e29f08cfe0e4116" -+dependencies = [ -+ "alsa", -+ "core-foundation-sys", -+ "coreaudio-rs", -+ "jni", -+ "js-sys", -+ "lazy_static 1.4.0", -+ "libc", -+ "mach", -+ "ndk", -+ "ndk-glue", -+ "nix", -+ "oboe", -+ "parking_lot", -+ "stdweb 0.1.3", -+ "thiserror", -+ "web-sys", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "crc32fast" -+version = "1.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" -+dependencies = [ -+ "cfg-if 1.0.0", -+] -+ -+[[package]] -+name = "cxx" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453" -+dependencies = [ -+ "cc", -+ "cxxbridge-flags", -+ "cxxbridge-macro", -+ "link-cplusplus", -+] -+ -+[[package]] -+name = "cxx-build" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0" -+dependencies = [ -+ "cc", -+ "codespan-reporting", -+ "once_cell", -+ "proc-macro2", -+ "quote", -+ "scratch", -+ "syn", -+] -+ -+[[package]] -+name = "cxxbridge-flags" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71" -+ -+[[package]] -+name = "cxxbridge-macro" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "darling" -+version = "0.13.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c" -+dependencies = [ -+ "darling_core", -+ "darling_macro", -+] -+ -+[[package]] -+name = "darling_core" -+version = "0.13.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610" -+dependencies = [ -+ "fnv", -+ "ident_case", -+ "proc-macro2", -+ "quote", -+ "strsim", -+ "syn", -+] -+ -+[[package]] -+name = "darling_macro" -+version = "0.13.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835" -+dependencies = [ -+ "darling_core", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "dbus" -+version = "0.7.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "add8dd36d6d34a084220eb9fe216d3e230d52b37c31702e1ffda4fb2d4ef950e" -+dependencies = [ -+ "libc", -+ "libdbus-sys", -+] -+ -+[[package]] -+name = "dirs" -+version = "2.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3" -+dependencies = [ -+ "cfg-if 0.1.10", -+ "dirs-sys", -+] -+ -+[[package]] -+name = "dirs-sys" -+version = "0.3.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" -+dependencies = [ -+ "libc", -+ "redox_users", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "discard" -+version = "1.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" -+ -+[[package]] -+name = "dtoa" -+version = "0.4.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" -+ -+[[package]] -+name = "either" -+version = "1.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" -+ -+[[package]] -+name = "encoding_rs" -+version = "0.8.31" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" -+dependencies = [ -+ "cfg-if 1.0.0", -+] -+ -+[[package]] -+name = "failure" -+version = "0.1.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" -+dependencies = [ -+ "backtrace", -+ "failure_derive", -+] -+ -+[[package]] -+name = "failure_derive" -+version = "0.1.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+ "synstructure", -+] -+ -+[[package]] -+name = "fastrand" -+version = "1.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" -+dependencies = [ -+ "instant", -+] -+ -+[[package]] -+name = "flate2" -+version = "1.0.24" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" -+dependencies = [ -+ "crc32fast", -+ "miniz_oxide", -+] -+ -+[[package]] -+name = "fnv" -+version = "1.0.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" -+ -+[[package]] -+name = "foreign-types" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" -+dependencies = [ -+ "foreign-types-shared", -+] -+ -+[[package]] -+name = "foreign-types-shared" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" -+ -+[[package]] -+name = "form_urlencoded" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" -+dependencies = [ -+ "percent-encoding", -+] -+ -+[[package]] -+name = "fuchsia-zircon" -+version = "0.3.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -+dependencies = [ -+ "bitflags", -+ "fuchsia-zircon-sys", -+] -+ -+[[package]] -+name = "fuchsia-zircon-sys" -+version = "0.3.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -+ -+[[package]] -+name = "futures" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0" -+dependencies = [ -+ "futures-channel", -+ "futures-core", -+ "futures-executor", -+ "futures-io", -+ "futures-sink", -+ "futures-task", -+ "futures-util", -+] -+ -+[[package]] -+name = "futures-channel" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed" -+dependencies = [ -+ "futures-core", -+ "futures-sink", -+] -+ -+[[package]] -+name = "futures-core" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac" -+ -+[[package]] -+name = "futures-executor" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2" -+dependencies = [ -+ "futures-core", -+ "futures-task", -+ "futures-util", -+] -+ -+[[package]] -+name = "futures-io" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb" -+ -+[[package]] -+name = "futures-macro" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "futures-sink" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9" -+ -+[[package]] -+name = "futures-task" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea" -+ -+[[package]] -+name = "futures-util" -+version = "0.3.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6" -+dependencies = [ -+ "futures-channel", -+ "futures-core", -+ "futures-io", -+ "futures-macro", -+ "futures-sink", -+ "futures-task", -+ "memchr", -+ "pin-project-lite 0.2.9", -+ "pin-utils", -+ "slab", -+] -+ -+[[package]] -+name = "getrandom" -+version = "0.1.16" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "libc", -+ "wasi 0.9.0+wasi-snapshot-preview1", -+] -+ -+[[package]] -+name = "getrandom" -+version = "0.2.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "libc", -+ "wasi 0.11.0+wasi-snapshot-preview1", -+] -+ -+[[package]] -+name = "gimli" -+version = "0.26.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" -+ -+[[package]] -+name = "glob" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" -+ -+[[package]] -+name = "h2" -+version = "0.2.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5e4728fd124914ad25e99e3d15a9361a879f6620f63cb56bbb08f95abb97a535" -+dependencies = [ -+ "bytes 0.5.6", -+ "fnv", -+ "futures-core", -+ "futures-sink", -+ "futures-util", -+ "http", -+ "indexmap", -+ "slab", -+ "tokio", -+ "tokio-util", -+ "tracing", -+ "tracing-futures", -+] -+ -+[[package]] -+name = "hashbrown" -+version = "0.12.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -+ -+[[package]] -+name = "hermit-abi" -+version = "0.1.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "hex" -+version = "0.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -+ -+[[package]] -+name = "hound" -+version = "3.5.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4d13cdbd5dbb29f9c88095bbdc2590c9cba0d0a1269b983fef6b2cdd7e9f4db1" -+ -+[[package]] -+name = "http" -+version = "0.2.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399" -+dependencies = [ -+ "bytes 1.2.1", -+ "fnv", -+ "itoa 1.0.4", -+] -+ -+[[package]] -+name = "http-body" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "13d5ff830006f7646652e057693569bfe0d51760c0085a071769d142a205111b" -+dependencies = [ -+ "bytes 0.5.6", -+ "http", -+] -+ -+[[package]] -+name = "httparse" -+version = "1.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" -+ -+[[package]] -+name = "httpdate" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47" -+ -+[[package]] -+name = "hyper" -+version = "0.13.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8a6f157065790a3ed2f88679250419b5cdd96e714a0d65f7797fd337186e96bb" -+dependencies = [ -+ "bytes 0.5.6", -+ "futures-channel", -+ "futures-core", -+ "futures-util", -+ "h2", -+ "http", -+ "http-body", -+ "httparse", -+ "httpdate", -+ "itoa 0.4.8", -+ "pin-project", -+ "socket2", -+ "tokio", -+ "tower-service", -+ "tracing", -+ "want", -+] -+ -+[[package]] -+name = "hyper-tls" -+version = "0.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d979acc56dcb5b8dddba3917601745e877576475aa046df3226eabdecef78eed" -+dependencies = [ -+ "bytes 0.5.6", -+ "hyper", -+ "native-tls", -+ "tokio", -+ "tokio-tls", -+] -+ -+[[package]] -+name = "iana-time-zone" -+version = "0.1.53" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" -+dependencies = [ -+ "android_system_properties", -+ "core-foundation-sys", -+ "iana-time-zone-haiku", -+ "js-sys", -+ "wasm-bindgen", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "iana-time-zone-haiku" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" -+dependencies = [ -+ "cxx", -+ "cxx-build", -+] -+ -+[[package]] -+name = "ident_case" -+version = "1.0.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" -+ -+[[package]] -+name = "idna" -+version = "0.2.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" -+dependencies = [ -+ "matches", -+ "unicode-bidi", -+ "unicode-normalization", -+] -+ -+[[package]] -+name = "idna" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" -+dependencies = [ -+ "unicode-bidi", -+ "unicode-normalization", -+] -+ -+[[package]] -+name = "indexmap" -+version = "1.9.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" -+dependencies = [ -+ "autocfg", -+ "hashbrown", -+] -+ -+[[package]] -+name = "instant" -+version = "0.1.12" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" -+dependencies = [ -+ "cfg-if 1.0.0", -+] -+ -+[[package]] -+name = "iovec" -+version = "0.1.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "ipnet" -+version = "2.5.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745" -+ -+[[package]] -+name = "itertools" -+version = "0.8.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484" -+dependencies = [ -+ "either", -+] -+ -+[[package]] -+name = "itoa" -+version = "0.4.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" -+ -+[[package]] -+name = "itoa" -+version = "1.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc" -+ -+[[package]] -+name = "jni" -+version = "0.19.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c6df18c2e3db7e453d3c6ac5b3e9d5182664d28788126d39b91f2d1e22b017ec" -+dependencies = [ -+ "cesu8", -+ "combine", -+ "jni-sys", -+ "log", -+ "thiserror", -+ "walkdir", -+] -+ -+[[package]] -+name = "jni-sys" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" -+ -+[[package]] -+name = "jobserver" -+version = "0.1.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "js-sys" -+version = "0.3.60" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" -+dependencies = [ -+ "wasm-bindgen", -+] -+ -+[[package]] -+name = "kernel32-sys" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -+dependencies = [ -+ "winapi 0.2.8", -+ "winapi-build", -+] -+ -+[[package]] -+name = "lazy_static" -+version = "0.2.11" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" -+ -+[[package]] -+name = "lazy_static" -+version = "1.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -+ -+[[package]] -+name = "lazycell" -+version = "1.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" -+ -+[[package]] -+name = "lewton" -+version = "0.10.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "777b48df9aaab155475a83a7df3070395ea1ac6902f5cd062b8f2b028075c030" -+dependencies = [ -+ "byteorder", -+ "ogg", -+ "tinyvec", -+] -+ -+[[package]] -+name = "libc" -+version = "0.2.137" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" -+ -+[[package]] -+name = "libdbus-sys" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c185b5b7ad900923ef3a8ff594083d4d9b5aea80bb4f32b8342363138c0d456b" -+dependencies = [ -+ "pkg-config", -+] -+ -+[[package]] -+name = "libloading" -+version = "0.7.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "link-cplusplus" -+version = "1.0.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" -+dependencies = [ -+ "cc", -+] -+ -+[[package]] -+name = "linked-hash-map" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6d262045c5b87c0861b3f004610afd0e2c851e2908d08b6c870cbb9d5f494ecd" -+dependencies = [ -+ "serde 0.8.23", -+ "serde_test", -+] -+ -+[[package]] -+name = "linked-hash-map" -+version = "0.5.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" -+ -+[[package]] -+name = "lock_api" -+version = "0.4.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" -+dependencies = [ -+ "autocfg", -+ "scopeguard", -+] -+ -+[[package]] -+name = "log" -+version = "0.4.17" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -+dependencies = [ -+ "cfg-if 1.0.0", -+] -+ -+[[package]] -+name = "log-panics" -+version = "2.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "68f9dd8546191c1850ecf67d22f5ff00a935b890d0e84713159a55495cc2ac5f" -+dependencies = [ -+ "log", -+] -+ -+[[package]] -+name = "mach" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "matches" -+version = "0.1.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" -+ -+[[package]] -+name = "memchr" -+version = "2.5.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" -+ -+[[package]] -+name = "memoffset" -+version = "0.6.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" -+dependencies = [ -+ "autocfg", -+] -+ -+[[package]] -+name = "mime" -+version = "0.3.16" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" -+ -+[[package]] -+name = "mime_guess" -+version = "2.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" -+dependencies = [ -+ "mime", -+ "unicase", -+] -+ -+[[package]] -+name = "minimal-lexical" -+version = "0.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" -+ -+[[package]] -+name = "minimp3" -+version = "0.5.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "985438f75febf74c392071a975a29641b420dd84431135a6e6db721de4b74372" -+dependencies = [ -+ "minimp3-sys", -+ "slice-deque", -+ "thiserror", -+] -+ -+[[package]] -+name = "minimp3-sys" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e21c73734c69dc95696c9ed8926a2b393171d98b3f5f5935686a26a487ab9b90" -+dependencies = [ -+ "cc", -+] -+ -+[[package]] -+name = "miniz_oxide" -+version = "0.5.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" -+dependencies = [ -+ "adler", -+] -+ -+[[package]] -+name = "mio" -+version = "0.6.23" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" -+dependencies = [ -+ "cfg-if 0.1.10", -+ "fuchsia-zircon", -+ "fuchsia-zircon-sys", -+ "iovec", -+ "kernel32-sys", -+ "libc", -+ "log", -+ "miow", -+ "net2", -+ "slab", -+ "winapi 0.2.8", -+] -+ -+[[package]] -+name = "miow" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" -+dependencies = [ -+ "kernel32-sys", -+ "net2", -+ "winapi 0.2.8", -+ "ws2_32-sys", -+] -+ -+[[package]] -+name = "mp3-duration" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "348bdc7300502f0801e5b57c448815713cd843b744ef9bda252a2698fdf90a0f" -+dependencies = [ -+ "thiserror", -+] -+ -+[[package]] -+name = "native-tls" -+version = "0.2.11" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" -+dependencies = [ -+ "lazy_static 1.4.0", -+ "libc", -+ "log", -+ "openssl", -+ "openssl-probe", -+ "openssl-sys", -+ "schannel", -+ "security-framework", -+ "security-framework-sys", -+ "tempfile", -+] -+ -+[[package]] -+name = "ndk" -+version = "0.6.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2032c77e030ddee34a6787a64166008da93f6a352b629261d0fee232b8742dd4" -+dependencies = [ -+ "bitflags", -+ "jni-sys", -+ "ndk-sys", -+ "num_enum", -+ "thiserror", -+] -+ -+[[package]] -+name = "ndk-context" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" -+ -+[[package]] -+name = "ndk-glue" -+version = "0.6.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0d0c4a7b83860226e6b4183edac21851f05d5a51756e97a1144b7f5a6b63e65f" -+dependencies = [ -+ "lazy_static 1.4.0", -+ "libc", -+ "log", -+ "ndk", -+ "ndk-context", -+ "ndk-macro", -+ "ndk-sys", -+] -+ -+[[package]] -+name = "ndk-macro" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0df7ac00c4672f9d5aece54ee3347520b7e20f158656c7db2e6de01902eb7a6c" -+dependencies = [ -+ "darling", -+ "proc-macro-crate", -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "ndk-sys" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6e5a6ae77c8ee183dcbbba6150e2e6b9f3f4196a7666c02a715a95692ec1fa97" -+dependencies = [ -+ "jni-sys", -+] -+ -+[[package]] -+name = "net2" -+version = "0.2.38" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "74d0df99cfcd2530b2e694f6e17e7f37b8e26bb23983ac530c0c97408837c631" -+dependencies = [ -+ "cfg-if 0.1.10", -+ "libc", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "netease_music_tui" -+version = "0.1.3" -+dependencies = [ -+ "base64 0.11.0", -+ "byteorder", -+ "bytes 0.4.12", -+ "chrono", -+ "config", -+ "cpal", -+ "dbus", -+ "dirs", -+ "failure", -+ "futures", -+ "hex", -+ "lazy_static 1.4.0", -+ "log", -+ "log-panics", -+ "mp3-duration", -+ "num-bigint", -+ "openssl", -+ "rand", -+ "regex", -+ "reqwest", -+ "rodio", -+ "serde 1.0.147", -+ "serde_derive", -+ "serde_json", -+ "serde_urlencoded 0.6.1", -+ "simple-logging", -+ "tempfile", -+ "termion", -+ "tokio", -+ "tui", -+ "unicode-width", -+] -+ -+[[package]] -+name = "nix" -+version = "0.23.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6" -+dependencies = [ -+ "bitflags", -+ "cc", -+ "cfg-if 1.0.0", -+ "libc", -+ "memoffset", -+] -+ -+[[package]] -+name = "nom" -+version = "4.2.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6" -+dependencies = [ -+ "memchr", -+ "version_check 0.1.5", -+] -+ -+[[package]] -+name = "nom" -+version = "7.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" -+dependencies = [ -+ "memchr", -+ "minimal-lexical", -+] -+ -+[[package]] -+name = "num-bigint" -+version = "0.2.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" -+dependencies = [ -+ "autocfg", -+ "num-integer", -+ "num-traits 0.2.15", -+] -+ -+[[package]] -+name = "num-derive" -+version = "0.3.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "num-integer" -+version = "0.1.45" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" -+dependencies = [ -+ "autocfg", -+ "num-traits 0.2.15", -+] -+ -+[[package]] -+name = "num-traits" -+version = "0.1.43" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" -+dependencies = [ -+ "num-traits 0.2.15", -+] -+ -+[[package]] -+name = "num-traits" -+version = "0.2.15" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" -+dependencies = [ -+ "autocfg", -+] -+ -+[[package]] -+name = "num_cpus" -+version = "1.14.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" -+dependencies = [ -+ "hermit-abi", -+ "libc", -+] -+ -+[[package]] -+name = "num_enum" -+version = "0.5.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9" -+dependencies = [ -+ "num_enum_derive", -+] -+ -+[[package]] -+name = "num_enum_derive" -+version = "0.5.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce" -+dependencies = [ -+ "proc-macro-crate", -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "numtoa" -+version = "0.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef" -+ -+[[package]] -+name = "object" -+version = "0.29.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" -+dependencies = [ -+ "memchr", -+] -+ -+[[package]] -+name = "oboe" -+version = "0.4.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "27f63c358b4fa0fbcfefd7c8be5cfc39c08ce2389f5325687e7762a48d30a5c1" -+dependencies = [ -+ "jni", -+ "ndk", -+ "ndk-context", -+ "num-derive", -+ "num-traits 0.2.15", -+ "oboe-sys", -+] -+ -+[[package]] -+name = "oboe-sys" -+version = "0.4.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3370abb7372ed744232c12954d920d1a40f1c4686de9e79e800021ef492294bd" -+dependencies = [ -+ "cc", -+] -+ -+[[package]] -+name = "ogg" -+version = "0.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6951b4e8bf21c8193da321bcce9c9dd2e13c858fe078bf9054a288b419ae5d6e" -+dependencies = [ -+ "byteorder", -+] -+ -+[[package]] -+name = "once_cell" -+version = "1.16.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" -+ -+[[package]] -+name = "openssl" -+version = "0.10.42" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "12fc0523e3bd51a692c8850d075d74dc062ccf251c0110668cbd921917118a13" -+dependencies = [ -+ "bitflags", -+ "cfg-if 1.0.0", -+ "foreign-types", -+ "libc", -+ "once_cell", -+ "openssl-macros", -+ "openssl-sys", -+] -+ -+[[package]] -+name = "openssl-macros" -+version = "0.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "openssl-probe" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" -+ -+[[package]] -+name = "openssl-sys" -+version = "0.9.77" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b03b84c3b2d099b81f0953422b4d4ad58761589d0229b5506356afca05a3670a" -+dependencies = [ -+ "autocfg", -+ "cc", -+ "libc", -+ "pkg-config", -+ "vcpkg", -+] -+ -+[[package]] -+name = "parking_lot" -+version = "0.11.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99" -+dependencies = [ -+ "instant", -+ "lock_api", -+ "parking_lot_core", -+] -+ -+[[package]] -+name = "parking_lot_core" -+version = "0.8.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "instant", -+ "libc", -+ "redox_syscall 0.2.16", -+ "smallvec", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "peeking_take_while" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" -+ -+[[package]] -+name = "percent-encoding" -+version = "2.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" -+ -+[[package]] -+name = "pin-project" -+version = "1.0.12" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc" -+dependencies = [ -+ "pin-project-internal", -+] -+ -+[[package]] -+name = "pin-project-internal" -+version = "1.0.12" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "pin-project-lite" -+version = "0.1.12" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" -+ -+[[package]] -+name = "pin-project-lite" -+version = "0.2.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" -+ -+[[package]] -+name = "pin-utils" -+version = "0.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" -+ -+[[package]] -+name = "pkg-config" -+version = "0.3.26" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" -+ -+[[package]] -+name = "ppv-lite86" -+version = "0.2.17" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" -+ -+[[package]] -+name = "proc-macro-crate" -+version = "1.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9" -+dependencies = [ -+ "once_cell", -+ "thiserror", -+ "toml 0.5.9", -+] -+ -+[[package]] -+name = "proc-macro-hack" -+version = "0.5.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" -+ -+[[package]] -+name = "proc-macro2" -+version = "1.0.47" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" -+dependencies = [ -+ "unicode-ident", -+] -+ -+[[package]] -+name = "publicsuffix" -+version = "1.5.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f" -+dependencies = [ -+ "idna 0.2.3", -+ "url", -+] -+ -+[[package]] -+name = "quote" -+version = "1.0.21" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" -+dependencies = [ -+ "proc-macro2", -+] -+ -+[[package]] -+name = "rand" -+version = "0.7.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -+dependencies = [ -+ "getrandom 0.1.16", -+ "libc", -+ "rand_chacha", -+ "rand_core", -+ "rand_hc", -+] -+ -+[[package]] -+name = "rand_chacha" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -+dependencies = [ -+ "ppv-lite86", -+ "rand_core", -+] -+ -+[[package]] -+name = "rand_core" -+version = "0.5.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -+dependencies = [ -+ "getrandom 0.1.16", -+] -+ -+[[package]] -+name = "rand_hc" -+version = "0.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -+dependencies = [ -+ "rand_core", -+] -+ -+[[package]] -+name = "redox_syscall" -+version = "0.1.57" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" -+ -+[[package]] -+name = "redox_syscall" -+version = "0.2.16" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" -+dependencies = [ -+ "bitflags", -+] -+ -+[[package]] -+name = "redox_termios" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8440d8acb4fd3d277125b4bd01a6f38aee8d814b3b5fc09b3f2b825d37d3fe8f" -+dependencies = [ -+ "redox_syscall 0.2.16", -+] -+ -+[[package]] -+name = "redox_users" -+version = "0.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" -+dependencies = [ -+ "getrandom 0.2.8", -+ "redox_syscall 0.2.16", -+ "thiserror", -+] -+ -+[[package]] -+name = "regex" -+version = "1.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" -+dependencies = [ -+ "aho-corasick", -+ "memchr", -+ "regex-syntax", -+] -+ -+[[package]] -+name = "regex-syntax" -+version = "0.6.28" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" -+ -+[[package]] -+name = "remove_dir_all" -+version = "0.5.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -+dependencies = [ -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "reqwest" -+version = "0.10.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0718f81a8e14c4dbb3b34cf23dc6aaf9ab8a0dfec160c534b3dbca1aaa21f47c" -+dependencies = [ -+ "async-compression", -+ "base64 0.13.1", -+ "bytes 0.5.6", -+ "cookie", -+ "cookie_store", -+ "encoding_rs", -+ "futures-core", -+ "futures-util", -+ "http", -+ "http-body", -+ "hyper", -+ "hyper-tls", -+ "ipnet", -+ "js-sys", -+ "lazy_static 1.4.0", -+ "log", -+ "mime", -+ "mime_guess", -+ "native-tls", -+ "percent-encoding", -+ "pin-project-lite 0.2.9", -+ "serde 1.0.147", -+ "serde_urlencoded 0.7.1", -+ "time 0.2.27", -+ "tokio", -+ "tokio-socks", -+ "tokio-tls", -+ "url", -+ "wasm-bindgen", -+ "wasm-bindgen-futures", -+ "web-sys", -+ "winreg", -+] -+ -+[[package]] -+name = "rodio" -+version = "0.15.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ec0939e9f626e6c6f1989adb6226a039c855ca483053f0ee7c98b90e41cf731e" -+dependencies = [ -+ "claxon", -+ "cpal", -+ "hound", -+ "lewton", -+ "minimp3", -+] -+ -+[[package]] -+name = "rust-ini" -+version = "0.13.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2" -+ -+[[package]] -+name = "rustc-demangle" -+version = "0.1.21" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" -+ -+[[package]] -+name = "rustc-hash" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" -+ -+[[package]] -+name = "rustc_version" -+version = "0.2.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -+dependencies = [ -+ "semver", -+] -+ -+[[package]] -+name = "ryu" -+version = "1.0.11" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09" -+ -+[[package]] -+name = "same-file" -+version = "1.0.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" -+dependencies = [ -+ "winapi-util", -+] -+ -+[[package]] -+name = "schannel" -+version = "0.1.20" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2" -+dependencies = [ -+ "lazy_static 1.4.0", -+ "windows-sys", -+] -+ -+[[package]] -+name = "scopeguard" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" -+ -+[[package]] -+name = "scratch" -+version = "1.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" -+ -+[[package]] -+name = "security-framework" -+version = "2.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c" -+dependencies = [ -+ "bitflags", -+ "core-foundation", -+ "core-foundation-sys", -+ "libc", -+ "security-framework-sys", -+] -+ -+[[package]] -+name = "security-framework-sys" -+version = "2.6.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556" -+dependencies = [ -+ "core-foundation-sys", -+ "libc", -+] -+ -+[[package]] -+name = "semver" -+version = "0.9.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -+dependencies = [ -+ "semver-parser", -+] -+ -+[[package]] -+name = "semver-parser" -+version = "0.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" -+ -+[[package]] -+name = "serde" -+version = "0.8.23" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8" -+ -+[[package]] -+name = "serde" -+version = "1.0.147" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965" -+dependencies = [ -+ "serde_derive", -+] -+ -+[[package]] -+name = "serde-hjson" -+version = "0.8.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0b833c5ad67d52ced5f5938b2980f32a9c1c5ef047f0b4fb3127e7a423c76153" -+dependencies = [ -+ "lazy_static 0.2.11", -+ "linked-hash-map 0.3.0", -+ "num-traits 0.1.43", -+ "regex", -+ "serde 0.8.23", -+] -+ -+[[package]] -+name = "serde_derive" -+version = "1.0.147" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "serde_json" -+version = "1.0.88" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8e8b3801309262e8184d9687fb697586833e939767aea0dda89f5a8e650e8bd7" -+dependencies = [ -+ "itoa 1.0.4", -+ "ryu", -+ "serde 1.0.147", -+] -+ -+[[package]] -+name = "serde_test" -+version = "0.8.23" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "110b3dbdf8607ec493c22d5d947753282f3bae73c0f56d322af1e8c78e4c23d5" -+dependencies = [ -+ "serde 0.8.23", -+] -+ -+[[package]] -+name = "serde_urlencoded" -+version = "0.6.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97" -+dependencies = [ -+ "dtoa", -+ "itoa 0.4.8", -+ "serde 1.0.147", -+ "url", -+] -+ -+[[package]] -+name = "serde_urlencoded" -+version = "0.7.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -+dependencies = [ -+ "form_urlencoded", -+ "itoa 1.0.4", -+ "ryu", -+ "serde 1.0.147", -+] -+ -+[[package]] -+name = "sha1" -+version = "0.6.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" -+dependencies = [ -+ "sha1_smol", -+] -+ -+[[package]] -+name = "sha1_smol" -+version = "1.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" -+ -+[[package]] -+name = "shlex" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3" -+ -+[[package]] -+name = "simple-logging" -+version = "2.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b00d48e85675326bb182a2286ea7c1a0b264333ae10f27a937a72be08628b542" -+dependencies = [ -+ "lazy_static 1.4.0", -+ "log", -+ "thread-id", -+] -+ -+[[package]] -+name = "slab" -+version = "0.4.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" -+dependencies = [ -+ "autocfg", -+] -+ -+[[package]] -+name = "slice-deque" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "31ef6ee280cdefba6d2d0b4b78a84a1c1a3f3a4cec98c2d4231c8bc225de0f25" -+dependencies = [ -+ "libc", -+ "mach", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "smallvec" -+version = "1.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" -+ -+[[package]] -+name = "socket2" -+version = "0.3.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "libc", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "standback" -+version = "0.2.17" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" -+dependencies = [ -+ "version_check 0.9.4", -+] -+ -+[[package]] -+name = "stdweb" -+version = "0.1.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ef5430c8e36b713e13b48a9f709cc21e046723fe44ce34587b73a830203b533e" -+ -+[[package]] -+name = "stdweb" -+version = "0.4.20" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" -+dependencies = [ -+ "discard", -+ "rustc_version", -+ "stdweb-derive", -+ "stdweb-internal-macros", -+ "stdweb-internal-runtime", -+ "wasm-bindgen", -+] -+ -+[[package]] -+name = "stdweb-derive" -+version = "0.5.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "serde 1.0.147", -+ "serde_derive", -+ "syn", -+] -+ -+[[package]] -+name = "stdweb-internal-macros" -+version = "0.2.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" -+dependencies = [ -+ "base-x", -+ "proc-macro2", -+ "quote", -+ "serde 1.0.147", -+ "serde_derive", -+ "serde_json", -+ "sha1", -+ "syn", -+] -+ -+[[package]] -+name = "stdweb-internal-runtime" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" -+ -+[[package]] -+name = "strsim" -+version = "0.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" -+ -+[[package]] -+name = "syn" -+version = "1.0.103" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "unicode-ident", -+] -+ -+[[package]] -+name = "synstructure" -+version = "0.12.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+ "unicode-xid", -+] -+ -+[[package]] -+name = "tempfile" -+version = "3.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "fastrand", -+ "libc", -+ "redox_syscall 0.2.16", -+ "remove_dir_all", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "termcolor" -+version = "1.1.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" -+dependencies = [ -+ "winapi-util", -+] -+ -+[[package]] -+name = "termion" -+version = "1.5.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "077185e2eac69c3f8379a4298e1e07cd36beb962290d4a51199acf0fdc10607e" -+dependencies = [ -+ "libc", -+ "numtoa", -+ "redox_syscall 0.2.16", -+ "redox_termios", -+] -+ -+[[package]] -+name = "thiserror" -+version = "1.0.37" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" -+dependencies = [ -+ "thiserror-impl", -+] -+ -+[[package]] -+name = "thiserror-impl" -+version = "1.0.37" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "thread-id" -+version = "3.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c7fbf4c9d56b320106cd64fd024dadfa0be7cb4706725fc44a7d7ce952d820c1" -+dependencies = [ -+ "libc", -+ "redox_syscall 0.1.57", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "time" -+version = "0.1.44" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" -+dependencies = [ -+ "libc", -+ "wasi 0.10.0+wasi-snapshot-preview1", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "time" -+version = "0.2.27" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" -+dependencies = [ -+ "const_fn", -+ "libc", -+ "standback", -+ "stdweb 0.4.20", -+ "time-macros", -+ "version_check 0.9.4", -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "time-macros" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" -+dependencies = [ -+ "proc-macro-hack", -+ "time-macros-impl", -+] -+ -+[[package]] -+name = "time-macros-impl" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" -+dependencies = [ -+ "proc-macro-hack", -+ "proc-macro2", -+ "quote", -+ "standback", -+ "syn", -+] -+ -+[[package]] -+name = "tinyvec" -+version = "1.6.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" -+dependencies = [ -+ "tinyvec_macros", -+] -+ -+[[package]] -+name = "tinyvec_macros" -+version = "0.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" -+ -+[[package]] -+name = "tokio" -+version = "0.2.25" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6703a273949a90131b290be1fe7b039d0fc884aa1935860dfcbe056f28cd8092" -+dependencies = [ -+ "bytes 0.5.6", -+ "fnv", -+ "futures-core", -+ "iovec", -+ "lazy_static 1.4.0", -+ "memchr", -+ "mio", -+ "num_cpus", -+ "pin-project-lite 0.1.12", -+ "slab", -+ "tokio-macros", -+] -+ -+[[package]] -+name = "tokio-macros" -+version = "0.2.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e44da00bfc73a25f814cd8d7e57a68a5c31b74b3152a0a1d1f590c97ed06265a" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "tokio-socks" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d611fd5d241872372d52a0a3d309c52d0b95a6a67671a6c8f7ab2c4a37fb2539" -+dependencies = [ -+ "bytes 0.4.12", -+ "either", -+ "futures", -+ "thiserror", -+ "tokio", -+] -+ -+[[package]] -+name = "tokio-tls" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9a70f4fcd7b3b24fb194f837560168208f669ca8cb70d0c4b862944452396343" -+dependencies = [ -+ "native-tls", -+ "tokio", -+] -+ -+[[package]] -+name = "tokio-util" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "be8242891f2b6cbef26a2d7e8605133c2c554cd35b3e4948ea892d6d68436499" -+dependencies = [ -+ "bytes 0.5.6", -+ "futures-core", -+ "futures-sink", -+ "log", -+ "pin-project-lite 0.1.12", -+ "tokio", -+] -+ -+[[package]] -+name = "toml" -+version = "0.4.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f" -+dependencies = [ -+ "serde 1.0.147", -+] -+ -+[[package]] -+name = "toml" -+version = "0.5.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7" -+dependencies = [ -+ "serde 1.0.147", -+] -+ -+[[package]] -+name = "tower-service" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" -+ -+[[package]] -+name = "tracing" -+version = "0.1.37" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "log", -+ "pin-project-lite 0.2.9", -+ "tracing-core", -+] -+ -+[[package]] -+name = "tracing-core" -+version = "0.1.30" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" -+dependencies = [ -+ "once_cell", -+] -+ -+[[package]] -+name = "tracing-futures" -+version = "0.2.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" -+dependencies = [ -+ "pin-project", -+ "tracing", -+] -+ -+[[package]] -+name = "try-lock" -+version = "0.2.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" -+ -+[[package]] -+name = "tui" -+version = "0.6.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "73b422ff4986065d33272b587907654f918a3fe8702786a8110bf68dede0d8ee" -+dependencies = [ -+ "bitflags", -+ "cassowary", -+ "either", -+ "itertools", -+ "log", -+ "termion", -+ "unicode-segmentation", -+ "unicode-width", -+] -+ -+[[package]] -+name = "unicase" -+version = "2.6.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" -+dependencies = [ -+ "version_check 0.9.4", -+] -+ -+[[package]] -+name = "unicode-bidi" -+version = "0.3.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" -+ -+[[package]] -+name = "unicode-ident" -+version = "1.0.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" -+ -+[[package]] -+name = "unicode-normalization" -+version = "0.1.22" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" -+dependencies = [ -+ "tinyvec", -+] -+ -+[[package]] -+name = "unicode-segmentation" -+version = "1.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a" -+ -+[[package]] -+name = "unicode-width" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" -+ -+[[package]] -+name = "unicode-xid" -+version = "0.2.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" -+ -+[[package]] -+name = "url" -+version = "2.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" -+dependencies = [ -+ "form_urlencoded", -+ "idna 0.3.0", -+ "percent-encoding", -+] -+ -+[[package]] -+name = "vcpkg" -+version = "0.2.15" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" -+ -+[[package]] -+name = "version_check" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd" -+ -+[[package]] -+name = "version_check" -+version = "0.9.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" -+ -+[[package]] -+name = "walkdir" -+version = "2.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56" -+dependencies = [ -+ "same-file", -+ "winapi 0.3.9", -+ "winapi-util", -+] -+ -+[[package]] -+name = "want" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" -+dependencies = [ -+ "log", -+ "try-lock", -+] -+ -+[[package]] -+name = "wasi" -+version = "0.9.0+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" -+ -+[[package]] -+name = "wasi" -+version = "0.10.0+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" -+ -+[[package]] -+name = "wasi" -+version = "0.11.0+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" -+ -+[[package]] -+name = "wasm-bindgen" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "serde 1.0.147", -+ "serde_json", -+ "wasm-bindgen-macro", -+] -+ -+[[package]] -+name = "wasm-bindgen-backend" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" -+dependencies = [ -+ "bumpalo", -+ "log", -+ "once_cell", -+ "proc-macro2", -+ "quote", -+ "syn", -+ "wasm-bindgen-shared", -+] -+ -+[[package]] -+name = "wasm-bindgen-futures" -+version = "0.4.33" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d" -+dependencies = [ -+ "cfg-if 1.0.0", -+ "js-sys", -+ "wasm-bindgen", -+ "web-sys", -+] -+ -+[[package]] -+name = "wasm-bindgen-macro" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" -+dependencies = [ -+ "quote", -+ "wasm-bindgen-macro-support", -+] -+ -+[[package]] -+name = "wasm-bindgen-macro-support" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+ "wasm-bindgen-backend", -+ "wasm-bindgen-shared", -+] -+ -+[[package]] -+name = "wasm-bindgen-shared" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" -+ -+[[package]] -+name = "web-sys" -+version = "0.3.60" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" -+dependencies = [ -+ "js-sys", -+ "wasm-bindgen", -+] -+ -+[[package]] -+name = "winapi" -+version = "0.2.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -+ -+[[package]] -+name = "winapi" -+version = "0.3.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -+dependencies = [ -+ "winapi-i686-pc-windows-gnu", -+ "winapi-x86_64-pc-windows-gnu", -+] -+ -+[[package]] -+name = "winapi-build" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" -+ -+[[package]] -+name = "winapi-i686-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -+ -+[[package]] -+name = "winapi-util" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" -+dependencies = [ -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "winapi-x86_64-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -+ -+[[package]] -+name = "windows-sys" -+version = "0.36.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2" -+dependencies = [ -+ "windows_aarch64_msvc", -+ "windows_i686_gnu", -+ "windows_i686_msvc", -+ "windows_x86_64_gnu", -+ "windows_x86_64_msvc", -+] -+ -+[[package]] -+name = "windows_aarch64_msvc" -+version = "0.36.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47" -+ -+[[package]] -+name = "windows_i686_gnu" -+version = "0.36.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6" -+ -+[[package]] -+name = "windows_i686_msvc" -+version = "0.36.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024" -+ -+[[package]] -+name = "windows_x86_64_gnu" -+version = "0.36.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1" -+ -+[[package]] -+name = "windows_x86_64_msvc" -+version = "0.36.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680" -+ -+[[package]] -+name = "winreg" -+version = "0.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0120db82e8a1e0b9fb3345a539c478767c0048d842860994d96113d5b667bd69" -+dependencies = [ -+ "winapi 0.3.9", -+] -+ -+[[package]] -+name = "ws2_32-sys" -+version = "0.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -+dependencies = [ -+ "winapi 0.2.8", -+ "winapi-build", -+] -+ -+[[package]] -+name = "yaml-rust" -+version = "0.4.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" -+dependencies = [ -+ "linked-hash-map 0.5.6", -+] diff --git a/pkgs/applications/audio/netease-music-tui/default.nix b/pkgs/applications/audio/netease-music-tui/default.nix index 90d645804b77..4449a8907a20 100644 --- a/pkgs/applications/audio/netease-music-tui/default.nix +++ b/pkgs/applications/audio/netease-music-tui/default.nix @@ -11,7 +11,13 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-+zRXihWg65DtyX3yD04CsW8aXIvNph36PW2veeg36lg="; }; - cargoPatches = [ ./cargo-lock.patch ]; + cargoLock = { + lockFile = ./Cargo.lock; + }; + + postPatch = '' + ln -s ${./Cargo.lock} Cargo.lock + ''; nativeBuildInputs = [ pkg-config ]; buildInputs = [ alsa-lib openssl ]; From 73b03b8c0ea0c9580c20c6be08729181abb9e410 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 21 Feb 2023 21:01:03 -0500 Subject: [PATCH 109/178] netease-music-tui: fix Cargo.lock update script --- .../netease-music-tui/update-cargo-lock.sh | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) mode change 100644 => 100755 pkgs/applications/audio/netease-music-tui/update-cargo-lock.sh diff --git a/pkgs/applications/audio/netease-music-tui/update-cargo-lock.sh b/pkgs/applications/audio/netease-music-tui/update-cargo-lock.sh old mode 100644 new mode 100755 index b7ca4216ace5..dc8a1bf3e468 --- a/pkgs/applications/audio/netease-music-tui/update-cargo-lock.sh +++ b/pkgs/applications/audio/netease-music-tui/update-cargo-lock.sh @@ -1,20 +1,17 @@ -#!nix-shell +#!/usr/bin/env nix-shell #!nix-shell -i bash -p coreutils gnugrep git cargo # This updates cargo-lock.patch for the netease-music-tui version listed in # default.nix. -set -eu -o verbose +set -euo pipefail -here=$PWD -version=$(cat default.nix | grep '^ version = "' | cut -d '"' -f 2) +here=$(dirname "$0") +version=$(grep '^ version = "' "$here/default.nix" | cut -d '"' -f 2) checkout=$(mktemp -d) -git clone -b "$version" --depth=1 https://github.com/betta-cyber/netease-music-tui "$checkout" -cd "$checkout" +git clone -b "v$version" --depth=1 https://github.com/betta-cyber/netease-music-tui "$checkout" -cargo generate-lockfile -git add -f Cargo.lock -git diff HEAD -- Cargo.lock > "$here"/cargo-lock.patch +cargo generate-lockfile --manifest-path "$checkout/Cargo.toml" +cp "$checkout/Cargo.lock" "$here" -cd "$here" rm -rf "$checkout" From 01181276d7e23ebfa7abc7289d3206a0519d9e13 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 21 Feb 2023 21:18:24 -0500 Subject: [PATCH 110/178] itm-tools: replace patch with Cargo.lock https://github.com/NixOS/nixpkgs/pull/217084 plans to migrate Rust packages to use `importCargoLock`, but the migration script cannot handle `cargoPatches`: https://github.com/NixOS/nixpkgs/pull/217084#discussion_r1111253151 --- .../tools/misc/itm-tools/Cargo.lock | 315 +++++++++++++++++ .../tools/misc/itm-tools/cargo-lock.patch | 321 ------------------ .../tools/misc/itm-tools/default.nix | 13 +- 3 files changed, 325 insertions(+), 324 deletions(-) create mode 100644 pkgs/development/tools/misc/itm-tools/Cargo.lock delete mode 100644 pkgs/development/tools/misc/itm-tools/cargo-lock.patch diff --git a/pkgs/development/tools/misc/itm-tools/Cargo.lock b/pkgs/development/tools/misc/itm-tools/Cargo.lock new file mode 100644 index 000000000000..d9d39e519d22 --- /dev/null +++ b/pkgs/development/tools/misc/itm-tools/Cargo.lock @@ -0,0 +1,315 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "addr2line" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "602d785912f476e480434627e8732e6766b760c045bbf897d9dfaa9f4fbd399c" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler32" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "567b077b825e468cc974f0020d4082ee6e03132512f207ef1a02fd5d00d1f32d" + +[[package]] +name = "ansi_term" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +dependencies = [ + "winapi", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi", + "libc", + "winapi", +] + +[[package]] +name = "backtrace" +version = "0.3.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05100821de9e028f12ae3d189176b41ee198341eb8f369956407fea2f5cc666c" +dependencies = [ + "addr2line", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" + +[[package]] +name = "byteorder" +version = "1.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" + +[[package]] +name = "cfg-if" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" + +[[package]] +name = "clap" +version = "2.33.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129" +dependencies = [ + "ansi_term", + "atty", + "bitflags", + "strsim", + "textwrap", + "unicode-width", + "vec_map", +] + +[[package]] +name = "either" +version = "1.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" + +[[package]] +name = "exitfailure" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ff5bd832af37f366c6c194d813a11cd90ac484f124f079294f28e357ae40515" +dependencies = [ + "failure", +] + +[[package]] +name = "failure" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" +dependencies = [ + "backtrace", + "failure_derive", +] + +[[package]] +name = "failure_derive" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "gimli" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcc8e0c9bce37868955864dbecd2b1ab2bdf967e6f28066d65aaac620444b65c" + +[[package]] +name = "hermit-abi" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9" +dependencies = [ + "libc", +] + +[[package]] +name = "itm" +version = "0.4.0" +source = "git+https://github.com/rust-embedded/itm#5dd476d03de0738062a876fd3845900ab04833a4" +dependencies = [ + "byteorder", + "either", + "thiserror", +] + +[[package]] +name = "itm-tools" +version = "0.1.0" +dependencies = [ + "clap", + "exitfailure", + "failure", + "itm", + "rustc-demangle", + "xmas-elf", +] + +[[package]] +name = "libc" +version = "0.2.71" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" + +[[package]] +name = "miniz_oxide" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" +dependencies = [ + "adler32", +] + +[[package]] +name = "object" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5" + +[[package]] +name = "proc-macro2" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa" +dependencies = [ + "unicode-xid", +] + +[[package]] +name = "quote" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" + +[[package]] +name = "strsim" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + +[[package]] +name = "syn" +version = "1.0.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8d5d96e8cbb005d6959f119f773bfaebb5684296108fb32600c00cde305b2cd" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "synstructure" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "unicode-xid", +] + +[[package]] +name = "textwrap" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "thiserror" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "unicode-width" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" + +[[package]] +name = "unicode-xid" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" + +[[package]] +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "xmas-elf" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22678df5df766e8d1e5d609da69f0c3132d794edf6ab5e75e7abcd2270d4cf58" +dependencies = [ + "zero", +] + +[[package]] +name = "zero" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f1bc8a6b2005884962297587045002d8cfb8dcec9db332f4ca216ddc5de82c5" diff --git a/pkgs/development/tools/misc/itm-tools/cargo-lock.patch b/pkgs/development/tools/misc/itm-tools/cargo-lock.patch deleted file mode 100644 index 1559510cd9f1..000000000000 --- a/pkgs/development/tools/misc/itm-tools/cargo-lock.patch +++ /dev/null @@ -1,321 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -new file mode 100644 -index 0000000..d9d39e5 ---- /dev/null -+++ b/Cargo.lock -@@ -0,0 +1,315 @@ -+# This file is automatically @generated by Cargo. -+# It is not intended for manual editing. -+[[package]] -+name = "addr2line" -+version = "0.12.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "602d785912f476e480434627e8732e6766b760c045bbf897d9dfaa9f4fbd399c" -+dependencies = [ -+ "gimli", -+] -+ -+[[package]] -+name = "adler32" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "567b077b825e468cc974f0020d4082ee6e03132512f207ef1a02fd5d00d1f32d" -+ -+[[package]] -+name = "ansi_term" -+version = "0.11.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" -+dependencies = [ -+ "winapi", -+] -+ -+[[package]] -+name = "atty" -+version = "0.2.14" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -+dependencies = [ -+ "hermit-abi", -+ "libc", -+ "winapi", -+] -+ -+[[package]] -+name = "backtrace" -+version = "0.3.49" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "05100821de9e028f12ae3d189176b41ee198341eb8f369956407fea2f5cc666c" -+dependencies = [ -+ "addr2line", -+ "cfg-if", -+ "libc", -+ "miniz_oxide", -+ "object", -+ "rustc-demangle", -+] -+ -+[[package]] -+name = "bitflags" -+version = "1.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -+ -+[[package]] -+name = "byteorder" -+version = "1.3.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" -+ -+[[package]] -+name = "cfg-if" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" -+ -+[[package]] -+name = "clap" -+version = "2.33.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129" -+dependencies = [ -+ "ansi_term", -+ "atty", -+ "bitflags", -+ "strsim", -+ "textwrap", -+ "unicode-width", -+ "vec_map", -+] -+ -+[[package]] -+name = "either" -+version = "1.5.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" -+ -+[[package]] -+name = "exitfailure" -+version = "0.5.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2ff5bd832af37f366c6c194d813a11cd90ac484f124f079294f28e357ae40515" -+dependencies = [ -+ "failure", -+] -+ -+[[package]] -+name = "failure" -+version = "0.1.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" -+dependencies = [ -+ "backtrace", -+ "failure_derive", -+] -+ -+[[package]] -+name = "failure_derive" -+version = "0.1.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+ "synstructure", -+] -+ -+[[package]] -+name = "gimli" -+version = "0.21.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bcc8e0c9bce37868955864dbecd2b1ab2bdf967e6f28066d65aaac620444b65c" -+ -+[[package]] -+name = "hermit-abi" -+version = "0.1.15" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3deed196b6e7f9e44a2ae8d94225d80302d81208b1bb673fd21fe634645c85a9" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "itm" -+version = "0.4.0" -+source = "git+https://github.com/rust-embedded/itm#5dd476d03de0738062a876fd3845900ab04833a4" -+dependencies = [ -+ "byteorder", -+ "either", -+ "thiserror", -+] -+ -+[[package]] -+name = "itm-tools" -+version = "0.1.0" -+dependencies = [ -+ "clap", -+ "exitfailure", -+ "failure", -+ "itm", -+ "rustc-demangle", -+ "xmas-elf", -+] -+ -+[[package]] -+name = "libc" -+version = "0.2.71" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49" -+ -+[[package]] -+name = "miniz_oxide" -+version = "0.3.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435" -+dependencies = [ -+ "adler32", -+] -+ -+[[package]] -+name = "object" -+version = "0.20.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5" -+ -+[[package]] -+name = "proc-macro2" -+version = "1.0.18" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa" -+dependencies = [ -+ "unicode-xid", -+] -+ -+[[package]] -+name = "quote" -+version = "1.0.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37" -+dependencies = [ -+ "proc-macro2", -+] -+ -+[[package]] -+name = "rustc-demangle" -+version = "0.1.16" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" -+ -+[[package]] -+name = "strsim" -+version = "0.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -+ -+[[package]] -+name = "syn" -+version = "1.0.33" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e8d5d96e8cbb005d6959f119f773bfaebb5684296108fb32600c00cde305b2cd" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "unicode-xid", -+] -+ -+[[package]] -+name = "synstructure" -+version = "0.12.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+ "unicode-xid", -+] -+ -+[[package]] -+name = "textwrap" -+version = "0.11.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -+dependencies = [ -+ "unicode-width", -+] -+ -+[[package]] -+name = "thiserror" -+version = "1.0.20" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08" -+dependencies = [ -+ "thiserror-impl", -+] -+ -+[[package]] -+name = "thiserror-impl" -+version = "1.0.20" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "unicode-width" -+version = "0.1.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" -+ -+[[package]] -+name = "unicode-xid" -+version = "0.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564" -+ -+[[package]] -+name = "vec_map" -+version = "0.8.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" -+ -+[[package]] -+name = "winapi" -+version = "0.3.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -+dependencies = [ -+ "winapi-i686-pc-windows-gnu", -+ "winapi-x86_64-pc-windows-gnu", -+] -+ -+[[package]] -+name = "winapi-i686-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -+ -+[[package]] -+name = "winapi-x86_64-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -+ -+[[package]] -+name = "xmas-elf" -+version = "0.6.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "22678df5df766e8d1e5d609da69f0c3132d794edf6ab5e75e7abcd2270d4cf58" -+dependencies = [ -+ "zero", -+] -+ -+[[package]] -+name = "zero" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5f1bc8a6b2005884962297587045002d8cfb8dcec9db332f4ca216ddc5de82c5" diff --git a/pkgs/development/tools/misc/itm-tools/default.nix b/pkgs/development/tools/misc/itm-tools/default.nix index 0abdd0179013..7f027a217327 100644 --- a/pkgs/development/tools/misc/itm-tools/default.nix +++ b/pkgs/development/tools/misc/itm-tools/default.nix @@ -11,12 +11,19 @@ rustPlatform.buildRustPackage rec { sha256 = "19xkjym0i7y52cfhvis49c59nzvgw4906cd8bkz8ka38mbgfqgiy"; }; - cargoPatches = [ ./cargo-lock.patch ]; - - cargoSha256 = "1hqv530x8k4rf9zzyl5p5z58bymk1p4qwrcxs21gr0zm2hqjlxy4"; + cargoLock = { + lockFile = ./Cargo.lock; + outputHashes = { + "itm-0.4.0" = "sha256-T61f1WvxEMhI5bzp8FuMYWiG1YOPJvWuBJfK/gjuNKI="; + }; + }; nativeBuildInputs = [ pkg-config ]; + postPatch = '' + ln -s ${./Cargo.lock} Cargo.lock + ''; + doCheck = false; meta = with lib; { From 5f92b1a96cda7a91208c35f08aaa2a4fffe7349f Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 21 Feb 2023 21:21:51 -0500 Subject: [PATCH 111/178] ethabi: replace patch with Cargo.lock https://github.com/NixOS/nixpkgs/pull/217084 plans to migrate Rust packages to use `importCargoLock`, but the migration script cannot handle `cargoPatches`: https://github.com/NixOS/nixpkgs/pull/217084#discussion_r1111253151 --- .../blockchains/ethabi/Cargo.lock | 677 +++++++++++++++++ .../blockchains/ethabi/add-Cargo-lock.patch | 683 ------------------ .../blockchains/ethabi/default.nix | 12 +- 3 files changed, 684 insertions(+), 688 deletions(-) create mode 100644 pkgs/applications/blockchains/ethabi/Cargo.lock delete mode 100644 pkgs/applications/blockchains/ethabi/add-Cargo-lock.patch diff --git a/pkgs/applications/blockchains/ethabi/Cargo.lock b/pkgs/applications/blockchains/ethabi/Cargo.lock new file mode 100644 index 000000000000..05e3f0fef1d9 --- /dev/null +++ b/pkgs/applications/blockchains/ethabi/Cargo.lock @@ -0,0 +1,677 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "ansi_term" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" +dependencies = [ + "winapi", +] + +[[package]] +name = "anyhow" +version = "1.0.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b" + +[[package]] +name = "arrayvec" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi", + "libc", + "winapi", +] + +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" + +[[package]] +name = "bitvec" +version = "0.17.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c" +dependencies = [ + "either", + "radium", +] + +[[package]] +name = "block-buffer" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" +dependencies = [ + "block-padding", + "generic-array", +] + +[[package]] +name = "block-padding" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" + +[[package]] +name = "byte-slice-cast" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "bytes" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "clap" +version = "2.33.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" +dependencies = [ + "ansi_term", + "atty", + "bitflags", + "strsim", + "textwrap", + "unicode-width", + "vec_map", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "digest" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +dependencies = [ + "generic-array", +] + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "ethabi" +version = "13.0.0" +dependencies = [ + "anyhow", + "ethereum-types", + "hex", + "hex-literal", + "paste", + "serde", + "serde_json", + "sha3", + "thiserror", + "uint", +] + +[[package]] +name = "ethabi-cli" +version = "13.0.0" +dependencies = [ + "anyhow", + "ethabi", + "hex", + "itertools", + "sha3", + "structopt", +] + +[[package]] +name = "ethabi-contract" +version = "11.0.0" + +[[package]] +name = "ethabi-derive" +version = "13.0.0" +dependencies = [ + "anyhow", + "ethabi", + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "ethabi-tests" +version = "0.1.1" +dependencies = [ + "ethabi", + "ethabi-contract", + "ethabi-derive", + "hex", + "hex-literal", +] + +[[package]] +name = "ethbloom" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22a621dcebea74f2a6f2002d0a885c81ccf6cbdf86760183316a7722b5707ca4" +dependencies = [ + "crunchy", + "fixed-hash", + "impl-rlp", + "impl-serde", + "tiny-keccak", +] + +[[package]] +name = "ethereum-types" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05dc5f0df4915fa6dff7f975a8366ecfaaa8959c74235469495153e7bb1b280e" +dependencies = [ + "ethbloom", + "fixed-hash", + "impl-rlp", + "impl-serde", + "primitive-types", + "uint", +] + +[[package]] +name = "fixed-hash" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" +dependencies = [ + "byteorder", + "rand", + "rustc-hex", + "static_assertions", +] + +[[package]] +name = "generic-array" +version = "0.14.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "heck" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "hermit-abi" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" +dependencies = [ + "libc", +] + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hex-literal" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5af1f635ef1bc545d78392b136bfe1c9809e029023c84a3638a864a10b8819c8" + +[[package]] +name = "impl-codec" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53" +dependencies = [ + "parity-scale-codec", +] + +[[package]] +name = "impl-rlp" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" +dependencies = [ + "rlp", +] + +[[package]] +name = "impl-serde" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b47ca4d2b6931707a55fce5cf66aff80e2178c8b63bbb4ecb5695cbc870ddf6f" +dependencies = [ + "serde", +] + +[[package]] +name = "itertools" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" + +[[package]] +name = "keccak" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.94" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e" + +[[package]] +name = "opaque-debug" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" + +[[package]] +name = "parity-scale-codec" +version = "1.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4b26b16c7687c3075982af47719e481815df30bc544f7a6690763a25ca16e9d" +dependencies = [ + "arrayvec", + "bitvec", + "byte-slice-cast", + "serde", +] + +[[package]] +name = "paste" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58" + +[[package]] +name = "ppv-lite86" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" + +[[package]] +name = "primitive-types" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b3824ae2c5e27160113b9e029a10ec9e3f0237bad8029f69c7724393c9fdefd8" +dependencies = [ + "fixed-hash", + "impl-codec", + "impl-rlp", + "impl-serde", + "uint", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro2" +version = "1.0.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec" +dependencies = [ + "unicode-xid", +] + +[[package]] +name = "quote" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "radium" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac" + +[[package]] +name = "rand" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rlp" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e54369147e3e7796c9b885c7304db87ca3d09a0a98f72843d532868675bbfba8" +dependencies = [ + "bytes", + "rustc-hex", +] + +[[package]] +name = "rustc-hex" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "serde" +version = "1.0.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.125" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "sha3" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" +dependencies = [ + "block-buffer", + "digest", + "keccak", + "opaque-debug", +] + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "strsim" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" + +[[package]] +name = "structopt" +version = "0.3.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5277acd7ee46e63e5168a80734c9f6ee81b1367a7d8772a2d765df2a3705d28c" +dependencies = [ + "clap", + "lazy_static", + "structopt-derive", +] + +[[package]] +name = "structopt-derive" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ba9cdfda491b814720b6b06e0cac513d922fc407582032e8706e9f137976f90" +dependencies = [ + "heck", + "proc-macro-error", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "syn" +version = "1.0.72" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "textwrap" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" +dependencies = [ + "unicode-width", +] + +[[package]] +name = "thiserror" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tiny-keccak" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" +dependencies = [ + "crunchy", +] + +[[package]] +name = "typenum" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06" + +[[package]] +name = "uint" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e11fe9a9348741cf134085ad57c249508345fe16411b3d7fb4ff2da2f1d6382e" +dependencies = [ + "byteorder", + "crunchy", + "hex", + "static_assertions", +] + +[[package]] +name = "unicode-segmentation" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796" + +[[package]] +name = "unicode-width" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" + +[[package]] +name = "unicode-xid" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" + +[[package]] +name = "vec_map" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "wasi" +version = "0.10.2+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/pkgs/applications/blockchains/ethabi/add-Cargo-lock.patch b/pkgs/applications/blockchains/ethabi/add-Cargo-lock.patch deleted file mode 100644 index 57725d28288a..000000000000 --- a/pkgs/applications/blockchains/ethabi/add-Cargo-lock.patch +++ /dev/null @@ -1,683 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -new file mode 100644 -index 0000000..05e3f0f ---- /dev/null -+++ b/Cargo.lock -@@ -0,0 +1,677 @@ -+# This file is automatically @generated by Cargo. -+# It is not intended for manual editing. -+[[package]] -+name = "ansi_term" -+version = "0.11.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b" -+dependencies = [ -+ "winapi", -+] -+ -+[[package]] -+name = "anyhow" -+version = "1.0.40" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "28b2cd92db5cbd74e8e5028f7e27dd7aa3090e89e4f2a197cc7c8dfb69c7063b" -+ -+[[package]] -+name = "arrayvec" -+version = "0.5.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" -+ -+[[package]] -+name = "atty" -+version = "0.2.14" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -+dependencies = [ -+ "hermit-abi", -+ "libc", -+ "winapi", -+] -+ -+[[package]] -+name = "bitflags" -+version = "1.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" -+ -+[[package]] -+name = "bitvec" -+version = "0.17.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "41262f11d771fd4a61aa3ce019fca363b4b6c282fca9da2a31186d3965a47a5c" -+dependencies = [ -+ "either", -+ "radium", -+] -+ -+[[package]] -+name = "block-buffer" -+version = "0.9.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" -+dependencies = [ -+ "block-padding", -+ "generic-array", -+] -+ -+[[package]] -+name = "block-padding" -+version = "0.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" -+ -+[[package]] -+name = "byte-slice-cast" -+version = "0.3.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b0a5e3906bcbf133e33c1d4d95afc664ad37fbdb9f6568d8043e7ea8c27d93d3" -+ -+[[package]] -+name = "byteorder" -+version = "1.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -+ -+[[package]] -+name = "bytes" -+version = "1.0.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040" -+ -+[[package]] -+name = "cfg-if" -+version = "1.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -+ -+[[package]] -+name = "clap" -+version = "2.33.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "37e58ac78573c40708d45522f0d80fa2f01cc4f9b4e2bf749807255454312002" -+dependencies = [ -+ "ansi_term", -+ "atty", -+ "bitflags", -+ "strsim", -+ "textwrap", -+ "unicode-width", -+ "vec_map", -+] -+ -+[[package]] -+name = "crunchy" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" -+ -+[[package]] -+name = "digest" -+version = "0.9.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" -+dependencies = [ -+ "generic-array", -+] -+ -+[[package]] -+name = "either" -+version = "1.6.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" -+ -+[[package]] -+name = "ethabi" -+version = "13.0.0" -+dependencies = [ -+ "anyhow", -+ "ethereum-types", -+ "hex", -+ "hex-literal", -+ "paste", -+ "serde", -+ "serde_json", -+ "sha3", -+ "thiserror", -+ "uint", -+] -+ -+[[package]] -+name = "ethabi-cli" -+version = "13.0.0" -+dependencies = [ -+ "anyhow", -+ "ethabi", -+ "hex", -+ "itertools", -+ "sha3", -+ "structopt", -+] -+ -+[[package]] -+name = "ethabi-contract" -+version = "11.0.0" -+ -+[[package]] -+name = "ethabi-derive" -+version = "13.0.0" -+dependencies = [ -+ "anyhow", -+ "ethabi", -+ "heck", -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "ethabi-tests" -+version = "0.1.1" -+dependencies = [ -+ "ethabi", -+ "ethabi-contract", -+ "ethabi-derive", -+ "hex", -+ "hex-literal", -+] -+ -+[[package]] -+name = "ethbloom" -+version = "0.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "22a621dcebea74f2a6f2002d0a885c81ccf6cbdf86760183316a7722b5707ca4" -+dependencies = [ -+ "crunchy", -+ "fixed-hash", -+ "impl-rlp", -+ "impl-serde", -+ "tiny-keccak", -+] -+ -+[[package]] -+name = "ethereum-types" -+version = "0.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "05dc5f0df4915fa6dff7f975a8366ecfaaa8959c74235469495153e7bb1b280e" -+dependencies = [ -+ "ethbloom", -+ "fixed-hash", -+ "impl-rlp", -+ "impl-serde", -+ "primitive-types", -+ "uint", -+] -+ -+[[package]] -+name = "fixed-hash" -+version = "0.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cfcf0ed7fe52a17a03854ec54a9f76d6d84508d1c0e66bc1793301c73fc8493c" -+dependencies = [ -+ "byteorder", -+ "rand", -+ "rustc-hex", -+ "static_assertions", -+] -+ -+[[package]] -+name = "generic-array" -+version = "0.14.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817" -+dependencies = [ -+ "typenum", -+ "version_check", -+] -+ -+[[package]] -+name = "getrandom" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c9495705279e7140bf035dde1f6e750c162df8b625267cd52cc44e0b156732c8" -+dependencies = [ -+ "cfg-if", -+ "libc", -+ "wasi", -+] -+ -+[[package]] -+name = "heck" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "87cbf45460356b7deeb5e3415b5563308c0a9b057c85e12b06ad551f98d0a6ac" -+dependencies = [ -+ "unicode-segmentation", -+] -+ -+[[package]] -+name = "hermit-abi" -+version = "0.1.18" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "hex" -+version = "0.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" -+ -+[[package]] -+name = "hex-literal" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5af1f635ef1bc545d78392b136bfe1c9809e029023c84a3638a864a10b8819c8" -+ -+[[package]] -+name = "impl-codec" -+version = "0.4.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1be51a921b067b0eaca2fad532d9400041561aa922221cc65f95a85641c6bf53" -+dependencies = [ -+ "parity-scale-codec", -+] -+ -+[[package]] -+name = "impl-rlp" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f28220f89297a075ddc7245cd538076ee98b01f2a9c23a53a4f1105d5a322808" -+dependencies = [ -+ "rlp", -+] -+ -+[[package]] -+name = "impl-serde" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b47ca4d2b6931707a55fce5cf66aff80e2178c8b63bbb4ecb5695cbc870ddf6f" -+dependencies = [ -+ "serde", -+] -+ -+[[package]] -+name = "itertools" -+version = "0.9.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b" -+dependencies = [ -+ "either", -+] -+ -+[[package]] -+name = "itoa" -+version = "0.4.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" -+ -+[[package]] -+name = "keccak" -+version = "0.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "67c21572b4949434e4fc1e1978b99c5f77064153c59d998bf13ecd96fb5ecba7" -+ -+[[package]] -+name = "lazy_static" -+version = "1.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -+ -+[[package]] -+name = "libc" -+version = "0.2.94" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e" -+ -+[[package]] -+name = "opaque-debug" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" -+ -+[[package]] -+name = "parity-scale-codec" -+version = "1.3.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a4b26b16c7687c3075982af47719e481815df30bc544f7a6690763a25ca16e9d" -+dependencies = [ -+ "arrayvec", -+ "bitvec", -+ "byte-slice-cast", -+ "serde", -+] -+ -+[[package]] -+name = "paste" -+version = "1.0.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "acbf547ad0c65e31259204bd90935776d1c693cec2f4ff7abb7a1bbbd40dfe58" -+ -+[[package]] -+name = "ppv-lite86" -+version = "0.2.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ac74c624d6b2d21f425f752262f42188365d7b8ff1aff74c82e45136510a4857" -+ -+[[package]] -+name = "primitive-types" -+version = "0.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b3824ae2c5e27160113b9e029a10ec9e3f0237bad8029f69c7724393c9fdefd8" -+dependencies = [ -+ "fixed-hash", -+ "impl-codec", -+ "impl-rlp", -+ "impl-serde", -+ "uint", -+] -+ -+[[package]] -+name = "proc-macro-error" -+version = "1.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -+dependencies = [ -+ "proc-macro-error-attr", -+ "proc-macro2", -+ "quote", -+ "syn", -+ "version_check", -+] -+ -+[[package]] -+name = "proc-macro-error-attr" -+version = "1.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "version_check", -+] -+ -+[[package]] -+name = "proc-macro2" -+version = "1.0.26" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a152013215dca273577e18d2bf00fa862b89b24169fb78c4c95aeb07992c9cec" -+dependencies = [ -+ "unicode-xid", -+] -+ -+[[package]] -+name = "quote" -+version = "1.0.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" -+dependencies = [ -+ "proc-macro2", -+] -+ -+[[package]] -+name = "radium" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "def50a86306165861203e7f84ecffbbdfdea79f0e51039b33de1e952358c47ac" -+ -+[[package]] -+name = "rand" -+version = "0.8.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0ef9e7e66b4468674bfcb0c81af8b7fa0bb154fa9f28eb840da5c447baeb8d7e" -+dependencies = [ -+ "libc", -+ "rand_chacha", -+ "rand_core", -+] -+ -+[[package]] -+name = "rand_chacha" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e12735cf05c9e10bf21534da50a147b924d555dc7a547c42e6bb2d5b6017ae0d" -+dependencies = [ -+ "ppv-lite86", -+ "rand_core", -+] -+ -+[[package]] -+name = "rand_core" -+version = "0.6.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "34cf66eb183df1c5876e2dcf6b13d57340741e8dc255b48e40a26de954d06ae7" -+dependencies = [ -+ "getrandom", -+] -+ -+[[package]] -+name = "rlp" -+version = "0.5.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e54369147e3e7796c9b885c7304db87ca3d09a0a98f72843d532868675bbfba8" -+dependencies = [ -+ "bytes", -+ "rustc-hex", -+] -+ -+[[package]] -+name = "rustc-hex" -+version = "2.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3e75f6a532d0fd9f7f13144f392b6ad56a32696bfcd9c78f797f16bbb6f072d6" -+ -+[[package]] -+name = "ryu" -+version = "1.0.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" -+ -+[[package]] -+name = "serde" -+version = "1.0.125" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "558dc50e1a5a5fa7112ca2ce4effcb321b0300c0d4ccf0776a9f60cd89031171" -+dependencies = [ -+ "serde_derive", -+] -+ -+[[package]] -+name = "serde_derive" -+version = "1.0.125" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b093b7a2bb58203b5da3056c05b4ec1fed827dcfdb37347a8841695263b3d06d" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "serde_json" -+version = "1.0.64" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" -+dependencies = [ -+ "itoa", -+ "ryu", -+ "serde", -+] -+ -+[[package]] -+name = "sha3" -+version = "0.9.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f81199417d4e5de3f04b1e871023acea7389672c4135918f05aa9cbf2f2fa809" -+dependencies = [ -+ "block-buffer", -+ "digest", -+ "keccak", -+ "opaque-debug", -+] -+ -+[[package]] -+name = "static_assertions" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" -+ -+[[package]] -+name = "strsim" -+version = "0.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" -+ -+[[package]] -+name = "structopt" -+version = "0.3.21" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5277acd7ee46e63e5168a80734c9f6ee81b1367a7d8772a2d765df2a3705d28c" -+dependencies = [ -+ "clap", -+ "lazy_static", -+ "structopt-derive", -+] -+ -+[[package]] -+name = "structopt-derive" -+version = "0.4.14" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5ba9cdfda491b814720b6b06e0cac513d922fc407582032e8706e9f137976f90" -+dependencies = [ -+ "heck", -+ "proc-macro-error", -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "syn" -+version = "1.0.72" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a1e8cdbefb79a9a5a65e0db8b47b723ee907b7c7f8496c76a1770b5c310bab82" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "unicode-xid", -+] -+ -+[[package]] -+name = "textwrap" -+version = "0.11.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -+dependencies = [ -+ "unicode-width", -+] -+ -+[[package]] -+name = "thiserror" -+version = "1.0.24" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e0f4a65597094d4483ddaed134f409b2cb7c1beccf25201a9f73c719254fa98e" -+dependencies = [ -+ "thiserror-impl", -+] -+ -+[[package]] -+name = "thiserror-impl" -+version = "1.0.24" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7765189610d8241a44529806d6fd1f2e0a08734313a35d5b3a556f92b381f3c0" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "tiny-keccak" -+version = "2.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" -+dependencies = [ -+ "crunchy", -+] -+ -+[[package]] -+name = "typenum" -+version = "1.13.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "879f6906492a7cd215bfa4cf595b600146ccfac0c79bcbd1f3000162af5e8b06" -+ -+[[package]] -+name = "uint" -+version = "0.9.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e11fe9a9348741cf134085ad57c249508345fe16411b3d7fb4ff2da2f1d6382e" -+dependencies = [ -+ "byteorder", -+ "crunchy", -+ "hex", -+ "static_assertions", -+] -+ -+[[package]] -+name = "unicode-segmentation" -+version = "1.7.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796" -+ -+[[package]] -+name = "unicode-width" -+version = "0.1.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9337591893a19b88d8d87f2cec1e73fad5cdfd10e5a6f349f498ad6ea2ffb1e3" -+ -+[[package]] -+name = "unicode-xid" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" -+ -+[[package]] -+name = "vec_map" -+version = "0.8.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" -+ -+[[package]] -+name = "version_check" -+version = "0.9.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" -+ -+[[package]] -+name = "wasi" -+version = "0.10.2+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" -+ -+[[package]] -+name = "winapi" -+version = "0.3.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -+dependencies = [ -+ "winapi-i686-pc-windows-gnu", -+ "winapi-x86_64-pc-windows-gnu", -+] -+ -+[[package]] -+name = "winapi-i686-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -+ -+[[package]] -+name = "winapi-x86_64-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/pkgs/applications/blockchains/ethabi/default.nix b/pkgs/applications/blockchains/ethabi/default.nix index 49f34a68bbac..eea4d546f14b 100644 --- a/pkgs/applications/blockchains/ethabi/default.nix +++ b/pkgs/applications/blockchains/ethabi/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv }: +{ lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "ethabi"; @@ -11,11 +11,13 @@ rustPlatform.buildRustPackage rec { sha256 = "sha256-bl46CSVP1MMYI3tkVAHFrjMFwTt8QoleZCV9pMIMZyc="; }; - cargoSha256 = "sha256-Jz0uEP2/ZjLS+GbCp7lNyJQdFDjTSFthjBdC/Z4tkTs="; + cargoLock = { + lockFile = ./Cargo.lock; + }; - cargoPatches = [ ./add-Cargo-lock.patch ]; - - buildInputs = lib.optional stdenv.isDarwin libiconv; + postPatch = '' + ln -s ${./Cargo.lock} Cargo.lock + ''; meta = with lib; { description = "Ethereum function call encoding (ABI) utility"; From 606628f0365928d342424994ec25a89b64b04b10 Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 21 Feb 2023 21:26:01 -0500 Subject: [PATCH 112/178] python3.pkgs.johnnycanencrypt: remove orphaned patch --- .../johnnycanencrypt/Cargo.lock.patch | 1456 ----------------- 1 file changed, 1456 deletions(-) delete mode 100644 pkgs/development/python-modules/johnnycanencrypt/Cargo.lock.patch diff --git a/pkgs/development/python-modules/johnnycanencrypt/Cargo.lock.patch b/pkgs/development/python-modules/johnnycanencrypt/Cargo.lock.patch deleted file mode 100644 index 57e53bb6f573..000000000000 --- a/pkgs/development/python-modules/johnnycanencrypt/Cargo.lock.patch +++ /dev/null @@ -1,1456 +0,0 @@ -diff --git a/Cargo.lock b/Cargo.lock -new file mode 100644 -index 0000000..ae65889 ---- /dev/null -+++ b/Cargo.lock -@@ -0,0 +1,1450 @@ -+# This file is automatically @generated by Cargo. -+# It is not intended for manual editing. -+version = 3 -+ -+[[package]] -+name = "adler" -+version = "1.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" -+ -+[[package]] -+name = "aho-corasick" -+version = "0.7.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e" -+dependencies = [ -+ "memchr", -+] -+ -+[[package]] -+name = "android_system_properties" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "anyhow" -+version = "1.0.66" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6" -+ -+[[package]] -+name = "ascii-canvas" -+version = "3.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" -+dependencies = [ -+ "term", -+] -+ -+[[package]] -+name = "atty" -+version = "0.2.14" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -+dependencies = [ -+ "hermit-abi", -+ "libc", -+ "winapi", -+] -+ -+[[package]] -+name = "autocfg" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" -+ -+[[package]] -+name = "base64" -+version = "0.12.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" -+ -+[[package]] -+name = "base64" -+version = "0.13.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" -+ -+[[package]] -+name = "bindgen" -+version = "0.57.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fd4865004a46a0aafb2a0a5eb19d3c9fc46ee5f063a6cfc605c69ac9ecf5263d" -+dependencies = [ -+ "bitflags", -+ "cexpr", -+ "clang-sys", -+ "lazy_static", -+ "lazycell", -+ "peeking_take_while", -+ "proc-macro2", -+ "quote", -+ "regex", -+ "rustc-hash", -+ "shlex", -+] -+ -+[[package]] -+name = "bit-set" -+version = "0.5.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" -+dependencies = [ -+ "bit-vec", -+] -+ -+[[package]] -+name = "bit-vec" -+version = "0.6.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" -+ -+[[package]] -+name = "bitflags" -+version = "1.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" -+ -+[[package]] -+name = "block-buffer" -+version = "0.7.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" -+dependencies = [ -+ "block-padding", -+ "byte-tools", -+ "byteorder", -+ "generic-array 0.12.4", -+] -+ -+[[package]] -+name = "block-padding" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" -+dependencies = [ -+ "byte-tools", -+] -+ -+[[package]] -+name = "buffered-reader" -+version = "1.1.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e9f82920285502602088677aeb65df0909b39c347b38565e553ba0363c242f65" -+dependencies = [ -+ "bzip2", -+ "flate2", -+ "libc", -+] -+ -+[[package]] -+name = "bumpalo" -+version = "3.11.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" -+ -+[[package]] -+name = "byte-tools" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" -+ -+[[package]] -+name = "byteorder" -+version = "1.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" -+ -+[[package]] -+name = "bzip2" -+version = "0.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0" -+dependencies = [ -+ "bzip2-sys", -+ "libc", -+] -+ -+[[package]] -+name = "bzip2-sys" -+version = "0.1.11+1.0.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc" -+dependencies = [ -+ "cc", -+ "libc", -+ "pkg-config", -+] -+ -+[[package]] -+name = "cc" -+version = "1.0.76" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "76a284da2e6fe2092f2353e51713435363112dfd60030e22add80be333fb928f" -+ -+[[package]] -+name = "cexpr" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f4aedb84272dbe89af497cf81375129abda4fc0a9e7c5d317498c15cc30c0d27" -+dependencies = [ -+ "nom", -+] -+ -+[[package]] -+name = "cfg-if" -+version = "1.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" -+ -+[[package]] -+name = "chrono" -+version = "0.4.23" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "16b0a3d9ed01224b22057780a37bb8c5dbfe1be8ba48678e7bf57ec4b385411f" -+dependencies = [ -+ "iana-time-zone", -+ "js-sys", -+ "num-integer", -+ "num-traits", -+ "time", -+ "wasm-bindgen", -+ "winapi", -+] -+ -+[[package]] -+name = "clang-sys" -+version = "1.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3" -+dependencies = [ -+ "glob", -+ "libc", -+ "libloading", -+] -+ -+[[package]] -+name = "codespan-reporting" -+version = "0.11.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e" -+dependencies = [ -+ "termcolor", -+ "unicode-width", -+] -+ -+[[package]] -+name = "core-foundation-sys" -+version = "0.8.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc" -+ -+[[package]] -+name = "crc32fast" -+version = "1.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" -+dependencies = [ -+ "cfg-if", -+] -+ -+[[package]] -+name = "crunchy" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" -+ -+[[package]] -+name = "cxx" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d4a41a86530d0fe7f5d9ea779916b7cadd2d4f9add748b99c2c029cbbdfaf453" -+dependencies = [ -+ "cc", -+ "cxxbridge-flags", -+ "cxxbridge-macro", -+ "link-cplusplus", -+] -+ -+[[package]] -+name = "cxx-build" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "06416d667ff3e3ad2df1cd8cd8afae5da26cf9cec4d0825040f88b5ca659a2f0" -+dependencies = [ -+ "cc", -+ "codespan-reporting", -+ "once_cell", -+ "proc-macro2", -+ "quote", -+ "scratch", -+ "syn", -+] -+ -+[[package]] -+name = "cxxbridge-flags" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "820a9a2af1669deeef27cb271f476ffd196a2c4b6731336011e0ba63e2c7cf71" -+ -+[[package]] -+name = "cxxbridge-macro" -+version = "1.0.82" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a08a6e2fcc370a089ad3b4aaf54db3b1b4cee38ddabce5896b33eb693275f470" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "diff" -+version = "0.1.13" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" -+ -+[[package]] -+name = "digest" -+version = "0.8.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" -+dependencies = [ -+ "generic-array 0.12.4", -+] -+ -+[[package]] -+name = "digest" -+version = "0.9.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" -+dependencies = [ -+ "generic-array 0.14.6", -+] -+ -+[[package]] -+name = "dirs-next" -+version = "2.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" -+dependencies = [ -+ "cfg-if", -+ "dirs-sys-next", -+] -+ -+[[package]] -+name = "dirs-sys-next" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" -+dependencies = [ -+ "libc", -+ "redox_users", -+ "winapi", -+] -+ -+[[package]] -+name = "dyn-clone" -+version = "1.0.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4f94fa09c2aeea5b8839e414b7b841bf429fd25b9c522116ac97ee87856d88b2" -+ -+[[package]] -+name = "either" -+version = "1.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797" -+ -+[[package]] -+name = "ena" -+version = "0.14.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d7402b94a93c24e742487327a7cd839dc9d36fec9de9fb25b09f2dae459f36c3" -+dependencies = [ -+ "log", -+] -+ -+[[package]] -+name = "fake-simd" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" -+ -+[[package]] -+name = "fastrand" -+version = "1.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" -+dependencies = [ -+ "instant", -+] -+ -+[[package]] -+name = "fixedbitset" -+version = "0.4.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" -+ -+[[package]] -+name = "flate2" -+version = "1.0.24" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" -+dependencies = [ -+ "crc32fast", -+ "miniz_oxide", -+] -+ -+[[package]] -+name = "generic-array" -+version = "0.12.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" -+dependencies = [ -+ "typenum", -+] -+ -+[[package]] -+name = "generic-array" -+version = "0.14.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9" -+dependencies = [ -+ "typenum", -+ "version_check", -+] -+ -+[[package]] -+name = "getrandom" -+version = "0.1.16" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -+dependencies = [ -+ "cfg-if", -+ "js-sys", -+ "libc", -+ "wasi 0.9.0+wasi-snapshot-preview1", -+ "wasm-bindgen", -+] -+ -+[[package]] -+name = "getrandom" -+version = "0.2.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31" -+dependencies = [ -+ "cfg-if", -+ "js-sys", -+ "libc", -+ "wasi 0.11.0+wasi-snapshot-preview1", -+ "wasm-bindgen", -+] -+ -+[[package]] -+name = "glob" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574" -+ -+[[package]] -+name = "hashbrown" -+version = "0.12.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" -+ -+[[package]] -+name = "hermit-abi" -+version = "0.1.19" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -+dependencies = [ -+ "libc", -+] -+ -+[[package]] -+name = "iana-time-zone" -+version = "0.1.53" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765" -+dependencies = [ -+ "android_system_properties", -+ "core-foundation-sys", -+ "iana-time-zone-haiku", -+ "js-sys", -+ "wasm-bindgen", -+ "winapi", -+] -+ -+[[package]] -+name = "iana-time-zone-haiku" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca" -+dependencies = [ -+ "cxx", -+ "cxx-build", -+] -+ -+[[package]] -+name = "idna" -+version = "0.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" -+dependencies = [ -+ "unicode-bidi", -+ "unicode-normalization", -+] -+ -+[[package]] -+name = "indexmap" -+version = "1.9.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399" -+dependencies = [ -+ "autocfg", -+ "hashbrown", -+] -+ -+[[package]] -+name = "indoc" -+version = "1.0.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "adab1eaa3408fb7f0c777a73e7465fd5656136fc93b670eb6df3c88c2c1344e3" -+ -+[[package]] -+name = "instant" -+version = "0.1.12" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" -+dependencies = [ -+ "cfg-if", -+] -+ -+[[package]] -+name = "itertools" -+version = "0.10.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" -+dependencies = [ -+ "either", -+] -+ -+[[package]] -+name = "johnnycanencrypt" -+version = "0.11.0" -+dependencies = [ -+ "anyhow", -+ "chrono", -+ "pyo3", -+ "sequoia-openpgp", -+ "sshkeys", -+ "talktosc", -+ "tempfile", -+] -+ -+[[package]] -+name = "js-sys" -+version = "0.3.60" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" -+dependencies = [ -+ "wasm-bindgen", -+] -+ -+[[package]] -+name = "lalrpop" -+version = "0.19.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b30455341b0e18f276fa64540aff54deafb54c589de6aca68659c63dd2d5d823" -+dependencies = [ -+ "ascii-canvas", -+ "atty", -+ "bit-set", -+ "diff", -+ "ena", -+ "itertools", -+ "lalrpop-util", -+ "petgraph", -+ "regex", -+ "regex-syntax", -+ "string_cache", -+ "term", -+ "tiny-keccak", -+ "unicode-xid", -+] -+ -+[[package]] -+name = "lalrpop-util" -+version = "0.19.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bcf796c978e9b4d983414f4caedc9273aa33ee214c5b887bd55fde84c85d2dc4" -+ -+[[package]] -+name = "lazy_static" -+version = "1.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" -+ -+[[package]] -+name = "lazycell" -+version = "1.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55" -+ -+[[package]] -+name = "libc" -+version = "0.2.137" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89" -+ -+[[package]] -+name = "libloading" -+version = "0.7.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" -+dependencies = [ -+ "cfg-if", -+ "winapi", -+] -+ -+[[package]] -+name = "link-cplusplus" -+version = "1.0.7" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369" -+dependencies = [ -+ "cc", -+] -+ -+[[package]] -+name = "lock_api" -+version = "0.4.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" -+dependencies = [ -+ "autocfg", -+ "scopeguard", -+] -+ -+[[package]] -+name = "log" -+version = "0.4.17" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -+dependencies = [ -+ "cfg-if", -+] -+ -+[[package]] -+name = "memchr" -+version = "2.5.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" -+ -+[[package]] -+name = "memoffset" -+version = "0.6.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" -+dependencies = [ -+ "autocfg", -+] -+ -+[[package]] -+name = "memsec" -+version = "0.6.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9ac78937f19a0c7807e45a931eac41f766f210173ec664ec046d58e6d388a5cb" -+ -+[[package]] -+name = "miniz_oxide" -+version = "0.5.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34" -+dependencies = [ -+ "adler", -+] -+ -+[[package]] -+name = "nettle" -+version = "7.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f5d193a809310369c5d16e45bc0a88cb27935edd5d3375bcfc2371b167694035" -+dependencies = [ -+ "getrandom 0.2.8", -+ "libc", -+ "nettle-sys", -+ "thiserror", -+] -+ -+[[package]] -+name = "nettle-sys" -+version = "2.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b13b685c7883e3a32196ccf3ce594947ec37ace43d74e157de7ca03d3fe62d17" -+dependencies = [ -+ "bindgen", -+ "cc", -+ "libc", -+ "pkg-config", -+ "tempfile", -+ "vcpkg", -+] -+ -+[[package]] -+name = "new_debug_unreachable" -+version = "1.0.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54" -+ -+[[package]] -+name = "nom" -+version = "5.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af" -+dependencies = [ -+ "memchr", -+ "version_check", -+] -+ -+[[package]] -+name = "num-integer" -+version = "0.1.45" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" -+dependencies = [ -+ "autocfg", -+ "num-traits", -+] -+ -+[[package]] -+name = "num-traits" -+version = "0.2.15" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" -+dependencies = [ -+ "autocfg", -+] -+ -+[[package]] -+name = "once_cell" -+version = "1.16.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" -+ -+[[package]] -+name = "opaque-debug" -+version = "0.2.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" -+ -+[[package]] -+name = "parking_lot" -+version = "0.12.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" -+dependencies = [ -+ "lock_api", -+ "parking_lot_core", -+] -+ -+[[package]] -+name = "parking_lot_core" -+version = "0.9.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0" -+dependencies = [ -+ "cfg-if", -+ "libc", -+ "redox_syscall", -+ "smallvec", -+ "windows-sys", -+] -+ -+[[package]] -+name = "pcsc" -+version = "2.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7e29e4de78a433aeecd06fb5bd55a0f9fde11dc85a14c22d482972c7edc4fdc4" -+dependencies = [ -+ "bitflags", -+ "pcsc-sys", -+] -+ -+[[package]] -+name = "pcsc-sys" -+version = "1.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e1b7bfecba2c0f1b5efb0e7caf7533ab1c295024165bcbb066231f60d33e23ea" -+dependencies = [ -+ "pkg-config", -+] -+ -+[[package]] -+name = "peeking_take_while" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099" -+ -+[[package]] -+name = "petgraph" -+version = "0.6.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143" -+dependencies = [ -+ "fixedbitset", -+ "indexmap", -+] -+ -+[[package]] -+name = "phf_shared" -+version = "0.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" -+dependencies = [ -+ "siphasher", -+] -+ -+[[package]] -+name = "pkg-config" -+version = "0.3.26" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160" -+ -+[[package]] -+name = "ppv-lite86" -+version = "0.2.17" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" -+ -+[[package]] -+name = "precomputed-hash" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" -+ -+[[package]] -+name = "proc-macro2" -+version = "1.0.47" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725" -+dependencies = [ -+ "unicode-ident", -+] -+ -+[[package]] -+name = "pyo3" -+version = "0.17.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "268be0c73583c183f2b14052337465768c07726936a260f480f0857cb95ba543" -+dependencies = [ -+ "cfg-if", -+ "indoc", -+ "libc", -+ "memoffset", -+ "parking_lot", -+ "pyo3-build-config", -+ "pyo3-ffi", -+ "pyo3-macros", -+ "unindent", -+] -+ -+[[package]] -+name = "pyo3-build-config" -+version = "0.17.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "28fcd1e73f06ec85bf3280c48c67e731d8290ad3d730f8be9dc07946923005c8" -+dependencies = [ -+ "once_cell", -+ "target-lexicon", -+] -+ -+[[package]] -+name = "pyo3-ffi" -+version = "0.17.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "0f6cb136e222e49115b3c51c32792886defbfb0adead26a688142b346a0b9ffc" -+dependencies = [ -+ "libc", -+ "pyo3-build-config", -+] -+ -+[[package]] -+name = "pyo3-macros" -+version = "0.17.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "94144a1266e236b1c932682136dc35a9dee8d3589728f68130c7c3861ef96b28" -+dependencies = [ -+ "proc-macro2", -+ "pyo3-macros-backend", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "pyo3-macros-backend" -+version = "0.17.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c8df9be978a2d2f0cdebabb03206ed73b11314701a5bfe71b0d753b81997777f" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "quote" -+version = "1.0.21" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" -+dependencies = [ -+ "proc-macro2", -+] -+ -+[[package]] -+name = "rand" -+version = "0.7.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -+dependencies = [ -+ "getrandom 0.1.16", -+ "libc", -+ "rand_chacha", -+ "rand_core", -+ "rand_hc", -+] -+ -+[[package]] -+name = "rand_chacha" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -+dependencies = [ -+ "ppv-lite86", -+ "rand_core", -+] -+ -+[[package]] -+name = "rand_core" -+version = "0.5.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -+dependencies = [ -+ "getrandom 0.1.16", -+] -+ -+[[package]] -+name = "rand_hc" -+version = "0.2.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -+dependencies = [ -+ "rand_core", -+] -+ -+[[package]] -+name = "redox_syscall" -+version = "0.2.16" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" -+dependencies = [ -+ "bitflags", -+] -+ -+[[package]] -+name = "redox_users" -+version = "0.4.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" -+dependencies = [ -+ "getrandom 0.2.8", -+ "redox_syscall", -+ "thiserror", -+] -+ -+[[package]] -+name = "regex" -+version = "1.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" -+dependencies = [ -+ "aho-corasick", -+ "memchr", -+ "regex-syntax", -+] -+ -+[[package]] -+name = "regex-syntax" -+version = "0.6.28" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" -+ -+[[package]] -+name = "remove_dir_all" -+version = "0.5.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" -+dependencies = [ -+ "winapi", -+] -+ -+[[package]] -+name = "rustc-hash" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" -+ -+[[package]] -+name = "rustversion" -+version = "1.0.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8" -+ -+[[package]] -+name = "scopeguard" -+version = "1.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" -+ -+[[package]] -+name = "scratch" -+version = "1.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898" -+ -+[[package]] -+name = "sequoia-openpgp" -+version = "1.11.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "50d9033c24b1d41fdfab2bbde66005d324625b4abee2af2aea6135bdd9543ff7" -+dependencies = [ -+ "anyhow", -+ "base64 0.13.1", -+ "buffered-reader", -+ "bzip2", -+ "chrono", -+ "dyn-clone", -+ "flate2", -+ "getrandom 0.2.8", -+ "idna", -+ "lalrpop", -+ "lalrpop-util", -+ "lazy_static", -+ "libc", -+ "memsec", -+ "nettle", -+ "rand", -+ "regex", -+ "regex-syntax", -+ "sha1collisiondetection", -+ "thiserror", -+ "xxhash-rust", -+] -+ -+[[package]] -+name = "sha1collisiondetection" -+version = "0.2.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c66558a774ef5044cb4a834db5f5c7f95e139d2341d7f502fe6034afa7082461" -+dependencies = [ -+ "digest 0.9.0", -+ "generic-array 0.14.6", -+] -+ -+[[package]] -+name = "sha2" -+version = "0.8.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" -+dependencies = [ -+ "block-buffer", -+ "digest 0.8.1", -+ "fake-simd", -+ "opaque-debug", -+] -+ -+[[package]] -+name = "shlex" -+version = "0.1.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7fdf1b9db47230893d76faad238fd6097fd6d6a9245cd7a4d90dbd639536bbd2" -+ -+[[package]] -+name = "siphasher" -+version = "0.3.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de" -+ -+[[package]] -+name = "smallvec" -+version = "1.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" -+ -+[[package]] -+name = "sshkeys" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c926cb006a77964474a13a86aa0135ea82c9fd43e6793a1151cc54143db6637c" -+dependencies = [ -+ "base64 0.12.3", -+ "byteorder", -+ "sha2", -+] -+ -+[[package]] -+name = "string_cache" -+version = "0.8.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08" -+dependencies = [ -+ "new_debug_unreachable", -+ "once_cell", -+ "parking_lot", -+ "phf_shared", -+ "precomputed-hash", -+] -+ -+[[package]] -+name = "syn" -+version = "1.0.103" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "unicode-ident", -+] -+ -+[[package]] -+name = "talktosc" -+version = "0.1.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "d165e1d4852d6a986a400f085b39c2786f9647aa7af53aabe168caa11629c28f" -+dependencies = [ -+ "pcsc", -+ "thiserror", -+] -+ -+[[package]] -+name = "target-lexicon" -+version = "0.12.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9410d0f6853b1d94f0e519fb95df60f29d2c1eff2d921ffdf01a4c8a3b54f12d" -+ -+[[package]] -+name = "tempfile" -+version = "3.3.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" -+dependencies = [ -+ "cfg-if", -+ "fastrand", -+ "libc", -+ "redox_syscall", -+ "remove_dir_all", -+ "winapi", -+] -+ -+[[package]] -+name = "term" -+version = "0.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" -+dependencies = [ -+ "dirs-next", -+ "rustversion", -+ "winapi", -+] -+ -+[[package]] -+name = "termcolor" -+version = "1.1.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" -+dependencies = [ -+ "winapi-util", -+] -+ -+[[package]] -+name = "thiserror" -+version = "1.0.37" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e" -+dependencies = [ -+ "thiserror-impl", -+] -+ -+[[package]] -+name = "thiserror-impl" -+version = "1.0.37" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+] -+ -+[[package]] -+name = "time" -+version = "0.1.44" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" -+dependencies = [ -+ "libc", -+ "wasi 0.10.0+wasi-snapshot-preview1", -+ "winapi", -+] -+ -+[[package]] -+name = "tiny-keccak" -+version = "2.0.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" -+dependencies = [ -+ "crunchy", -+] -+ -+[[package]] -+name = "tinyvec" -+version = "1.6.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" -+dependencies = [ -+ "tinyvec_macros", -+] -+ -+[[package]] -+name = "tinyvec_macros" -+version = "0.1.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" -+ -+[[package]] -+name = "typenum" -+version = "1.15.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987" -+ -+[[package]] -+name = "unicode-bidi" -+version = "0.3.8" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" -+ -+[[package]] -+name = "unicode-ident" -+version = "1.0.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3" -+ -+[[package]] -+name = "unicode-normalization" -+version = "0.1.22" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" -+dependencies = [ -+ "tinyvec", -+] -+ -+[[package]] -+name = "unicode-width" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" -+ -+[[package]] -+name = "unicode-xid" -+version = "0.2.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" -+ -+[[package]] -+name = "unindent" -+version = "0.1.10" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "58ee9362deb4a96cef4d437d1ad49cffc9b9e92d202b6995674e928ce684f112" -+ -+[[package]] -+name = "vcpkg" -+version = "0.2.15" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" -+ -+[[package]] -+name = "version_check" -+version = "0.9.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" -+ -+[[package]] -+name = "wasi" -+version = "0.9.0+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" -+ -+[[package]] -+name = "wasi" -+version = "0.10.0+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" -+ -+[[package]] -+name = "wasi" -+version = "0.11.0+wasi-snapshot-preview1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" -+ -+[[package]] -+name = "wasm-bindgen" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" -+dependencies = [ -+ "cfg-if", -+ "wasm-bindgen-macro", -+] -+ -+[[package]] -+name = "wasm-bindgen-backend" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" -+dependencies = [ -+ "bumpalo", -+ "log", -+ "once_cell", -+ "proc-macro2", -+ "quote", -+ "syn", -+ "wasm-bindgen-shared", -+] -+ -+[[package]] -+name = "wasm-bindgen-macro" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" -+dependencies = [ -+ "quote", -+ "wasm-bindgen-macro-support", -+] -+ -+[[package]] -+name = "wasm-bindgen-macro-support" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" -+dependencies = [ -+ "proc-macro2", -+ "quote", -+ "syn", -+ "wasm-bindgen-backend", -+ "wasm-bindgen-shared", -+] -+ -+[[package]] -+name = "wasm-bindgen-shared" -+version = "0.2.83" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" -+ -+[[package]] -+name = "winapi" -+version = "0.3.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -+dependencies = [ -+ "winapi-i686-pc-windows-gnu", -+ "winapi-x86_64-pc-windows-gnu", -+] -+ -+[[package]] -+name = "winapi-i686-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -+ -+[[package]] -+name = "winapi-util" -+version = "0.1.5" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" -+dependencies = [ -+ "winapi", -+] -+ -+[[package]] -+name = "winapi-x86_64-pc-windows-gnu" -+version = "0.4.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -+ -+[[package]] -+name = "windows-sys" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" -+dependencies = [ -+ "windows_aarch64_gnullvm", -+ "windows_aarch64_msvc", -+ "windows_i686_gnu", -+ "windows_i686_msvc", -+ "windows_x86_64_gnu", -+ "windows_x86_64_gnullvm", -+ "windows_x86_64_msvc", -+] -+ -+[[package]] -+name = "windows_aarch64_gnullvm" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e" -+ -+[[package]] -+name = "windows_aarch64_msvc" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4" -+ -+[[package]] -+name = "windows_i686_gnu" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7" -+ -+[[package]] -+name = "windows_i686_msvc" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246" -+ -+[[package]] -+name = "windows_x86_64_gnu" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed" -+ -+[[package]] -+name = "windows_x86_64_gnullvm" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028" -+ -+[[package]] -+name = "windows_x86_64_msvc" -+version = "0.42.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5" -+ -+[[package]] -+name = "xxhash-rust" -+version = "0.8.6" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+checksum = "735a71d46c4d68d71d4b24d03fdc2b98e38cea81730595801db779c04fe80d70" From 1301a1a997d75872d6c631a21c74df66cb4fed5d Mon Sep 17 00:00:00 2001 From: Winter Date: Tue, 21 Feb 2023 22:40:39 -0500 Subject: [PATCH 113/178] keepassx{,2}: drop Upstream has officially abandoned the project as of 2021 [0], there's been no release since 2016, it uses the EoL Qt 4, and alternatives like KeePassXC exist. Also move KeePassXC to its own directory -- it doesn't make sense to have it in KeePassX's folder anymore. [0]: https://www.keepassx.org/index.html%3Fp=636.html --- .../manual/release-notes/rl-2305.section.md | 2 ++ pkgs/applications/misc/keepassx/2.0.nix | 22 ---------------- pkgs/applications/misc/keepassx/default.nix | 25 ------------------- pkgs/applications/misc/keepassx/random.patch | 13 ---------- .../misc/{keepassx => keepassxc}/darwin.patch | 0 .../community.nix => keepassxc/default.nix} | 0 pkgs/top-level/aliases.nix | 2 ++ pkgs/top-level/all-packages.nix | 4 +-- 8 files changed, 5 insertions(+), 63 deletions(-) delete mode 100644 pkgs/applications/misc/keepassx/2.0.nix delete mode 100644 pkgs/applications/misc/keepassx/default.nix delete mode 100644 pkgs/applications/misc/keepassx/random.patch rename pkgs/applications/misc/{keepassx => keepassxc}/darwin.patch (100%) rename pkgs/applications/misc/{keepassx/community.nix => keepassxc/default.nix} (100%) diff --git a/nixos/doc/manual/release-notes/rl-2305.section.md b/nixos/doc/manual/release-notes/rl-2305.section.md index bd709d4b1659..d50438ddb611 100644 --- a/nixos/doc/manual/release-notes/rl-2305.section.md +++ b/nixos/doc/manual/release-notes/rl-2305.section.md @@ -78,6 +78,8 @@ In addition to numerous new and upgraded packages, this release has the followin - `git-bug` has been updated to at least version 0.8.0, which includes backwards incompatible changes. The `git-bug-migration` package can be used to upgrade existing repositories. +- `keepassx` and `keepassx2` have been removed, due to upstream [stopping development](https://www.keepassx.org/index.html%3Fp=636.html). Consider [KeePassXC](https://keepassxc.org) as a maintained alternative. + - The `services.kubo.settings` option is now no longer stateful. If you changed any of the options in `services.kubo.settings` in the past and then removed them from your NixOS configuration again, those changes are still in your Kubo configuration file but will now be reset to the default. If you're unsure, you may want to make a backup of your configuration file (probably /var/lib/ipfs/config) and compare after the update. - The EC2 image module no longer fetches instance metadata in stage-1. This results in a significantly smaller initramfs, since network drivers no longer need to be included, and faster boots, since metadata fetching can happen in parallel with startup of other services. diff --git a/pkgs/applications/misc/keepassx/2.0.nix b/pkgs/applications/misc/keepassx/2.0.nix deleted file mode 100644 index 86bd7d0849ec..000000000000 --- a/pkgs/applications/misc/keepassx/2.0.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ lib, stdenv, fetchurl, cmake, libgcrypt, qt4, xorg }: - -stdenv.mkDerivation rec { - pname = "keepassx2"; - version = "2.0.3"; - - src = fetchurl { - url = "https://www.keepassx.org/releases/${version}/keepassx-${version}.tar.gz"; - sha256 = "1ia7cqx9ias38mnffsl7da7g1f66bcbjsi23k49sln0c6spb9zr3"; - }; - - nativeBuildInputs = [ cmake ]; - buildInputs = [ libgcrypt qt4 xorg.libXtst ]; - - meta = { - description = "Qt password manager compatible with its Win32 and Pocket PC versions"; - homepage = "https://www.keepassx.org/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ qknight ]; - platforms = with lib.platforms; linux; - }; -} diff --git a/pkgs/applications/misc/keepassx/default.nix b/pkgs/applications/misc/keepassx/default.nix deleted file mode 100644 index 0fad28d94d3f..000000000000 --- a/pkgs/applications/misc/keepassx/default.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ lib, stdenv, fetchurl, bzip2, qt4, qmake4Hook, libX11, xorgproto, libXtst }: - -stdenv.mkDerivation rec { - pname = "keepassx"; - version = "0.4.4"; - - src = fetchurl { - url = "https://www.keepassx.org/releases/${version}/${pname}-${version}.tar.gz"; - sha256 = "1i5dq10x28mg7m4c0yacm32xfj4j7imir4ph8x9p0s2ym260c9ry"; - }; - - patches = [ ./random.patch ]; - - buildInputs = [ bzip2 qt4 libX11 xorgproto libXtst ]; - - nativeBuildInputs = [ qmake4Hook ]; - - meta = { - description = "Qt password manager compatible with its Win32 and Pocket PC versions"; - homepage = "https://www.keepassx.org/"; - license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ qknight ]; - platforms = with lib.platforms; linux; - }; -} diff --git a/pkgs/applications/misc/keepassx/random.patch b/pkgs/applications/misc/keepassx/random.patch deleted file mode 100644 index 0a0b26f6e8c9..000000000000 --- a/pkgs/applications/misc/keepassx/random.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- a/src/lib/random.cpp 2014-01-21 21:15:55.829312723 +0000 -+++ b/src/lib/random.cpp 2014-01-21 21:16:36.752535839 +0000 -@@ -28,6 +28,10 @@ - #include - #include - #endif -+#ifndef Q_WS_WIN -+ #include -+ #include -+#endif - - #include - #include diff --git a/pkgs/applications/misc/keepassx/darwin.patch b/pkgs/applications/misc/keepassxc/darwin.patch similarity index 100% rename from pkgs/applications/misc/keepassx/darwin.patch rename to pkgs/applications/misc/keepassxc/darwin.patch diff --git a/pkgs/applications/misc/keepassx/community.nix b/pkgs/applications/misc/keepassxc/default.nix similarity index 100% rename from pkgs/applications/misc/keepassx/community.nix rename to pkgs/applications/misc/keepassxc/default.nix diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index f6267028a4ce..06ab0a7b56cf 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -727,8 +727,10 @@ mapAliases ({ kdecoration-viewer = throw "kdecoration-viewer has been removed from nixpkgs, as there is no upstream activity"; # Added 2020-06-16 kdiff3-qt5 = throw "'kdiff3-qt5' has been renamed to/replaced by 'kdiff3'"; # Converted to throw 2022-02-22 keepass-keefox = throw "'keepass-keefox' has been renamed to/replaced by 'keepass-keepassrpc'"; # Converted to throw 2022-02-22 + keepassx = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 keepassx-community = throw "'keepassx-community' has been renamed to/replaced by 'keepassxc'"; # Converted to throw 2022-02-22 keepassx-reboot = throw "'keepassx-reboot' has been renamed to/replaced by 'keepassx-community'"; # Converted to throw 2022-02-22 + keepassx2 = throw "KeePassX is no longer actively developed. Please consider KeePassXC as a maintained alternative."; # Added 2023-02-17 keepassx2-http = throw "'keepassx2-http' has been renamed to/replaced by 'keepassx-reboot'"; # Converted to throw 2022-02-22 keepnote = throw "keepnote has been removed from nixpkgs, as it is stuck on python2"; # Added 2022-01-01 kerberos = libkrb5; # moved from top-level 2021-03-14 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dd58fe970659..4197b01995b4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -29300,9 +29300,7 @@ with pkgs; karlender = callPackage ../applications/office/karlender { }; - keepassx = callPackage ../applications/misc/keepassx { }; - keepassx2 = callPackage ../applications/misc/keepassx/2.0.nix { }; - keepassxc = libsForQt5.callPackage ../applications/misc/keepassx/community.nix { + keepassxc = libsForQt5.callPackage ../applications/misc/keepassxc { inherit (darwin.apple_sdk_11_0.frameworks) LocalAuthentication; stdenv = if stdenv.isDarwin then darwin.apple_sdk_11_0.stdenv else stdenv; }; From 487c7f8725ce668b913ee418b42788bf805aeb08 Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 22 Feb 2023 13:34:43 +0800 Subject: [PATCH 114/178] sing-box: 1.1.5 -> 1.1.6 Diff: https://github.com/SagerNet/sing-box/compare/v1.1.5...v1.1.6 --- pkgs/tools/networking/sing-box/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/sing-box/default.nix b/pkgs/tools/networking/sing-box/default.nix index aea1964e8777..6d039cf541fb 100644 --- a/pkgs/tools/networking/sing-box/default.nix +++ b/pkgs/tools/networking/sing-box/default.nix @@ -8,16 +8,16 @@ buildGoModule rec { pname = "sing-box"; - version = "1.1.5"; + version = "1.1.6"; src = fetchFromGitHub { owner = "SagerNet"; repo = pname; rev = "v${version}"; - hash = "sha256-FEwyJL6pFdp9vXIq1TUFGGDfKefFsVaajjX2U0R5Vog="; + hash = "sha256-CwXhCJo6Nq0dZaTcUetsSpvNKme1PN6pzMRX1QeY3gg="; }; - vendorHash = "sha256-QTk4kKPPOhnCf/1NhWObwf8EsZC+k0EtdSBecD6jq04="; + vendorHash = "sha256-cLaMtnTSmCZoPwfeQpWXCiFtmDm3vA6AD12H5h8Obhk="; tags = [ "with_quic" From 9d11a0c1cec0f10a33e71efbe9d81fa1725f3fd4 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Feb 2023 05:52:50 +0000 Subject: [PATCH 115/178] google-guest-oslogin: 20230202.00 -> 20230217.00 --- pkgs/tools/virtualization/google-guest-oslogin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/virtualization/google-guest-oslogin/default.nix b/pkgs/tools/virtualization/google-guest-oslogin/default.nix index 3fb56c6d0317..7e1fcff3984a 100644 --- a/pkgs/tools/virtualization/google-guest-oslogin/default.nix +++ b/pkgs/tools/virtualization/google-guest-oslogin/default.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { pname = "google-guest-oslogin"; - version = "20230202.00"; + version = "20230217.00"; src = fetchFromGitHub { owner = "GoogleCloudPlatform"; repo = "guest-oslogin"; rev = version; - sha256 = "sha256-5+8AMm97+GJJYmzKaJ98AtDBwpVXj88d3B8KwZgMpSg="; + sha256 = "sha256-MZpm6JgukqdT8B1qZzKT4tO3LBS8ReoVqRGyY5ykWHw="; }; postPatch = '' From 30c3b9090343497f0c1eeaad104461db7e1e95e0 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 15 Feb 2023 07:27:08 +0100 Subject: [PATCH 116/178] =?UTF-8?q?cvc5:=201.0.3=20=E2=86=92=201.0.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/applications/science/logic/cvc5/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/science/logic/cvc5/default.nix b/pkgs/applications/science/logic/cvc5/default.nix index 5bce776771d3..f0cb044b3beb 100644 --- a/pkgs/applications/science/logic/cvc5/default.nix +++ b/pkgs/applications/science/logic/cvc5/default.nix @@ -1,18 +1,21 @@ -{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, cadical, symfpu, gmp, git, python3, gtest, libantlr3c, antlr3_4, boost, jdk }: +{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, flex, cadical, symfpu, gmp, python3, gtest, libantlr3c, antlr3_4, boost, jdk }: stdenv.mkDerivation rec { pname = "cvc5"; - version = "1.0.3"; + version = "1.0.4"; src = fetchFromGitHub { owner = "cvc5"; repo = "cvc5"; rev = "cvc5-${version}"; - sha256 = "sha256-CVXK6yehfUrSbo8R1Dk1oc/siCtmV9DjEp6q+aLuVQA="; + hash = "sha256-1yJZtPZ4nMg9Kn3jHpN8b5XeFZ8ZeVLrKYWh7Rp3/oQ="; }; - nativeBuildInputs = [ pkg-config cmake ]; - buildInputs = [ cadical.dev symfpu gmp git python3 python3.pkgs.toml gtest libantlr3c antlr3_4 boost jdk ]; + nativeBuildInputs = [ pkg-config cmake flex ]; + buildInputs = [ + cadical.dev symfpu gmp gtest libantlr3c antlr3_4 boost jdk + (python3.withPackages (ps: with ps; [ pyparsing toml ])) + ]; preConfigure = '' patchShebangs ./src/ From 60448a8845a4ed061779fe1de87e5c2c805e15fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Tue, 21 Feb 2023 08:11:14 -0800 Subject: [PATCH 117/178] texworks: 0.6.7 -> 0.6.8 also use Qt 6 Diff: https://github.com/TeXworks/texworks/compare/release-0.6.7...release-0.6.8 Changelog: https://github.com/TeXworks/texworks/blob/release-0.6.8/NEWS --- .../applications/editors/texworks/default.nix | 42 ++++++++++++++----- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/editors/texworks/default.nix b/pkgs/applications/editors/texworks/default.nix index 67374b9b40b0..4f1544eeb46a 100644 --- a/pkgs/applications/editors/texworks/default.nix +++ b/pkgs/applications/editors/texworks/default.nix @@ -1,28 +1,48 @@ -{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config -, qtscript, poppler, hunspell +{ lib +, stdenv +, fetchFromGitHub +, cmake +, pkg-config +, wrapQtAppsHook +, hunspell +, poppler +, qt5compat +, qttools , withLua ? true, lua , withPython ? true, python3 }: -mkDerivation rec { +stdenv.mkDerivation rec { pname = "texworks"; - version = "0.6.7"; + version = "0.6.8"; src = fetchFromGitHub { owner = "TeXworks"; repo = "texworks"; rev = "release-${version}"; - sha256 = "sha256-v0UukFM5brPtgq+zH5H1KfUc0eL0hjTC9z0tVQRqu2Q="; + sha256 = "sha256-X0VuXNghHoNsNNDfZJXXJ++nfUa5ofjW8rv3CHOUzxQ="; }; - nativeBuildInputs = [ cmake pkg-config ]; - buildInputs = [ qtscript poppler hunspell ] - ++ lib.optional withLua lua - ++ lib.optional withPython python3; + nativeBuildInputs = [ + cmake + pkg-config + wrapQtAppsHook + ]; - cmakeFlags = lib.optional withLua "-DWITH_LUA=ON" - ++ lib.optional withPython "-DWITH_PYTHON=ON"; + buildInputs = [ + hunspell + poppler + qt5compat + qttools + ] ++ lib.optional withLua lua + ++ lib.optional withPython python3; + + cmakeFlags = [ + "-DQT_DEFAULT_MAJOR_VERSION=6" + ] ++ lib.optional withLua "-DWITH_LUA=ON" + ++ lib.optional withPython "-DWITH_PYTHON=ON"; meta = with lib; { + changelog = "https://github.com/TeXworks/texworks/blob/${src.rev}/NEWS"; description = "Simple TeX front-end program inspired by TeXShop"; homepage = "http://www.tug.org/texworks/"; license = licenses.gpl2Plus; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a2e7c0066fa2..c4aad7709039 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12547,7 +12547,7 @@ with pkgs; textadept = callPackage ../applications/editors/textadept { }; - texworks = libsForQt5.callPackage ../applications/editors/texworks { }; + texworks = qt6Packages.callPackage ../applications/editors/texworks { }; tf2pulumi = callPackage ../development/tools/tf2pulumi { }; From 9cc993fad9ed41a8d412d7190c701c9c9f7dcd8b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 18 Feb 2023 08:25:48 -0800 Subject: [PATCH 118/178] python310Packages.pycontrol4: 0.3.1 -> 1.1.0 Diff: https://github.com/lawtancool/pyControl4/compare/v0.3.1...v1.1.0 --- .../python-modules/pycontrol4/default.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pycontrol4/default.nix b/pkgs/development/python-modules/pycontrol4/default.nix index b960b4b7da6d..5719e7640631 100644 --- a/pkgs/development/python-modules/pycontrol4/default.nix +++ b/pkgs/development/python-modules/pycontrol4/default.nix @@ -4,24 +4,35 @@ , fetchFromGitHub , aiohttp , xmltodict +, python-socketio +, websocket-client }: buildPythonPackage rec { pname = "pycontrol4"; - version = "0.3.1"; + version = "1.1.0"; disabled = pythonOlder "3.6"; + format = "setuptools"; + src = fetchFromGitHub { owner = "lawtancool"; repo = "pyControl4"; rev = "v${version}"; - sha256 = "068iiyi17ndv6cv124r5dzvififblbi2zw7jgnzb5xi0q093czkj"; + hash = "sha256-dMv2b6dbMauPvPf4LHKmLF4jnXYRYe6A+2lDtiZDUhY="; }; + postPatch = '' + substituteInPlace setup.py \ + --replace "python-socketio>=4,<5" "python-socketio>=4" + ''; + propagatedBuildInputs = [ aiohttp xmltodict + python-socketio + websocket-client ]; # tests access network From c203250659210152fe1716e7a8fb317eb58eee60 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 03:10:33 +0000 Subject: [PATCH 119/178] =?UTF-8?q?terraform-providers.fastly:=203.0.4=20?= =?UTF-8?q?=E2=86=92=203.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index acea15d34edb..aea911476a64 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -382,11 +382,11 @@ "vendorHash": "sha256-0t+2ixMSsgDK9zzst3s0YWdnS6p7jO0stHnaKio5lvY=" }, "fastly": { - "hash": "sha256-SaihRh+DuMY9Mcx+PBAUPv0vrWeKGqx437ayLT3kdjI=", + "hash": "sha256-oaBVVbeJdmzkx3hphW9Llh/ZUujo8QNeZd6guDkBiCY=", "homepage": "https://registry.terraform.io/providers/fastly/fastly", "owner": "fastly", "repo": "terraform-provider-fastly", - "rev": "v3.0.4", + "rev": "v3.1.0", "spdx": "MPL-2.0", "vendorHash": null }, From 2c5fab716a4a43391e75fd8715ffc1b19962c29e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 03:15:08 +0000 Subject: [PATCH 120/178] =?UTF-8?q?terraform-providers.kubernetes:=202.18.?= =?UTF-8?q?0=20=E2=86=92=202.18.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index aea911476a64..792423cd0cda 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -639,11 +639,11 @@ "vendorHash": "sha256-lXQHo66b9X0jZhoF+5Ix5qewQGyI82VPJ7gGzc2CHao=" }, "kubernetes": { - "hash": "sha256-UqMPeyMTXTnVknFqhCSm/wG8IYLW63n/wSvc5/ofjW0=", + "hash": "sha256-4TUUejEKbnsRmqwdQVhHF+QWW8kReq+ZQQvpcT+YhsQ=", "homepage": "https://registry.terraform.io/providers/hashicorp/kubernetes", "owner": "hashicorp", "repo": "terraform-provider-kubernetes", - "rev": "v2.18.0", + "rev": "v2.18.1", "spdx": "MPL-2.0", "vendorHash": null }, From b538b125b1863d77d704db715009ebbced08c19c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 03:15:50 +0000 Subject: [PATCH 121/178] =?UTF-8?q?terraform-providers.alicloud:=201.198.0?= =?UTF-8?q?=20=E2=86=92=201.199.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 792423cd0cda..2b0c642c8915 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -46,11 +46,11 @@ "vendorHash": "sha256-xIxQxgfOv+/i0gyRtpZaCm22rsK/4ajFNKQpGP5uy0Y=" }, "alicloud": { - "hash": "sha256-LFguUrrI/7gFiXwub2jTKTOI1ppLEx8M/Jka4ypgb3E=", + "hash": "sha256-Cf3plUhdewlq3MvOqZGcICP0j9R3vg0nZdBMrk/Et7k=", "homepage": "https://registry.terraform.io/providers/aliyun/alicloud", "owner": "aliyun", "repo": "terraform-provider-alicloud", - "rev": "v1.198.0", + "rev": "v1.199.0", "spdx": "MPL-2.0", "vendorHash": null }, From ed5faba4afaa791ab1bceb17cdf81cef054f2666 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 03:18:48 +0000 Subject: [PATCH 122/178] =?UTF-8?q?terraform-providers.scaleway:=202.10.0?= =?UTF-8?q?=20=E2=86=92=202.11.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 2b0c642c8915..657941e8c75e 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -964,13 +964,13 @@ "vendorHash": null }, "scaleway": { - "hash": "sha256-tLSTRoiqhi+CbdF8fmNLNMYN7FrDeoK/5XXyqCJnUKk=", + "hash": "sha256-HpdXghgEZ3UAv+njHQws1/f23tKquWwafO/O9X29c1M=", "homepage": "https://registry.terraform.io/providers/scaleway/scaleway", "owner": "scaleway", "repo": "terraform-provider-scaleway", - "rev": "v2.10.0", + "rev": "v2.11.0", "spdx": "MPL-2.0", - "vendorHash": "sha256-cT9W2fP56TPOIoxWBWF0VXDuSKXZsJNs/GPpBq/0zZs=" + "vendorHash": "sha256-e/Pqu58ngWnoMKjDKEUm49e0D0PfYEqxm/BxfN8UX3c=" }, "secret": { "hash": "sha256-MmAnA/4SAPqLY/gYcJSTnEttQTsDd2kEdkQjQj6Bb+A=", From f930ea64f1c28901b968063ad01756b7f8bb1fd0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 03:21:24 +0000 Subject: [PATCH 123/178] =?UTF-8?q?terraform-providers.snowflake:=200.56.4?= =?UTF-8?q?=20=E2=86=92=200.56.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/cluster/terraform-providers/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 657941e8c75e..4c2015a39c69 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1027,13 +1027,13 @@ "vendorHash": null }, "snowflake": { - "hash": "sha256-aFRjbr0Gzu2GtxJrIEl7ahEcnOQOprJQnetaIzPePAo=", + "hash": "sha256-gXi/S+DMPU0RROYtrLkV7eIgpQMDaFwz5uCeeoe51L4=", "homepage": "https://registry.terraform.io/providers/Snowflake-Labs/snowflake", "owner": "Snowflake-Labs", "repo": "terraform-provider-snowflake", - "rev": "v0.56.4", + "rev": "v0.56.5", "spdx": "MIT", - "vendorHash": "sha256-shzsn3N6pVFe6ecaoXpv6ZZ27MEUUV82gnRMHFEtYlU=" + "vendorHash": "sha256-yFk5ap28JluaKkUPfePBuRUEg6/Ma5MrRkmWK6iAGNg=" }, "sops": { "hash": "sha256-D1Yzs8hDimMP9y8ZRbizEhic3vGtLcZjOVSuSMUAqPk=", From fafad6c95b77942a617cf84bb6366a2c72587654 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Feb 2023 03:23:02 +0000 Subject: [PATCH 124/178] =?UTF-8?q?terraform-providers.oci:=204.108.0=20?= =?UTF-8?q?=E2=86=92=204.108.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/cluster/terraform-providers/providers.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 4c2015a39c69..5dad507ec172 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -811,11 +811,11 @@ "vendorHash": "sha256-LRIfxQGwG988HE5fftGl6JmBG7tTknvmgpm4Fu1NbWI=" }, "oci": { - "hash": "sha256-PjtsFrUwLsSLXog/n6JkFLFPZm7FPa/n8N5IJ0vkuuE=", + "hash": "sha256-JkJEghLvttmQ1Hc9s8fbUXa/onDNuKDBb0k1gXD373s=", "homepage": "https://registry.terraform.io/providers/oracle/oci", "owner": "oracle", "repo": "terraform-provider-oci", - "rev": "v4.108.0", + "rev": "v4.108.1", "spdx": "MPL-2.0", "vendorHash": null }, From 1a13a32dcdf26ce8fb0d38cbeaf1ca3171077c17 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Feb 2023 08:10:01 +0000 Subject: [PATCH 125/178] jujutsu: 0.6.1 -> 0.7.0 --- pkgs/applications/version-management/jujutsu/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/jujutsu/default.nix b/pkgs/applications/version-management/jujutsu/default.nix index d198b528f2ad..36c67568020c 100644 --- a/pkgs/applications/version-management/jujutsu/default.nix +++ b/pkgs/applications/version-management/jujutsu/default.nix @@ -15,16 +15,16 @@ rustPlatform.buildRustPackage rec { pname = "jujutsu"; - version = "0.6.1"; + version = "0.7.0"; src = fetchFromGitHub { owner = "martinvonz"; repo = "jj"; rev = "v${version}"; - sha256 = "sha256-ajBL2o5i4UmclL/s9eEVtn/p51/F4gsClmcYBrAZ+1o="; + sha256 = "sha256-FczlSBlLhLIamLiY4cGVAoHx0/sxx+tykICzedFbbx8="; }; - cargoSha256 = "sha256-RgF2StIMfFzbp0azG4yRPvzrZ4kczWtOWVd+KTTPbRw="; + cargoHash = "sha256-PydDgXp47KUSLvAQgfO+09lrzTnBjzGd+zA5f/jZfRc="; # Needed to get openssl-sys to use pkg-config. OPENSSL_NO_VENDOR = 1; From 68f80b556e2c05dc8fe44bb59a8fae2c627c74f1 Mon Sep 17 00:00:00 2001 From: Michael Adler Date: Mon, 20 Feb 2023 08:04:16 +0100 Subject: [PATCH 126/178] citrix_workspace: 22.12.0 -> 23.02.0 --- .../networking/remote/citrix-workspace/sources.nix | 11 +++++++++++ pkgs/top-level/all-packages.nix | 3 ++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/remote/citrix-workspace/sources.nix b/pkgs/applications/networking/remote/citrix-workspace/sources.nix index 4acc2c57f19f..e4d3caee98f5 100644 --- a/pkgs/applications/networking/remote/citrix-workspace/sources.nix +++ b/pkgs/applications/networking/remote/citrix-workspace/sources.nix @@ -66,6 +66,17 @@ let x86hash = "b73f90fe51bbb7391c188a394ea614b67f128ed0d9481bd7824cbcadc0338dae"; x64suffix = "12"; x86suffix = "12"; + homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest5.html"; + }; + + "23.02.0" = { + major = "23"; + minor = "2"; + patch = "0"; + x64hash = "d0030a4782ba4b2628139635a12a7de044a4eb36906ef1eadb05b6ea77c1a7bc"; + x86hash = "39228fc8dd69adca4e56991c1ebc0832fec183c3ab5abd2d65c66b39b634391b"; + x64suffix = "10"; + x86suffix = "10"; homepage = "https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html"; }; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c4aad7709039..9a848e7d6b1a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5992,8 +5992,9 @@ with pkgs; citrix_workspace_22_05_0 citrix_workspace_22_07_0 citrix_workspace_22_12_0 + citrix_workspace_23_02_0 ; - citrix_workspace = citrix_workspace_22_12_0; + citrix_workspace = citrix_workspace_23_02_0; cmigemo = callPackage ../tools/text/cmigemo { }; From d6ac9feb22f89188ad414d8c901945e2799402cb Mon Sep 17 00:00:00 2001 From: Michael Adler Date: Wed, 22 Feb 2023 09:35:40 +0100 Subject: [PATCH 127/178] citrix-workspace: remove all previous versions A vulnerability has been identified in Citrix Workspace app for Linux that, if exploited, may result in a malicious local user being able to gain access to the Citrix Virtual Apps and Desktops session of another user who is using the same computer from which the ICA session is launched. This issue affects all supported versions of Citrix Workspace app for Linux before 2302 See https://support.citrix.com/article/CTX477618/citrix-workspace-app-for-linux-security-bulletin-for-cve202324486 --- .../remote/citrix-workspace/sources.nix | 55 ------------------- pkgs/top-level/all-packages.nix | 5 -- 2 files changed, 60 deletions(-) diff --git a/pkgs/applications/networking/remote/citrix-workspace/sources.nix b/pkgs/applications/networking/remote/citrix-workspace/sources.nix index e4d3caee98f5..78f8b1a2a0c8 100644 --- a/pkgs/applications/networking/remote/citrix-workspace/sources.nix +++ b/pkgs/applications/networking/remote/citrix-workspace/sources.nix @@ -14,61 +14,6 @@ let # The latest versions can be found at https://www.citrix.com/downloads/workspace-app/linux/ supportedVersions = lib.mapAttrs mkVersionInfo { - "21.09.0" = { - major = "21"; - minor = "9"; - patch = "0"; - x64hash = "d58d5cbbcb5ace95b75b1400061d475b8e72dbdf5f03abacea6d39686991f848"; - x86hash = "c646c52889e88aa0bb051070076763d5407f21fb6ad6dfcb0fe635ac01180c51"; - x64suffix = "25"; - x86suffix = "25"; - homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-2109.html"; - }; - - "21.12.0" = { - major = "21"; - minor = "12"; - patch = "0"; - x64hash = "de81deab648e1ebe0ddb12aa9591c8014d7fad4eba0db768f25eb156330bb34d"; - x86hash = "3746cdbe26727f7f6fb85fbe5f3e6df0322d79bb66e3a70158b22cb4f6b6b292"; - x64suffix = "18"; - x86suffix = "18"; - homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-2112.html"; - }; - - "22.05.0" = { - major = "22"; - minor = "5"; - patch = "0"; - x64hash = "49786fd3b5361b1f42b7bb0e36572a209e95acb1335737da5216345b6420f053"; - x86hash = "f2dc1fd64e5314b62ba87f384958c2bbd48b06b55bed10345cddb05fdc8cffa1"; - x64suffix = "16"; - x86suffix = "16"; - homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest2.html"; - }; - - "22.07.0" = { - major = "22"; - minor = "7"; - patch = "0"; - x64hash = "ba88490e457e0fe6c610778396e40293067173c182f2343c8c1fda5e2444985c"; - x86hash = "ed9ff8b3be968cacaf6121c783326091899b987e53fac1aafae68ea3e5883403"; - x64suffix = "14"; - x86suffix = "14"; - homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest-OLD1.html"; - }; - - "22.12.0" = { - major = "22"; - minor = "12"; - patch = "0"; - x64hash = "3ec5a3d5526a6bac17bb977b173542f5bdd535a53baa6dca80c83a0d61229d74"; - x86hash = "b73f90fe51bbb7391c188a394ea614b67f128ed0d9481bd7824cbcadc0338dae"; - x64suffix = "12"; - x86suffix = "12"; - homepage = "https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-latest5.html"; - }; - "23.02.0" = { major = "23"; minor = "2"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9a848e7d6b1a..66f39c1a28e7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5987,11 +5987,6 @@ with pkgs; cirrusgo = callPackage ../tools/security/cirrusgo { }; inherit (callPackage ../applications/networking/remote/citrix-workspace { }) - citrix_workspace_21_09_0 - citrix_workspace_21_12_0 - citrix_workspace_22_05_0 - citrix_workspace_22_07_0 - citrix_workspace_22_12_0 citrix_workspace_23_02_0 ; citrix_workspace = citrix_workspace_23_02_0; From 935d0e208a84c1995095596e2e5689289d0124cf Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 17 Feb 2023 07:47:42 +0100 Subject: [PATCH 128/178] ocamlPackages.elpi: fix camlp5 dependency --- pkgs/development/ocaml-modules/elpi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/elpi/default.nix b/pkgs/development/ocaml-modules/elpi/default.nix index 1c60c963ed91..e921ffd06456 100644 --- a/pkgs/development/ocaml-modules/elpi/default.nix +++ b/pkgs/development/ocaml-modules/elpi/default.nix @@ -37,8 +37,8 @@ buildDunePackage rec { minimalOCamlVersion = "4.04"; # atdgen is both a library and executable - nativeBuildInputs = [ perl camlp5 ] - ++ lib.optional (lib.versionAtLeast version "1.15" || version == "dev") menhir + nativeBuildInputs = [ perl ] + ++ [ (if lib.versionAtLeast version "1.15" || version == "dev" then menhir else camlp5) ] ++ lib.optional (lib.versionAtLeast version "1.16" || version == "dev") atdgen; buildInputs = [ ncurses ] ++ lib.optional (lib.versionAtLeast version "1.16" || version == "dev") atdgen; From 266379497d05887872ecc23b05ff0a1a1c1899d7 Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Mon, 20 Feb 2023 15:59:12 -0500 Subject: [PATCH 129/178] cuda-samples: init 11.8 --- pkgs/test/cuda/cuda-samples/extension.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/test/cuda/cuda-samples/extension.nix b/pkgs/test/cuda/cuda-samples/extension.nix index 352f58397c6b..b598f0202f9d 100644 --- a/pkgs/test/cuda/cuda-samples/extension.nix +++ b/pkgs/test/cuda/cuda-samples/extension.nix @@ -11,9 +11,8 @@ final: prev: let "11.4" = "082dkk5y34wyvjgj2p5j1d00rk8xaxb9z0mhvz16bd469r1bw2qk"; "11.5" = "sha256-AKRZbke0K59lakhTi8dX2cR2aBuWPZkiQxyKaZTvHrI="; "11.6" = "sha256-AsLNmAplfuQbXg9zt09tXAuFJ524EtTYsQuUlV1tPkE="; - # maybe fixed by https://github.com/NVIDIA/cuda-samples/pull/133 "11.7" = throw "The tag 11.7 of cuda-samples does not exist"; - "11.8" = throw "The tag 11.8 of cuda-samples does not exist"; + "11.8" = "sha256-7+1P8+wqTKUGbCUBXGMDO9PkxYr2+PLDx9W2hXtXbuc="; }.${prev.cudaVersion}; in { From e44a34a0f683c1e3891d98bfa41ac2b34b416f5b Mon Sep 17 00:00:00 2001 From: snicket2100 <57048005+snicket2100@users.noreply.github.com> Date: Wed, 22 Feb 2023 10:18:54 +0100 Subject: [PATCH 130/178] kaffeine: enable v4l support (#180963) for libdvbv5, enables the "Digital TV" feature --- pkgs/applications/video/kaffeine/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/video/kaffeine/default.nix b/pkgs/applications/video/kaffeine/default.nix index 6cbce01f61f6..02263f46e0f4 100644 --- a/pkgs/applications/video/kaffeine/default.nix +++ b/pkgs/applications/video/kaffeine/default.nix @@ -5,6 +5,7 @@ , cmake , extra-cmake-modules , libvlc +, libv4l , libX11 , kidletime , kdelibs4support @@ -33,6 +34,7 @@ stdenv.mkDerivation rec { buildInputs = [ libvlc + libv4l libX11 kidletime qtx11extras From e75947861f4dee9f5f8c73a57267fc10c7bcc9ff Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 22 Feb 2023 09:53:12 +0100 Subject: [PATCH 131/178] terraform-providers.talos: init at 0.1.1 --- .../cluster/terraform-providers/providers.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.json b/pkgs/applications/networking/cluster/terraform-providers/providers.json index 5dad507ec172..128e2de529b5 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.json +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.json @@ -1089,6 +1089,15 @@ "spdx": "MIT", "vendorHash": "sha256-2wPmLpjhG6QgG+BUCO0oIzHjBOWIOYuptgdtSIm9TZw=" }, + "talos": { + "hash": "sha256-Uj4UlxPvI80og/wJPtQgyrejXLcfc6R4IJfsXiVNm+Y=", + "homepage": "https://registry.terraform.io/providers/siderolabs/talos", + "owner": "siderolabs", + "repo": "terraform-provider-talos", + "rev": "v0.1.1", + "spdx": "MPL-2.0", + "vendorHash": "sha256-tltQNtTsPoT5CTrKM7vLDVkmmW2FTd6MBubfXZveGxI=" + }, "tencentcloud": { "hash": "sha256-9SuXHKdOmmcYFWgf/WNL5CEYoxCdfOWa1afJ7frJJ20=", "homepage": "https://registry.terraform.io/providers/tencentcloudstack/tencentcloud", From d448fdb12856961e3248605303541203acc62212 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Feb 2023 05:21:29 +0000 Subject: [PATCH 132/178] aliyun-cli: 3.0.141 -> 3.0.149 --- pkgs/tools/admin/aliyun-cli/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/aliyun-cli/default.nix b/pkgs/tools/admin/aliyun-cli/default.nix index 471acf211dfc..6118afa5c139 100644 --- a/pkgs/tools/admin/aliyun-cli/default.nix +++ b/pkgs/tools/admin/aliyun-cli/default.nix @@ -2,17 +2,17 @@ buildGoModule rec { pname = "aliyun-cli"; - version = "3.0.141"; + version = "3.0.149"; src = fetchFromGitHub { rev = "v${version}"; owner = "aliyun"; repo = pname; fetchSubmodules = true; - sha256 = "sha256-DHUr820X3aUoUE3b22Xrd8JX8aB5arFk1nSWo/UdfPc="; + sha256 = "sha256-F7CC+WawCnPickKSkRqKra9UfO808EDbLvRNBYdp5QU="; }; - vendorSha256 = "sha256-aviRsflpS9/o2B7mpYQE7d9ahLclM+jiVz+cJOlegCY="; + vendorHash = "sha256-GVx0mgpbftyy9Eni3IYFmvWcaGnm5Nuqh4KvGeqhVu4="; subPackages = [ "main" ]; From a11e546c4e06260dd0604665d1db0dab5879f105 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Feb 2023 09:30:28 +0000 Subject: [PATCH 133/178] nfpm: 2.25.1 -> 2.26.0 --- pkgs/tools/package-management/nfpm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/nfpm/default.nix b/pkgs/tools/package-management/nfpm/default.nix index 5dc3859de56f..bf407558d485 100644 --- a/pkgs/tools/package-management/nfpm/default.nix +++ b/pkgs/tools/package-management/nfpm/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "nfpm"; - version = "2.25.1"; + version = "2.26.0"; src = fetchFromGitHub { owner = "goreleaser"; repo = pname; rev = "v${version}"; - sha256 = "sha256-J5vAvF22NKMvvaftfVugWYAP6uM6pcyKEPqRDf+J9A4="; + sha256 = "sha256-MRtmfRriHArmzSfSr4Wf3+2wA3sOlHZs2HKQ2d+Bd20="; }; - vendorHash = "sha256-GaESwr7rvDvjQ7zi/LbndiB2lQGmIELTx7wAJitj5kw="; + vendorHash = "sha256-UUpi/6R36g6ofnEmn/qxEeJlzM/INYD4FuvRaBZ6pss="; ldflags = [ "-s" "-w" "-X main.version=${version}" ]; From e1ed95404d8591632e0bc6866cfbe371cfef81b4 Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Mon, 20 Feb 2023 21:32:24 -0800 Subject: [PATCH 134/178] engage: init at 0.1.2 --- pkgs/tools/misc/engage/default.nix | 29 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/misc/engage/default.nix diff --git a/pkgs/tools/misc/engage/default.nix b/pkgs/tools/misc/engage/default.nix new file mode 100644 index 000000000000..c01dcc2e6879 --- /dev/null +++ b/pkgs/tools/misc/engage/default.nix @@ -0,0 +1,29 @@ +{ lib +, rustPlatform +, fetchgit +}: + +let + pname = "engage"; + version = "0.1.2"; +in +rustPlatform.buildRustPackage { + inherit pname version; + + # fetchFromGitLab doesn't work on GitLab's end for unknown reasons + src = fetchgit { + url = "https://or.computer.surgery/charles/${pname}"; + rev = "v${version}"; + hash = "sha256-7zLFgTLeAIaMMoj0iThH/5UhnV9OUGe9CVwbbShCieo="; + }; + + cargoHash = "sha256-+4uqC0VoBSmkS9hYC1lzWeJmK873slZT04TljHPE+Eo="; + + meta = { + description = "A task runner with DAG-based parallelism"; + homepage = "https://or.computer.surgery/charles/engage"; + changelog = "https://or.computer.surgery/charles/engage/-/blob/v${version}/CHANGELOG.md"; + license = with lib.licenses; [ asl20 mit ]; + maintainers = with lib.maintainers; [ CobaltCause ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3f7c591eae2b..6666964e214e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4550,6 +4550,8 @@ with pkgs; enca = callPackage ../tools/text/enca { }; + engage = callPackage ../tools/misc/engage { }; + ent = callPackage ../tools/misc/ent { }; entwine = callPackage ../applications/graphics/entwine { }; From dd73b3e57b46282b0d220fefa6c3970dcbaceb69 Mon Sep 17 00:00:00 2001 From: Jon Molina Date: Wed, 15 Feb 2023 21:07:08 -0800 Subject: [PATCH 135/178] termius: 7.45.3 -> 7.56.1 --- pkgs/applications/networking/termius/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/termius/default.nix b/pkgs/applications/networking/termius/default.nix index e349cf0db141..dd37e32b36e4 100644 --- a/pkgs/applications/networking/termius/default.nix +++ b/pkgs/applications/networking/termius/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { pname = "termius"; - version = "7.45.3"; + version = "7.56.1"; src = fetchurl { # find the latest version with @@ -22,8 +22,8 @@ stdenv.mkDerivation rec { # curl -H 'X-Ubuntu-Series: 16' https://api.snapcraft.io/api/v1/snaps/details/termius-app | jq '.download_url' -r # and the sha512 with # curl -H 'X-Ubuntu-Series: 16' https://api.snapcraft.io/api/v1/snaps/details/termius-app | jq '.download_sha512' -r - url = "https://api.snapcraft.io/api/v1/snaps/download/WkTBXwoX81rBe3s3OTt3EiiLKBx2QhuS_123.snap"; - sha512 = "1a43ece6ccb0f5a7b29a3ff0c41f27b0d82bd90214cc3d0b88dbd57ecaf2f59c092906e7ed377e3d04f2fc418027f7a0cb7f2e4458ef619663b84b080581c375"; + url = "https://api.snapcraft.io/api/v1/snaps/download/WkTBXwoX81rBe3s3OTt3EiiLKBx2QhuS_144.snap"; + sha512 = "aad9ab72ad3dcbb897fa99139b83993770c243f49e8784c34ac38603f0d76578374723e756c4f51ea2d0a39f6b9c7738e7ce070a8ddfa11f8cf831260563f6d9"; }; desktopItem = makeDesktopItem { From 83a2bd87eaacff5355ae69d25cdf2384bec87b94 Mon Sep 17 00:00:00 2001 From: Alexey Orlenko Date: Sun, 12 Feb 2023 17:24:08 +0100 Subject: [PATCH 136/178] prisma-engines: 4.9.0 -> 4.10.1 --- pkgs/development/tools/database/prisma-engines/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/database/prisma-engines/default.nix b/pkgs/development/tools/database/prisma-engines/default.nix index e42c42e14960..591059676e1c 100644 --- a/pkgs/development/tools/database/prisma-engines/default.nix +++ b/pkgs/development/tools/database/prisma-engines/default.nix @@ -14,19 +14,19 @@ # function correctly. rustPlatform.buildRustPackage rec { pname = "prisma-engines"; - version = "4.9.0"; + version = "4.10.1"; src = fetchFromGitHub { owner = "prisma"; repo = "prisma-engines"; rev = version; - sha256 = "sha256-Nxpv3ibhHTFiO0hqSrT1hqTK9Vb0P8Svu5riufCChwI="; + sha256 = "sha256-TFLwpKh+FsstcpvBfTw7CNcQOGGSNI9qf8WJ6v75uL8="; }; # Use system openssl. OPENSSL_NO_VENDOR = 1; - cargoSha256 = "sha256-PiDW7+LrCDfRpQirJlgaYDnGenowbsCmwQz1mbgA08E="; + cargoSha256 = "sha256-EPym9MLwTMGBbJkVMKD/NEc6Vfm7nI4FaDkqy/0B14Q="; nativeBuildInputs = [ pkg-config git ]; From 2ee4b38b75b3e74f2944aa9674a79348d1231a9c Mon Sep 17 00:00:00 2001 From: Alexey Orlenko Date: Sun, 12 Feb 2023 17:27:25 +0100 Subject: [PATCH 137/178] nodePackages.prisma: 4.9.0 -> 4.10.1 --- pkgs/development/node-packages/overrides.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index 1a1049044355..f3a450d28840 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -402,7 +402,7 @@ final: prev: { src = fetchurl { url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz"; - sha512 = "sha512-bS96oZ5oDFXYgoF2l7PJ3Mp1wWWfLOo8B/jAfbA2Pn0Wm5Z/owBHzaMQKS3i1CzVBDWWPVnOohmbJmjvkcHS5w=="; + sha512 = "sha512-0jDxgg+DruB1kHVNlcspXQB9au62IFfVg9drkhzXudszHNUAQn0lVuu+T8np0uC2z1nKD5S3qPeCyR8u5YFLnA=="; }; postInstall = with pkgs; '' wrapProgram "$out/bin/prisma" \ From 02573873ec68b7b93f93b9a7f5e8132195ae43c6 Mon Sep 17 00:00:00 2001 From: Diego Pontoriero <74719+diegs@users.noreply.github.com> Date: Wed, 22 Feb 2023 02:21:34 -0800 Subject: [PATCH 138/178] nodePackages.graphite-cli: fix zsh completion The yargs library auto-detects the shell from the environment to emit the appropriate completion script. Currently the override is emitting the bash completion script twice. Setting ZSH_NAME=zsh is a simple way to emit the zshell completion script. --- pkgs/development/node-packages/overrides.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/node-packages/overrides.nix b/pkgs/development/node-packages/overrides.nix index f3a450d28840..3c22331fe5a2 100644 --- a/pkgs/development/node-packages/overrides.nix +++ b/pkgs/development/node-packages/overrides.nix @@ -188,10 +188,12 @@ final: prev: { graphite-cli = prev."@withgraphite/graphite-cli".override { name = "graphite-cli"; nativeBuildInputs = [ pkgs.installShellFiles ]; + # 'gt completion' auto-detects zshell from environment variables: + # https://github.com/yargs/yargs/blob/2b6ba3139396b2e623aed404293f467f16590039/lib/completion.ts#L45 postInstall = '' installShellCompletion --cmd gt \ --bash <($out/bin/gt completion) \ - --zsh <($out/bin/gt completion) + --zsh <(ZSH_NAME=zsh $out/bin/gt completion) ''; }; From ed3f6b751c8a130bad9c92d017248db2eb18a03c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Wed, 22 Feb 2023 11:24:11 +0100 Subject: [PATCH 139/178] python310Packages.tempest: add missing input Co-authored-by: Fabian Affolter <116184+fabaff@users.noreply.github.com> --- pkgs/development/python-modules/tempest/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/tempest/default.nix b/pkgs/development/python-modules/tempest/default.nix index 7198620b8ff0..6b63caae06cf 100644 --- a/pkgs/development/python-modules/tempest/default.nix +++ b/pkgs/development/python-modules/tempest/default.nix @@ -1,5 +1,6 @@ { lib , buildPythonPackage +, defusedxml , fetchPypi , pbr , cliff @@ -38,6 +39,7 @@ buildPythonPackage rec { propagatedBuildInputs = [ pbr cliff + defusedxml jsonschema testtools paramiko From 9713bb59c080d403537aa7dae52531b2868a08f1 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Mon, 20 Feb 2023 12:23:14 +0100 Subject: [PATCH 140/178] python310Packages.tempest: disable on unsupported Python releases --- pkgs/development/python-modules/tempest/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/tempest/default.nix b/pkgs/development/python-modules/tempest/default.nix index 6b63caae06cf..ca79b7b771c2 100644 --- a/pkgs/development/python-modules/tempest/default.nix +++ b/pkgs/development/python-modules/tempest/default.nix @@ -15,6 +15,7 @@ , oslo-serialization , oslo-utils , fixtures +, pythonOlder , pyyaml , subunit , stevedore @@ -30,6 +31,9 @@ buildPythonPackage rec { pname = "tempest"; version = "33.0.0"; + format = "setuptools"; + + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; From 081eb4d8895424207fd0cb3131cf7c2dcc146202 Mon Sep 17 00:00:00 2001 From: Bouke van der Bijl Date: Wed, 22 Feb 2023 12:14:01 +0100 Subject: [PATCH 141/178] openmvg: set target architecture to 'generic' Otherwise the resulting binaries are specialized for the machine they're built on (like -march=native) --- pkgs/applications/science/misc/openmvg/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/science/misc/openmvg/default.nix b/pkgs/applications/science/misc/openmvg/default.nix index 9bd4cf12db03..e83a13d165f0 100644 --- a/pkgs/applications/science/misc/openmvg/default.nix +++ b/pkgs/applications/science/misc/openmvg/default.nix @@ -28,6 +28,7 @@ stdenv.mkDerivation rec { "-DCMAKE_CXX_FLAGS=-std=c++11" "-DOpenMVG_BUILD_EXAMPLES=${if enableExamples then "ON" else "OFF"}" "-DOpenMVG_BUILD_DOC=${if enableDocs then "ON" else "OFF"}" + "-DTARGET_ARCHITECTURE=generic" ] ++ lib.optional enableShared "-DOpenMVG_BUILD_SHARED=ON"; cmakeDir = "./src"; From ebc120c155ba811ba16a1721817a9fc177259227 Mon Sep 17 00:00:00 2001 From: Bouke van der Bijl Date: Wed, 22 Feb 2023 12:27:49 +0100 Subject: [PATCH 142/178] openmvg: use ceres-solver from nixpkgs The vendored one gets built with -march=native --- pkgs/applications/science/misc/openmvg/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/science/misc/openmvg/default.nix b/pkgs/applications/science/misc/openmvg/default.nix index e83a13d165f0..f9bcfa5df73c 100644 --- a/pkgs/applications/science/misc/openmvg/default.nix +++ b/pkgs/applications/science/misc/openmvg/default.nix @@ -4,6 +4,7 @@ , libpng ? null , eigen ? null , libtiff ? null +, ceres-solver , enableShared ? !stdenv.hostPlatform.isStatic , enableExamples ? false , enableDocs ? false }: @@ -20,7 +21,7 @@ stdenv.mkDerivation rec { fetchSubmodules = true; }; - buildInputs = [ libjpeg zlib libpng eigen libtiff cereal openmp ]; + buildInputs = [ libjpeg zlib libpng eigen libtiff cereal openmp ceres-solver ]; nativeBuildInputs = [ cmake pkg-config ]; From 5e489eee1b85503960fc8496d5e27593a7eca6fd Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sun, 19 Feb 2023 20:28:10 +0100 Subject: [PATCH 143/178] phpunit: init at 10.0.11 --- .../tools/misc/phpunit/default.nix | 35 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 37 insertions(+) create mode 100644 pkgs/development/tools/misc/phpunit/default.nix diff --git a/pkgs/development/tools/misc/phpunit/default.nix b/pkgs/development/tools/misc/phpunit/default.nix new file mode 100644 index 000000000000..0b95f2f17021 --- /dev/null +++ b/pkgs/development/tools/misc/phpunit/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, makeWrapper, lib, php }: + +let + pname = "phpunit"; + version = "10.0.11"; +in +stdenv.mkDerivation { + inherit pname version; + + src = fetchurl { + url = "https://phar.phpunit.de/phpunit-${version}.phar"; + hash = "sha256-zAAFDiZ2wjncGMI4c74+tzWR++rKMjv1h5gk2GobhbI="; + }; + + dontUnpack = true; + + nativeBuildInputs = [ makeWrapper ]; + + installPhase = '' + runHook preInstall + mkdir -p $out/bin + install -D $src $out/libexec/phpunit/phpunit.phar + makeWrapper ${php}/bin/php $out/bin/phpunit \ + --add-flags "$out/libexec/phpunit/phpunit.phar" + runHook postInstall + ''; + + meta = with lib; { + description = "PHP Unit Testing framework"; + license = licenses.bsd3; + homepage = "https://phpunit.de"; + changelog = "https://github.com/sebastianbergmann/phpunit/blob/${version}/ChangeLog-${lib.versions.majorMinor version}.md"; + maintainers = with maintainers; [ onny ] ++ teams.php.members; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c4aad7709039..c7f3b50bc684 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17056,6 +17056,8 @@ with pkgs; ansible-doctor = with python3.pkgs; toPythonApplication ansible-doctor; + phpunit = callPackage ../development/tools/misc/phpunit { }; + ### DEVELOPMENT / TOOLS / LANGUAGE-SERVERS ansible-language-server = callPackage ../development/tools/language-servers/ansible-language-server { }; From 3a99b25647af22de7d691fccbe90996d19ff727d Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Feb 2023 11:56:38 +0000 Subject: [PATCH 144/178] tbls: 1.62.0 -> 1.62.1 --- pkgs/tools/misc/tbls/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/tbls/default.nix b/pkgs/tools/misc/tbls/default.nix index bca16be194f1..f0f87fbfab9f 100644 --- a/pkgs/tools/misc/tbls/default.nix +++ b/pkgs/tools/misc/tbls/default.nix @@ -7,16 +7,16 @@ buildGoModule rec { pname = "tbls"; - version = "1.62.0"; + version = "1.62.1"; src = fetchFromGitHub { owner = "k1LoW"; repo = "tbls"; rev = "v${version}"; - hash = "sha256-T2zmgGbhWvqaor76mQuQ1O5bF+eGVaH6N4w17iyNhwU="; + hash = "sha256-x3Bh/xB/x71xNjVL5zqp1ag8TPQoxOpuOyDE1f54sGQ="; }; - vendorHash = "sha256-AeaTAjo1wRl7Ymg/fyoijaa9UXf9SiNR447WJtZeN5o="; + vendorHash = "sha256-YrDQSySBplYgakgvb6BwK1AK6h0Usy8MvCndHSSYrlQ="; CGO_CFLAGS = [ "-Wno-format-security" ]; From 2343d23c4494505a3b2d53df4a255c6960b5ddd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Na=C3=AFm=20Favier?= Date: Wed, 22 Feb 2023 13:03:53 +0100 Subject: [PATCH 145/178] dwarf-fortress: unfuck unfuck --- pkgs/games/dwarf-fortress/unfuck.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/games/dwarf-fortress/unfuck.nix b/pkgs/games/dwarf-fortress/unfuck.nix index 27b54667f0b9..9b7de93ecd7d 100644 --- a/pkgs/games/dwarf-fortress/unfuck.nix +++ b/pkgs/games/dwarf-fortress/unfuck.nix @@ -82,6 +82,11 @@ stdenv.mkDerivation { sha256 = release.sha256; }; + postPatch = '' + # https://github.com/svenstaro/dwarf_fortress_unfuck/pull/27 + substituteInPlace CMakeLists.txt --replace \''${GLEW_LIBRARIES} GLEW::glew + ''; + cmakeFlags = [ "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include" "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include" From 26ded81fa4c5beb85c17945d04da3469b66f3776 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Feb 2023 12:44:42 +0000 Subject: [PATCH 146/178] clj-kondo: 2023.01.20 -> 2023.02.17 --- pkgs/development/tools/clj-kondo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/clj-kondo/default.nix b/pkgs/development/tools/clj-kondo/default.nix index 741983b7e6f4..6b0ddc25d110 100644 --- a/pkgs/development/tools/clj-kondo/default.nix +++ b/pkgs/development/tools/clj-kondo/default.nix @@ -2,11 +2,11 @@ buildGraalvmNativeImage rec { pname = "clj-kondo"; - version = "2023.01.20"; + version = "2023.02.17"; src = fetchurl { url = "https://github.com/clj-kondo/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar"; - sha256 = "sha256-QS4/kGR3QqwUk0U68AdKvip9YJndltx7YBo9IhZ9syY="; + sha256 = "sha256-HVwZZ280ZABgG/LAAaRfq6wYmUF1c2ojR7XLMCwVSk0="; }; extraNativeImageBuildArgs = [ From fb3a27fade656122e28afde3d8263e933f54ed93 Mon Sep 17 00:00:00 2001 From: Adam Joseph <54836058+amjoseph-nixpkgs@users.noreply.github.com> Date: Wed, 22 Feb 2023 13:21:54 +0000 Subject: [PATCH 147/178] qemacs: 0.3.3 -> 5.4.1c (#209418) * qemacs: fix cross-compilation Also adds enableX11 parameter. * qemacs: 0.3.3 -> 5.4.1c --------- Co-authored-by: Artturi --- pkgs/applications/editors/qemacs/default.nix | 43 +++++++++++++++++--- 1 file changed, 37 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/editors/qemacs/default.nix b/pkgs/applications/editors/qemacs/default.nix index 9fc91fbe1977..6960ecb3d34e 100644 --- a/pkgs/applications/editors/qemacs/default.nix +++ b/pkgs/applications/editors/qemacs/default.nix @@ -1,15 +1,46 @@ -{ fetchurl, lib, stdenv, libX11, libXext, libXv, libpng }: +{ lib +, stdenv +, fetchFromGitHub +, buildPackages +, which +, texi2html +, enableX11 ? true +, libX11, libXext, libXv, libpng +}: stdenv.mkDerivation rec { pname = "qemacs"; - version = "0.3.3"; + version = "5.4.1c"; - src = fetchurl { - url = "https://bellard.org/${pname}/${pname}-${version}.tar.gz"; - sha256 = "156z4wpj49i6j388yjird5qvrph7hz0grb4r44l4jf3q8imadyrg"; + src = fetchFromGitHub { + owner = "qemacs"; + repo = "qemacs"; + rev = "216b3ff8b77ff138aec22045522d5601b7390e58"; + hash = "sha256-ngVaZZdr/Ym9YswLqzUtDytC0K7L9mKgORopLghGH3k="; }; - buildInputs = [ libpng libX11 libXext libXv ]; + postPatch = '' + substituteInPlace Makefile --replace \ + '$(INSTALL) -m 755 -s' \ + '$(INSTALL) -m 755 -s --strip-program=${stdenv.cc.targetPrefix}strip' + ''; + + nativeBuildInputs = [ which texi2html ]; + buildInputs = lib.optionals enableX11 [ libpng libX11 libXext libXv ]; + + enableParallelBuilding = true; + + configureFlags = [ + "--cross-prefix=${stdenv.cc.targetPrefix}" + ] ++ lib.optionals (!enableX11) [ + "--disable-x11" + ]; + + makeFlags = [ + # is actually used as BUILD_CC + "HOST_CC=${buildPackages.stdenv.cc}/bin/cc" + "CC=${stdenv.cc.targetPrefix}cc" + ]; preInstall = '' mkdir -p $out/bin $out/man From eea5dc6e5d622667b990e2e4b5bb997b4434148f Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Wed, 22 Feb 2023 14:11:00 +0100 Subject: [PATCH 148/178] python3Packages.grad-cam: Fix alias-free eval scikitlearn -> scikit-learn on 2021-07-21 --- pkgs/development/python-modules/grad-cam/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/grad-cam/default.nix b/pkgs/development/python-modules/grad-cam/default.nix index 4e43915c86df..bdfa8c0e49c0 100644 --- a/pkgs/development/python-modules/grad-cam/default.nix +++ b/pkgs/development/python-modules/grad-cam/default.nix @@ -6,7 +6,7 @@ , numpy , opencv4 , pillow -, scikitlearn +, scikit-learn , torch , torchvision , ttach @@ -33,7 +33,7 @@ buildPythonPackage rec { numpy opencv4 pillow - scikitlearn + scikit-learn torchvision ttach tqdm From 3348c60d06bb1a51308d506ba505469d121f3ee8 Mon Sep 17 00:00:00 2001 From: Tom Hall Date: Sat, 4 Feb 2023 17:28:30 +0000 Subject: [PATCH 149/178] kalendar: add missing dependency kirigami-addons --- pkgs/applications/kde/kalendar.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/kde/kalendar.nix b/pkgs/applications/kde/kalendar.nix index 86589606ef07..1bf6f3d1e139 100644 --- a/pkgs/applications/kde/kalendar.nix +++ b/pkgs/applications/kde/kalendar.nix @@ -13,6 +13,7 @@ , qqc2-desktop-style , kirigami2 +, kirigami-addons , kdbusaddons , ki18n , kcalendarcore @@ -59,6 +60,7 @@ mkDerivation rec { qqc2-desktop-style kirigami2 + kirigami-addons kdbusaddons ki18n kcalendarcore From e90c3615113d56df9f68c0f8f8435173833dc750 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 22 Feb 2023 09:09:30 +0000 Subject: [PATCH 150/178] doh-proxy-rust: 0.9.7 -> 0.9.8 --- pkgs/servers/dns/doh-proxy-rust/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/dns/doh-proxy-rust/default.nix b/pkgs/servers/dns/doh-proxy-rust/default.nix index d4e61ee045e8..2e17dd81f6fe 100644 --- a/pkgs/servers/dns/doh-proxy-rust/default.nix +++ b/pkgs/servers/dns/doh-proxy-rust/default.nix @@ -2,15 +2,15 @@ rustPlatform.buildRustPackage rec { pname = "doh-proxy-rust"; - version = "0.9.7"; + version = "0.9.8"; src = fetchCrate { inherit version; crateName = "doh-proxy"; - sha256 = "sha256-rcLI5sLdqelnpfU7/T0s0l3rtpYBd77BBAXc4xSmCCE="; + sha256 = "sha256-+Z2eneEK6nhcJEKRa1VIolCTZ8to2mMQ8Ik7WEH+1w0="; }; - cargoHash = "sha256-zkZuyegz82xOBq2t0jkMo6SLLteOHuhrFcROZCQeiyk="; + cargoHash = "sha256-nlKzVQeLg3/nBIkD7QoBUWC93m9BiJrybf13Y/ns9gA="; buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ]; From bd1ec260fb26e99186e4f9981eea870819c3ea63 Mon Sep 17 00:00:00 2001 From: tobim Date: Wed, 22 Feb 2023 15:22:18 +0100 Subject: [PATCH 151/178] arrow-cpp: disable failing test on darwin (#217661) --- pkgs/development/libraries/arrow-cpp/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/arrow-cpp/default.nix b/pkgs/development/libraries/arrow-cpp/default.nix index 4bebd827145f..0796dce793d6 100644 --- a/pkgs/development/libraries/arrow-cpp/default.nix +++ b/pkgs/development/libraries/arrow-cpp/default.nix @@ -234,6 +234,12 @@ stdenv.mkDerivation rec { "TestMinioServer.Connect" "TestS3FS.*" "TestS3FSGeneric.*" + ] ++ lib.optionals stdenv.isDarwin [ + # TODO: revisit at 12.0.0 or when + # https://github.com/apache/arrow/commit/295c6644ca6b67c95a662410b2c7faea0920c989 + # is available, see + # https://github.com/apache/arrow/pull/15288#discussion_r1071244661 + "ExecPlanExecution.StressSourceSinkStopped" ]; in lib.optionalString doInstallCheck "-${lib.concatStringsSep ":" filteredTests}"; From 4e1f91ca4cc8ef14842da7394b2802e90e326e49 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:29:43 +0100 Subject: [PATCH 152/178] linux: 4.14.305 -> 4.14.306 --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index 06866be49e84..abbcbe9d5da4 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.14.305"; + version = "4.14.306"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "16lmhxqpbhyqmgmlyicjadzz3axhl5smfrr230x45ahkdghwsnx3"; + sha256 = "17phif2kazp5wykjv7vphjzv8bcanvpv5qq4v3df5nq9gbpypfsq"; }; } // (args.argsOverride or {})) From 7d8ab8858de71b015d2640747c799bcd3ba72f5c Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:30:23 +0100 Subject: [PATCH 153/178] linux: 4.19.272 -> 4.19.273 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 11a8c11f3f29..3d37f7215964 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "4.19.272"; + version = "4.19.273"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1y8kyc48v8bsl53zc6dsy5xhazv0vyna98fycj181aypicvbk7s8"; + sha256 = "0wr7sprmqkdr6d44cj3rvaynyvrmyn1rax9wjqa7sk36yhvz47ij"; }; } // (args.argsOverride or {})) From 4aae32315726ef37902c46346ff4a95f46bef885 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:30:34 +0100 Subject: [PATCH 154/178] linux: 5.10.167 -> 5.10.169 --- pkgs/os-specific/linux/kernel/linux-5.10.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.10.nix b/pkgs/os-specific/linux/kernel/linux-5.10.nix index 8843f6622ace..607800b6c498 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.10.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.10.167"; + version = "5.10.169"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1iprbgwdgnylzw4dc8jgims54x8dkq070c9vs4642rp529wgj1yq"; + sha256 = "1kxgxdbgymdhf7w416qxv948py0mq8qlhz5ag962322ynmp4yxfr"; }; } // (args.argsOverride or {})) From 16551466c9653be546ff8ad18221ff798dd3effc Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:30:46 +0100 Subject: [PATCH 155/178] linux: 5.15.94 -> 5.15.95 --- pkgs/os-specific/linux/kernel/linux-5.15.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.15.nix b/pkgs/os-specific/linux/kernel/linux-5.15.nix index 394883e2de1e..ed59e65f8fa4 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.15.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.15.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.15.94"; + version = "5.15.95"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0wjsqvhp0jnisypb8yw6dncyp5k7zxbhjivh7jqivpsdwvdp14ns"; + sha256 = "06s4aqkk26fph8hm15m7cssjrwa5y7cqy9y2znfnf0w8sbqd2wga"; }; } // (args.argsOverride or { })) From 96e6bd171899032f0fbabb275a64b2154c50bafb Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:30:57 +0100 Subject: [PATCH 156/178] linux: 5.4.231 -> 5.4.232 --- pkgs/os-specific/linux/kernel/linux-5.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.4.nix b/pkgs/os-specific/linux/kernel/linux-5.4.nix index 42c5997f22fc..1a299175b727 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.4.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "5.4.231"; + version = "5.4.232"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1a1nbyvkf6iaj5lz6ahg7kk9pyrx7j77jmaj92fyihdl3mzyml4d"; + sha256 = "14qf8ddyhcs1ga1zqj4q2si6nc48sfc67nn9nigsnbcbg5g6lrdh"; }; } // (args.argsOverride or {})) From f98ed979e6c487242ca0614c9ed7ba956eb9d3b5 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:31:10 +0100 Subject: [PATCH 157/178] linux: 6.1.12 -> 6.1.13 --- pkgs/os-specific/linux/kernel/linux-6.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-6.1.nix b/pkgs/os-specific/linux/kernel/linux-6.1.nix index 4c7249f2b4c2..d5ffaf99d1f0 100644 --- a/pkgs/os-specific/linux/kernel/linux-6.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-6.1.nix @@ -3,7 +3,7 @@ with lib; buildLinux (args // rec { - version = "6.1.12"; + version = "6.1.13"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = versions.pad 3 version; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v6.x/linux-${version}.tar.xz"; - sha256 = "1spdl3i69qwn7cywzs6kql8nlisdnmnwk9za7v4xq1092xsscynl"; + sha256 = "0rvss7g77kp1hldhwrpfc7ck50rd0cjfcxj1bshps1xhyhci7128"; }; } // (args.argsOverride or { })) From 09da1ce1900f99073be78503256321a6224f4f94 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:31:24 +0100 Subject: [PATCH 158/178] linux-rt_5_10: 5.10.165-rt81 -> 5.10.168-rt83 --- pkgs/os-specific/linux/kernel/linux-rt-5.10.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix index 6a1ba266a374..98e4847ba4f2 100644 --- a/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix +++ b/pkgs/os-specific/linux/kernel/linux-rt-5.10.nix @@ -6,7 +6,7 @@ , ... } @ args: let - version = "5.10.165-rt81"; # updated by ./update-rt.sh + version = "5.10.168-rt83"; # updated by ./update-rt.sh branch = lib.versions.majorMinor version; kversion = builtins.elemAt (lib.splitString "-" version) 0; in buildLinux (args // { @@ -17,14 +17,14 @@ in buildLinux (args // { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz"; - sha256 = "03dg8yx0gdzm8zbwd1f9jn4c5jhr8qilhjzxgwm0mv8riz2fy7cp"; + sha256 = "171mmgkjdsn6gx6z8kr5d80aygn4jjf8jc9zfh7m2c4dpab2azdn"; }; kernelPatches = let rt-patch = { name = "rt"; patch = fetchurl { url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; - sha256 = "1441lwmz4v427gcyddps17ms96y86klmnlw95kc74j6wmy387fcg"; + sha256 = "08nz84yyjd8ffxhpiksqikhkhrn9a9x5mbfrz317sx6mf55wyxm0"; }; }; in [ rt-patch ] ++ kernelPatches; From 74a939df906a636c20d833a4186f6dc113ad5c62 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:31:38 +0100 Subject: [PATCH 159/178] linux-rt_5_15: 5.15.93-rt58 -> 5.15.94-rt59 --- pkgs/os-specific/linux/kernel/linux-rt-5.15.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix index 9197f7d24827..9147cc989c7a 100644 --- a/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix +++ b/pkgs/os-specific/linux/kernel/linux-rt-5.15.nix @@ -6,7 +6,7 @@ , ... } @ args: let - version = "5.15.93-rt58"; # updated by ./update-rt.sh + version = "5.15.94-rt59"; # updated by ./update-rt.sh branch = lib.versions.majorMinor version; kversion = builtins.elemAt (lib.splitString "-" version) 0; in buildLinux (args // { @@ -18,14 +18,14 @@ in buildLinux (args // { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz"; - sha256 = "1baxkkd572110p95ah1wv0b4i2hfbkf8vyncb08y3w0bd7r29vg7"; + sha256 = "0wjsqvhp0jnisypb8yw6dncyp5k7zxbhjivh7jqivpsdwvdp14ns"; }; kernelPatches = let rt-patch = { name = "rt"; patch = fetchurl { url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; - sha256 = "10xx70qf6nph3223yh6sc5jcyy938qrfdilli2a4zzhp0ibgp8bz"; + sha256 = "12lv1cywnlylb908bwy76ala94j1j5klrgv71l9ihf4vvdpj2nxi"; }; }; in [ rt-patch ] ++ kernelPatches; From 93a77dec9e228556f8feb0526e5067910ff68a43 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:31:51 +0100 Subject: [PATCH 160/178] linux-rt_5_4: 5.4.221-rt79 -> 5.4.230-rt80 --- pkgs/os-specific/linux/kernel/linux-rt-5.4.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix b/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix index 1a74c2503c04..0bf720edfaa1 100644 --- a/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-rt-5.4.nix @@ -6,7 +6,7 @@ , ... } @ args: let - version = "5.4.221-rt79"; # updated by ./update-rt.sh + version = "5.4.230-rt80"; # updated by ./update-rt.sh branch = lib.versions.majorMinor version; kversion = builtins.elemAt (lib.splitString "-" version) 0; in buildLinux (args // { @@ -14,14 +14,14 @@ in buildLinux (args // { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${kversion}.tar.xz"; - sha256 = "02nz9534998s922fdb0kpb09flgjmc7p78x0ypfxrd6pzv0pzcr7"; + sha256 = "0bz6hfhsahymys2g9s4nzf862z0zfq4346577cpvf98hrhnd6kx7"; }; kernelPatches = let rt-patch = { name = "rt"; patch = fetchurl { url = "mirror://kernel/linux/kernel/projects/rt/${branch}/older/patch-${version}.patch.xz"; - sha256 = "0zcakr41m1n683pwcm6d698nwgg7jyr7n8c63jmqh0959xxb2axy"; + sha256 = "19vcalg76vi66g3rk56ky873276is4r67sz2i4vympjq9bskrwrz"; }; }; in [ rt-patch ] ++ kernelPatches; From c1bb71a0f052e017014f4f1a9b6624178ccaba42 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:32:38 +0100 Subject: [PATCH 161/178] linux/hardened/patches/5.10: 5.10.167-hardened1 -> 5.10.168-hardened1 --- pkgs/os-specific/linux/kernel/hardened/patches.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index 5bc0f53c4684..2764414b4893 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -22,12 +22,12 @@ "5.10": { "patch": { "extra": "-hardened1", - "name": "linux-hardened-5.10.167-hardened1.patch", - "sha256": "0i74kjzilsgyjidz7p9jjxpjx3yqx5gsh7nwlw6zclxg1a82fw24", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.167-hardened1/linux-hardened-5.10.167-hardened1.patch" + "name": "linux-hardened-5.10.168-hardened1.patch", + "sha256": "1qhpsvra0b6vwshkxbqjzdz27szj79rwgpi1fv3g4401pa15dk69", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.168-hardened1/linux-hardened-5.10.168-hardened1.patch" }, - "sha256": "1iprbgwdgnylzw4dc8jgims54x8dkq070c9vs4642rp529wgj1yq", - "version": "5.10.167" + "sha256": "171mmgkjdsn6gx6z8kr5d80aygn4jjf8jc9zfh7m2c4dpab2azdn", + "version": "5.10.168" }, "5.15": { "patch": { From ded12212050633f924d75788d694280629878cc3 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:32:51 +0100 Subject: [PATCH 162/178] linux/hardened/patches/5.15: 5.15.93-hardened1 -> 5.15.94-hardened1 --- pkgs/os-specific/linux/kernel/hardened/patches.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index 2764414b4893..de8e851630b6 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -32,12 +32,12 @@ "5.15": { "patch": { "extra": "-hardened1", - "name": "linux-hardened-5.15.93-hardened1.patch", - "sha256": "093a6qpiws4v8pzld6r92dczwvslrp8f2xrpb29qrp37i3kny5si", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.93-hardened1/linux-hardened-5.15.93-hardened1.patch" + "name": "linux-hardened-5.15.94-hardened1.patch", + "sha256": "11w4cs6j9g1p7ycf8zbyf1lx6pq3k8za6llsc80s0l4i1kvk0k3f", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.94-hardened1/linux-hardened-5.15.94-hardened1.patch" }, - "sha256": "1baxkkd572110p95ah1wv0b4i2hfbkf8vyncb08y3w0bd7r29vg7", - "version": "5.15.93" + "sha256": "0wjsqvhp0jnisypb8yw6dncyp5k7zxbhjivh7jqivpsdwvdp14ns", + "version": "5.15.94" }, "5.4": { "patch": { From d90e4cfc0485d2f734250232740eea381de9a5ce Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Wed, 22 Feb 2023 15:33:04 +0100 Subject: [PATCH 163/178] linux/hardened/patches/6.1: 6.1.11-hardened1 -> 6.1.12-hardened1 --- pkgs/os-specific/linux/kernel/hardened/patches.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/patches.json b/pkgs/os-specific/linux/kernel/hardened/patches.json index de8e851630b6..98a16a6a18bf 100644 --- a/pkgs/os-specific/linux/kernel/hardened/patches.json +++ b/pkgs/os-specific/linux/kernel/hardened/patches.json @@ -52,11 +52,11 @@ "6.1": { "patch": { "extra": "-hardened1", - "name": "linux-hardened-6.1.11-hardened1.patch", - "sha256": "1pydcjy2cjnb4zxcqr41hr34fg8alph314xasdsfvdw4zaz55s6h", - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.11-hardened1/linux-hardened-6.1.11-hardened1.patch" + "name": "linux-hardened-6.1.12-hardened1.patch", + "sha256": "0nz2gz7nx0z9am8fldza28vj0fgp7hdx3skpm1xvdhgy8d35p33l", + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.12-hardened1/linux-hardened-6.1.12-hardened1.patch" }, - "sha256": "18gpkaa030g8mgmyprl05h4i8y5rjgyvbh0jcl8waqvq0xh0a6sq", - "version": "6.1.11" + "sha256": "1spdl3i69qwn7cywzs6kql8nlisdnmnwk9za7v4xq1092xsscynl", + "version": "6.1.12" } } From 83a04de6ac00bb081498e3515adfc501b6a2e0bc Mon Sep 17 00:00:00 2001 From: joerdav Date: Wed, 22 Feb 2023 13:59:50 +0000 Subject: [PATCH 164/178] xc: init at 0.0.154 --- maintainers/maintainer-list.nix | 6 ++++++ pkgs/development/tools/xc/default.nix | 22 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 30 insertions(+) create mode 100644 pkgs/development/tools/xc/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 00a92b32e2bc..ea885365cb2c 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -7154,6 +7154,12 @@ github = "joepie91"; githubId = 1663259; }; + joerdav = { + email = "joe.davidson.21111@gmail.com"; + github = "joerdav"; + name = "Joe Davidson"; + githubId = 19927761; + }; joesalisbury = { email = "salisbury.joseph@gmail.com"; github = "JosephSalisbury"; diff --git a/pkgs/development/tools/xc/default.nix b/pkgs/development/tools/xc/default.nix new file mode 100644 index 000000000000..7a2e6dd83c49 --- /dev/null +++ b/pkgs/development/tools/xc/default.nix @@ -0,0 +1,22 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "xc"; + version = "0.0.154"; + + src = fetchFromGitHub { + owner = "joerdav"; + repo = pname; + rev = "v${version}"; + sha256 = "sha256-GJBSPO0PffGdGAHofd1crEFXJi2xqgd8Vk2/g4ff+E4="; + }; + + vendorHash = "sha256-XDJdCh6P8ScSvxY55ExKgkgFQqmBaM9fMAjAioEQ0+s="; + + meta = with lib; { + homepage = "https://xcfile.dev/"; + description = "Markdown defined task runner"; + license = licenses.mit; + maintainers = with maintainers; [ joerdav ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index aca6ca3afb46..55b120e41ef3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3487,6 +3487,8 @@ with pkgs; waypoint = callPackage ../applications/networking/cluster/waypoint { }; + xc = callPackage ../development/tools/xc { }; + xcodeenv = callPackage ../development/mobile/xcodeenv { }; gomobile = callPackage ../development/mobile/gomobile { }; From bf02778b762af6b890f563d02e00b2e274d8f4c9 Mon Sep 17 00:00:00 2001 From: D Anzorge Date: Thu, 16 Feb 2023 23:12:22 +0100 Subject: [PATCH 165/178] nixos/manual: fix typos in install instructions --- nixos/doc/manual/installation/installing.chapter.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nixos/doc/manual/installation/installing.chapter.md b/nixos/doc/manual/installation/installing.chapter.md index cf783c2d22b6..7d67894e59f9 100644 --- a/nixos/doc/manual/installation/installing.chapter.md +++ b/nixos/doc/manual/installation/installing.chapter.md @@ -428,7 +428,7 @@ Use the following commands: UEFI systems - : You must select a boot-loader, either system-boot or GRUB. The recommended + : You must select a boot-loader, either systemd-boot or GRUB. The recommended option is systemd-boot: set the option [](#opt-boot.loader.systemd-boot.enable) to `true`. `nixos-generate-config` should do this automatically for new configurations when booted in UEFI mode. @@ -441,10 +441,10 @@ Use the following commands: If you want to use GRUB, set [](#opt-boot.loader.grub.device) to `nodev` and [](#opt-boot.loader.grub.efiSupport) to `true`. - With system-boot, you should not need any special configuration to detect + With systemd-boot, you should not need any special configuration to detect other installed systems. With GRUB, set [](#opt-boot.loader.grub.useOSProber) - to `true`, but this will only detect windows partitions, not other linux - distributions. If you dual boot another linux distribution, use system-boot + to `true`, but this will only detect windows partitions, not other Linux + distributions. If you dual boot another Linux distribution, use systemd-boot instead. If you need to configure networking for your machine the From 642c44a28decfd0bff216a9d6be73c0ce62e44f1 Mon Sep 17 00:00:00 2001 From: K900 Date: Wed, 22 Feb 2023 17:44:03 +0300 Subject: [PATCH 166/178] plasma: 5.27.0 -> 5.27.1 --- pkgs/desktops/plasma-5/fetch.sh | 2 +- pkgs/desktops/plasma-5/srcs.nix | 480 ++++++++++++++++---------------- 2 files changed, 241 insertions(+), 241 deletions(-) diff --git a/pkgs/desktops/plasma-5/fetch.sh b/pkgs/desktops/plasma-5/fetch.sh index 0c77e43817c6..3839441ed975 100644 --- a/pkgs/desktops/plasma-5/fetch.sh +++ b/pkgs/desktops/plasma-5/fetch.sh @@ -1 +1 @@ -WGET_ARGS=( https://download.kde.org/stable/plasma/5.27.0/ -A '*.tar.xz' ) +WGET_ARGS=( https://download.kde.org/stable/plasma/5.27.1/ -A '*.tar.xz' ) diff --git a/pkgs/desktops/plasma-5/srcs.nix b/pkgs/desktops/plasma-5/srcs.nix index 496223dc8423..b41d381cbaf7 100644 --- a/pkgs/desktops/plasma-5/srcs.nix +++ b/pkgs/desktops/plasma-5/srcs.nix @@ -4,483 +4,483 @@ { aura-browser = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/aura-browser-5.27.0.tar.xz"; - sha256 = "0lw7qvvgbyrqy7zb3m4bd0j4j36x26z0nzxm2g84kgddmczf95az"; - name = "aura-browser-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/aura-browser-5.27.1.tar.xz"; + sha256 = "1bq89mrfg82j03q9rrinwjc29qi1y7bz74d5k6f0s2f1ff0kvik9"; + name = "aura-browser-5.27.1.tar.xz"; }; }; bluedevil = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/bluedevil-5.27.0.tar.xz"; - sha256 = "0wjll668bmdk8xm2vl7p31md8ljwzycnr99y3bli4whczihiclly"; - name = "bluedevil-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/bluedevil-5.27.1.tar.xz"; + sha256 = "17nx5f9sjwnb62vdkmiijaq62ayl08szrv889h7m7k7fsxfllyyh"; + name = "bluedevil-5.27.1.tar.xz"; }; }; breeze = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/breeze-5.27.0.tar.xz"; - sha256 = "0g68l0kfdsp9halrwpbn3azm3v97gdynpc4y1bwa6j2xxaj5fp4a"; - name = "breeze-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/breeze-5.27.1.tar.xz"; + sha256 = "0mripww2p0cvhbifq4vg25g7niv9cn2lpgbx2h3i5swhcbqzk7g1"; + name = "breeze-5.27.1.tar.xz"; }; }; breeze-grub = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/breeze-grub-5.27.0.tar.xz"; - sha256 = "0mnga6fhpy10shvbfys6lw0q3hk61vhfa95ykvgv6d5ssavzamyp"; - name = "breeze-grub-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/breeze-grub-5.27.1.tar.xz"; + sha256 = "1bn3n64xa84ymq4sdbhlra01i2d9zzbfkf8a1niq50fngf3lg3q8"; + name = "breeze-grub-5.27.1.tar.xz"; }; }; breeze-gtk = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/breeze-gtk-5.27.0.tar.xz"; - sha256 = "1apd17b7p8i2i2ls6pdpabzijca4lwdzd4p1srx46wb0slm6fqma"; - name = "breeze-gtk-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/breeze-gtk-5.27.1.tar.xz"; + sha256 = "0f51g3aqms6jgvf7hzdwg8dhcirxahb5282f96p19m1nz77dc7vv"; + name = "breeze-gtk-5.27.1.tar.xz"; }; }; breeze-plymouth = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/breeze-plymouth-5.27.0.tar.xz"; - sha256 = "103f8v56a8qm1hlnakbzljsv5iyfc3ynry169f2vvsafm40bc6c0"; - name = "breeze-plymouth-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/breeze-plymouth-5.27.1.tar.xz"; + sha256 = "1x4ws9zxq3lrrrl062p0wp5ys78pv3m8jvyp9gs5rmm294hwrddx"; + name = "breeze-plymouth-5.27.1.tar.xz"; }; }; discover = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/discover-5.27.0.tar.xz"; - sha256 = "0qa9hz7fxf1c9wi5c1x5z345mac3d5prgxxvadv4285c0sxvqidz"; - name = "discover-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/discover-5.27.1.tar.xz"; + sha256 = "0705cz9sm8djgyjvplj65v2mv86j5hjkyiry00kcrmgvhv08psdv"; + name = "discover-5.27.1.tar.xz"; }; }; drkonqi = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/drkonqi-5.27.0.tar.xz"; - sha256 = "015ivarw48ymsz06jbd2rdqvdmcww93r2msrmmfh7jrzszqh3dlg"; - name = "drkonqi-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/drkonqi-5.27.1.tar.xz"; + sha256 = "1j09pzf67jzvw01j82icv7g6y11hr6j9m5xdk1r0cmq1wig5y506"; + name = "drkonqi-5.27.1.tar.xz"; }; }; flatpak-kcm = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/flatpak-kcm-5.27.0.tar.xz"; - sha256 = "0318p0pm79kzk4l1rc239h7a7kvswz9vy3kylznn561fazkn3lss"; - name = "flatpak-kcm-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/flatpak-kcm-5.27.1.tar.xz"; + sha256 = "1b4ljs5zf49kmyaqkjn2bi0p07hbxr9m6v2c0rns1qkmni0kr0hw"; + name = "flatpak-kcm-5.27.1.tar.xz"; }; }; kactivitymanagerd = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kactivitymanagerd-5.27.0.tar.xz"; - sha256 = "02k8il4sgl63rdkn63hhpsc6pymc9a5p4jv452fiw0vpf2zbj3sn"; - name = "kactivitymanagerd-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kactivitymanagerd-5.27.1.tar.xz"; + sha256 = "1x10vn7dcnxyal1g8755f3v0hzrgqncarng6psh1z4lk2a2ahjic"; + name = "kactivitymanagerd-5.27.1.tar.xz"; }; }; kde-cli-tools = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kde-cli-tools-5.27.0.tar.xz"; - sha256 = "1w5cxbxwfnv5wl04jwchr14c6fx0yf3s3x98d18h87bd0vx3w48m"; - name = "kde-cli-tools-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kde-cli-tools-5.27.1.tar.xz"; + sha256 = "05zbqqby15b2d2ys94zkzy8c9lylcbz7z9gkwwxfhimail3yr7s1"; + name = "kde-cli-tools-5.27.1.tar.xz"; }; }; kde-gtk-config = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kde-gtk-config-5.27.0.tar.xz"; - sha256 = "1bhqxnpgpj69jrfkn0znbnwp7r73gl6qb9xzi1pjj8cqb5bn5skg"; - name = "kde-gtk-config-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kde-gtk-config-5.27.1.tar.xz"; + sha256 = "10f311ygvm9bj5c23kzrc3s9pyb82d0kfdfdpyxii44ndi9fgsfy"; + name = "kde-gtk-config-5.27.1.tar.xz"; }; }; kdecoration = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kdecoration-5.27.0.tar.xz"; - sha256 = "04vw9kyvwq5jg8pw85b96c3ahm8213pf4a03dm49hv1fdzslvjaf"; - name = "kdecoration-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kdecoration-5.27.1.tar.xz"; + sha256 = "1bcprf2fijj459k73xk2j5yw4krwq770n8axxsckzv3a19a440rg"; + name = "kdecoration-5.27.1.tar.xz"; }; }; kdeplasma-addons = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kdeplasma-addons-5.27.0.tar.xz"; - sha256 = "19nr13aipfds1y5zr0a05wb55s7pdzqmpidmm7w9aaxxa5rbg623"; - name = "kdeplasma-addons-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kdeplasma-addons-5.27.1.tar.xz"; + sha256 = "0k9ghh945p4ha1kykw9m67x3p83k6c01gjqds6v7l8hsylazfwb9"; + name = "kdeplasma-addons-5.27.1.tar.xz"; }; }; kgamma5 = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kgamma5-5.27.0.tar.xz"; - sha256 = "1dyfpwfadp2n83lcr3mak3n8h2cxgxs2hv35madah6zf78m5ldw5"; - name = "kgamma5-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kgamma5-5.27.1.tar.xz"; + sha256 = "1rkr6546wlp5rqy9jibzkz3y24zp4ab2qxj2h2h61al0873566yp"; + name = "kgamma5-5.27.1.tar.xz"; }; }; khotkeys = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/khotkeys-5.27.0.tar.xz"; - sha256 = "1xyy7511k6a1xlr63qq3qbk8wr1c12skmqzxliijv8q2b7b8dpiz"; - name = "khotkeys-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/khotkeys-5.27.1.tar.xz"; + sha256 = "1q1fd4d5258n5d20hmcwr3vv7miarhmsv1k3jv9d9facvagcr5dw"; + name = "khotkeys-5.27.1.tar.xz"; }; }; kinfocenter = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kinfocenter-5.27.0.tar.xz"; - sha256 = "0k9h4m0jzxdyqyfn9pam0ssmhj6lng0l8mn23r7yw6mqi1i01yvl"; - name = "kinfocenter-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kinfocenter-5.27.1.tar.xz"; + sha256 = "0d06kjfm2lagpf4wjsbkv17nlq0i9k6ywyyyn2fclcqayif82i68"; + name = "kinfocenter-5.27.1.tar.xz"; }; }; kmenuedit = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kmenuedit-5.27.0.tar.xz"; - sha256 = "1jb5pjy6flar0hxy9avnryxjmvh0ixyxr7xjbzbwjfx6zzf40i62"; - name = "kmenuedit-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kmenuedit-5.27.1.tar.xz"; + sha256 = "1r45rly95642k20fkn85rnnmpw6zwx4i0r0r0k9azjkp4akkhgg0"; + name = "kmenuedit-5.27.1.tar.xz"; }; }; kpipewire = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kpipewire-5.27.0.tar.xz"; - sha256 = "0mhpi16025bznxgp9lkg44rjxbm541yl39nj1rffpqh3bvhgw600"; - name = "kpipewire-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kpipewire-5.27.1.tar.xz"; + sha256 = "0gdj3ii7wcx6xgsrv3z78jj6j7xmm83qs3fil1ha38d26d6ym0r1"; + name = "kpipewire-5.27.1.tar.xz"; }; }; kscreen = { - version = "5.27.0"; + version = "5.27.1.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kscreen-5.27.0.tar.xz"; - sha256 = "043g0h2lk6k4xqfbma45m91wf93fm0v1vgf49ax6bqx9y3hvb1gw"; - name = "kscreen-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kscreen-5.27.1.1.tar.xz"; + sha256 = "0i3xqxxzvmiq6awipkdn6mypgs7yl64j6nrgxk8vb6qfcgvq5z0d"; + name = "kscreen-5.27.1.1.tar.xz"; }; }; kscreenlocker = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kscreenlocker-5.27.0.tar.xz"; - sha256 = "0xvwlqh6knrj2l9asrkmv7fzwl5xbxm05pgimb9lk1bk67nr0xir"; - name = "kscreenlocker-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kscreenlocker-5.27.1.tar.xz"; + sha256 = "023dpw0liplgnzj3d98n789s51l6sm978jz3z0gp47ym8nd7h1a9"; + name = "kscreenlocker-5.27.1.tar.xz"; }; }; ksshaskpass = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/ksshaskpass-5.27.0.tar.xz"; - sha256 = "1p55lf47vznvvprs2wn5c7ccq4iy6cxkqqdl9di02rzj9rf81zbs"; - name = "ksshaskpass-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/ksshaskpass-5.27.1.tar.xz"; + sha256 = "1xvsji5fwgj3yqmlwivc2x7vncr38fpvr69bc6y9hfn20czm0pbw"; + name = "ksshaskpass-5.27.1.tar.xz"; }; }; ksystemstats = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/ksystemstats-5.27.0.tar.xz"; - sha256 = "1vax9cq33gxv2qaz908bsckrvdpffl975ayliz72f6d2mhsx9r5i"; - name = "ksystemstats-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/ksystemstats-5.27.1.tar.xz"; + sha256 = "1wkzklfkd7xc55bvm8a205bpjz449nil0a8yw3iql01im7bnsj67"; + name = "ksystemstats-5.27.1.tar.xz"; }; }; kwallet-pam = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kwallet-pam-5.27.0.tar.xz"; - sha256 = "0kwlinn6xcxqrib4xc200c9dmbq0gk0hmh6ahzd0nvgng6g6bvw7"; - name = "kwallet-pam-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kwallet-pam-5.27.1.tar.xz"; + sha256 = "1k6i5yjc31xhp2pijygx2qs74lr2lh231c9j2cvgxsijdrm18mk6"; + name = "kwallet-pam-5.27.1.tar.xz"; }; }; kwayland-integration = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kwayland-integration-5.27.0.tar.xz"; - sha256 = "0aml251n9amrjiyp6933iz245z3qr5lvpdyxsgnpzlvn652zyfqv"; - name = "kwayland-integration-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kwayland-integration-5.27.1.tar.xz"; + sha256 = "0b3i3wr9gnh0hf23fldvgxj5mjjc1g22ki1l9x592xzsxzvlx2yk"; + name = "kwayland-integration-5.27.1.tar.xz"; }; }; kwin = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kwin-5.27.0.tar.xz"; - sha256 = "1g1rma3ks6i10dvqksa61fi0w0g87gbb73jjzkz0jicbs5823w9c"; - name = "kwin-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kwin-5.27.1.tar.xz"; + sha256 = "1c74jna3lmbrny2v0wc4rlghr1mrd2a6566qqi71zsxib64nf79y"; + name = "kwin-5.27.1.tar.xz"; }; }; kwrited = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/kwrited-5.27.0.tar.xz"; - sha256 = "15fxhk9dd0z9pfc99hsb9zqwish8wkbld8kgj8a1nzl5a2dnjnd3"; - name = "kwrited-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/kwrited-5.27.1.tar.xz"; + sha256 = "0j1vhzlf29s5i4hqb1mhakp5d9nkjbf2yx6az70n0ckwh999ljzm"; + name = "kwrited-5.27.1.tar.xz"; }; }; layer-shell-qt = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/layer-shell-qt-5.27.0.tar.xz"; - sha256 = "1zs3p7fbw3yf24d2zy51pyjlxy9gxs8k78c481yck04sj8vlf3cw"; - name = "layer-shell-qt-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/layer-shell-qt-5.27.1.tar.xz"; + sha256 = "0244ixslr52ssv7wm1icdm67akw2v59z2p12wa1fbjd8nwg3fgsy"; + name = "layer-shell-qt-5.27.1.tar.xz"; }; }; libkscreen = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/libkscreen-5.27.0.tar.xz"; - sha256 = "16b2j8gfgf12nxwm8pij41yl6ffcjh7h31rw54j6mlx2q7i5lq2h"; - name = "libkscreen-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/libkscreen-5.27.1.tar.xz"; + sha256 = "044p4ngnhjjxlc468hjb9758yrraslr36hrhj46cq24s5z42bxz3"; + name = "libkscreen-5.27.1.tar.xz"; }; }; libksysguard = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/libksysguard-5.27.0.tar.xz"; - sha256 = "01lsf52kfzp6h964s1aifg4wlf52hba56wf66cq3vi05ghckfbb5"; - name = "libksysguard-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/libksysguard-5.27.1.tar.xz"; + sha256 = "0krgmjwy4kl03hqsylfvrs0q9d9h34w3w4aacan40s6xwldvjwhj"; + name = "libksysguard-5.27.1.tar.xz"; }; }; milou = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/milou-5.27.0.tar.xz"; - sha256 = "1zs5n37crpqzbycjb5x239fs65wv2ghkx5m87sq65713rs7lmpbx"; - name = "milou-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/milou-5.27.1.tar.xz"; + sha256 = "1vis4f4c1qicdg2z01spv0h1dvqkfsdjw7bxmh9rwpa0vlv082ac"; + name = "milou-5.27.1.tar.xz"; }; }; oxygen = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/oxygen-5.27.0.tar.xz"; - sha256 = "0vld1m3ac5z2z4k6vp8v5kzib094baj5ndwqvf6ryhyp9v7in3r0"; - name = "oxygen-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/oxygen-5.27.1.tar.xz"; + sha256 = "1p468lxmicnw4bn4svq58agmkvci5qkazjxkcjml2fsp79zw5r9j"; + name = "oxygen-5.27.1.tar.xz"; }; }; oxygen-sounds = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/oxygen-sounds-5.27.0.tar.xz"; - sha256 = "08brv177p3hlqvkf7chy1s5i45vnbjsjxiqxmac8grfh9dgsjyk6"; - name = "oxygen-sounds-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/oxygen-sounds-5.27.1.tar.xz"; + sha256 = "0iqmd7xqv8hc5v254hmi1mzw9f9yimf442bjmp05w17k2chrdg83"; + name = "oxygen-sounds-5.27.1.tar.xz"; }; }; plank-player = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plank-player-5.27.0.tar.xz"; - sha256 = "0ng97dcpfvm5klwnqzc47rv8lwxj0cmidx3igzjgkrl23k4rcxy2"; - name = "plank-player-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plank-player-5.27.1.tar.xz"; + sha256 = "1nii6hc3cphl3946ps5jnz6bfcjp2pwj4nnqsqk6gbpyyyfvp2fm"; + name = "plank-player-5.27.1.tar.xz"; }; }; plasma-bigscreen = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-bigscreen-5.27.0.tar.xz"; - sha256 = "0c2zldcsfqklwv3lsw9fb7q39vsaq5lzxad3wqrhsphz8c8v6yxg"; - name = "plasma-bigscreen-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-bigscreen-5.27.1.tar.xz"; + sha256 = "17iiyh9mjyc09sqv0agg33ibiva3p8vgv3z735l0gxjqfh0zhnw7"; + name = "plasma-bigscreen-5.27.1.tar.xz"; }; }; plasma-browser-integration = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-browser-integration-5.27.0.tar.xz"; - sha256 = "014fn47khppa7ay5sxcz43g81igbx6lpv19whc7p4ik3cp3rzk7i"; - name = "plasma-browser-integration-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-browser-integration-5.27.1.tar.xz"; + sha256 = "0150c7a9m0l8vx8dgm67acc6w4bnlbjcv6gazh9pbh7qh8rpy7ax"; + name = "plasma-browser-integration-5.27.1.tar.xz"; }; }; plasma-desktop = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-desktop-5.27.0.tar.xz"; - sha256 = "0d52a4adjkyah6ab93153mp5af8338mipm9712i9xzylwf73100q"; - name = "plasma-desktop-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-desktop-5.27.1.tar.xz"; + sha256 = "0pf0zwhh952fclmq19jg6c80jmbmzin8qcqqhn9xfdgxjx970yrf"; + name = "plasma-desktop-5.27.1.tar.xz"; }; }; plasma-disks = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-disks-5.27.0.tar.xz"; - sha256 = "1m7hh901p7h0ibj7pgsqhz6jkn07mnw7m1xgs6d43i1n7vnw9hlb"; - name = "plasma-disks-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-disks-5.27.1.tar.xz"; + sha256 = "0qxb0z6c52nalgg358355qwgqnb703n464ncsrwgma2jrq8d44dh"; + name = "plasma-disks-5.27.1.tar.xz"; }; }; plasma-firewall = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-firewall-5.27.0.tar.xz"; - sha256 = "02haqjiim2qk77074likhvmj07120p7cr9lsxjsmhfc4f69wwkh2"; - name = "plasma-firewall-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-firewall-5.27.1.tar.xz"; + sha256 = "1cb6dgh86r2k2jnfk93yswyl9j53ak7hl25hdcbmmflwbdkc474x"; + name = "plasma-firewall-5.27.1.tar.xz"; }; }; plasma-integration = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-integration-5.27.0.tar.xz"; - sha256 = "0ma6ig7gldl26pav4j1svcwxbpmgfq72q6nxzyysrgxzfyk93c1w"; - name = "plasma-integration-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-integration-5.27.1.tar.xz"; + sha256 = "1d00kch9a2bb5dyayxszrj3zydzfmbq1s3dpkqxc24nr2f9lxx87"; + name = "plasma-integration-5.27.1.tar.xz"; }; }; plasma-mobile = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-mobile-5.27.0.tar.xz"; - sha256 = "14a68d6lxm3pfq8znzk0k0f4kq9wpgmmj0zqa5jfr1gapqyrdkmv"; - name = "plasma-mobile-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-mobile-5.27.1.tar.xz"; + sha256 = "009psgg5svgrl0jmzv4fp35vj07nswn2ajj3vmcmp6y4m96n8fn9"; + name = "plasma-mobile-5.27.1.tar.xz"; }; }; plasma-nano = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-nano-5.27.0.tar.xz"; - sha256 = "0sc8fdbbwwn3a1gip31dvwb5pfdl1zk08i795yp5gfjc04kckxs1"; - name = "plasma-nano-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-nano-5.27.1.tar.xz"; + sha256 = "0s804r3sy0md2mn28zjj65zsnjb1sfbnda1003rgfh7brhfly53k"; + name = "plasma-nano-5.27.1.tar.xz"; }; }; plasma-nm = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-nm-5.27.0.tar.xz"; - sha256 = "0p7vqw7nkwpy84lg5w5alkrkaisg56fwsrgvwb43mb54h5pfcd4f"; - name = "plasma-nm-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-nm-5.27.1.tar.xz"; + sha256 = "19d8dcfw9dw9fw4mcpx12fr8mdj178fb2a28zhpyz90mwgip1l97"; + name = "plasma-nm-5.27.1.tar.xz"; }; }; plasma-pa = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-pa-5.27.0.tar.xz"; - sha256 = "0z3njcfr8y9y9025sdz28qvi9fc6vsndfb7zi1wacrrncjxg1wkl"; - name = "plasma-pa-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-pa-5.27.1.tar.xz"; + sha256 = "173xkab86n87hgp4xs7xd1q7qkk7vqcb53vh391vhplpg841k6dx"; + name = "plasma-pa-5.27.1.tar.xz"; }; }; plasma-remotecontrollers = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-remotecontrollers-5.27.0.tar.xz"; - sha256 = "0q8wjr5qi97k4j5lm5wy35r78hf9cwa9sbj170xm5ni2rmdlsb14"; - name = "plasma-remotecontrollers-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-remotecontrollers-5.27.1.tar.xz"; + sha256 = "1x2rbd6y9hwyxwvzpk3rdlp0qq1zyr9m0gz3pr78gxkk5ncznj75"; + name = "plasma-remotecontrollers-5.27.1.tar.xz"; }; }; plasma-sdk = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-sdk-5.27.0.tar.xz"; - sha256 = "0fqbpcw705yy0szbvvnf266bclv9l65v563kmcsryq31y7ji15iz"; - name = "plasma-sdk-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-sdk-5.27.1.tar.xz"; + sha256 = "18qy4wkxmnmngh3jimbk5px0alf451hvyiawk2xdrc848n6yjnmf"; + name = "plasma-sdk-5.27.1.tar.xz"; }; }; plasma-systemmonitor = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-systemmonitor-5.27.0.tar.xz"; - sha256 = "139jyqvwykxc7pfrcrrsyks0jdg3ljw8hg7plqw5n2cd4slx6psx"; - name = "plasma-systemmonitor-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-systemmonitor-5.27.1.tar.xz"; + sha256 = "0r03dbh372f626rn4p8bfzsk1ralxn9ha7dag7dvjf92d4azy088"; + name = "plasma-systemmonitor-5.27.1.tar.xz"; }; }; plasma-tests = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-tests-5.27.0.tar.xz"; - sha256 = "1ncsjiwlx73kc6xzlz1da8xdppw8q1al9k8lm6zj1qvf4mnb62kr"; - name = "plasma-tests-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-tests-5.27.1.tar.xz"; + sha256 = "0dc403xc929hfm2mb46x3hqr5518x0809dgbb01yfxwn0684g157"; + name = "plasma-tests-5.27.1.tar.xz"; }; }; plasma-thunderbolt = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-thunderbolt-5.27.0.tar.xz"; - sha256 = "053xi6vjlavavxqcz5d0b78pnjmswqg0y5kq4r7pqkazj0829ca3"; - name = "plasma-thunderbolt-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-thunderbolt-5.27.1.tar.xz"; + sha256 = "08v7sdkllynfkw93qvaq4f4kgc188swbh5p839kzvp2xmlxqabyf"; + name = "plasma-thunderbolt-5.27.1.tar.xz"; }; }; plasma-vault = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-vault-5.27.0.tar.xz"; - sha256 = "0i5m9jyvpv5rfwms75pw65c4x315lwby0cg7pab3dz2xsy82g2p8"; - name = "plasma-vault-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-vault-5.27.1.tar.xz"; + sha256 = "0inxkj50n2r52k9wyyznz5qr1y01v6s8wphf39ffk7rrccw9ah3f"; + name = "plasma-vault-5.27.1.tar.xz"; }; }; plasma-welcome = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-welcome-5.27.0.tar.xz"; - sha256 = "00pr7bvx1accs1faw149r28qkkjdxmmib2a6m7asyn591pykzbyh"; - name = "plasma-welcome-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-welcome-5.27.1.tar.xz"; + sha256 = "1ay5jk30vihnk7lhxvlwdgz2wqbjh3a1vdiywazc5dxilvhqwg2b"; + name = "plasma-welcome-5.27.1.tar.xz"; }; }; plasma-workspace = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-workspace-5.27.0.tar.xz"; - sha256 = "0fq71fhqn0lx88a7n8rw9jrwkcm720s2c2l1ry9035kmvz94w901"; - name = "plasma-workspace-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-workspace-5.27.1.tar.xz"; + sha256 = "00gyfp12jcaap1i7y8h4pp9jkjddhrwxqyds20bvgi0mh7bkr237"; + name = "plasma-workspace-5.27.1.tar.xz"; }; }; plasma-workspace-wallpapers = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plasma-workspace-wallpapers-5.27.0.tar.xz"; - sha256 = "1pyz1gnbg2n907yi4wlj9gq495145ww50z66q8ykgmix1yxwmjnz"; - name = "plasma-workspace-wallpapers-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plasma-workspace-wallpapers-5.27.1.tar.xz"; + sha256 = "02cgabavzydfn52liqisdaxm1j6abpwk6n0cz5hcqvv574r6hb99"; + name = "plasma-workspace-wallpapers-5.27.1.tar.xz"; }; }; plymouth-kcm = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/plymouth-kcm-5.27.0.tar.xz"; - sha256 = "1cbwpqfxlm0vc2hjllqbsy929my1pmmbmb15ggj9m7gmxc59fbaf"; - name = "plymouth-kcm-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/plymouth-kcm-5.27.1.tar.xz"; + sha256 = "150m73v1p5jwqm4piqzimm76abgf02mjvpl1pz0p8a4qppklq1fa"; + name = "plymouth-kcm-5.27.1.tar.xz"; }; }; polkit-kde-agent = { - version = "1-5.27.0"; + version = "1-5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/polkit-kde-agent-1-5.27.0.tar.xz"; - sha256 = "0mihvr8w9rlqvsh2g19r3zrxp3shaiwlmjcx2w3lx4swiysnyps1"; - name = "polkit-kde-agent-1-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/polkit-kde-agent-1-5.27.1.tar.xz"; + sha256 = "1chs9z51dr6dcfcxnvcv06z0ql5rm5xl36i54sxhwi41dkpgybbc"; + name = "polkit-kde-agent-1-5.27.1.tar.xz"; }; }; powerdevil = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/powerdevil-5.27.0.tar.xz"; - sha256 = "0gdp2zsx761zkl4r4pj799x6q5jw0yzsljgx5p9cmrl4pvxb89rg"; - name = "powerdevil-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/powerdevil-5.27.1.tar.xz"; + sha256 = "09sflq629mfcqm92pa442qv2a3xnc4h1rxcm3px4c48c2halpdjk"; + name = "powerdevil-5.27.1.tar.xz"; }; }; qqc2-breeze-style = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/qqc2-breeze-style-5.27.0.tar.xz"; - sha256 = "14aw06dvpqjglm4y0230b3yy2fg3z427ff87f9xn8f96603c8447"; - name = "qqc2-breeze-style-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/qqc2-breeze-style-5.27.1.tar.xz"; + sha256 = "03gig61n3s5hg5sc01g35h9mxvhx25qsvlrkkq2px4qs7240ipfr"; + name = "qqc2-breeze-style-5.27.1.tar.xz"; }; }; sddm-kcm = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/sddm-kcm-5.27.0.tar.xz"; - sha256 = "1kdb5jyv4lrx02bjyzyaakq4ip4z095sfcipgipgc0w2ayicf1np"; - name = "sddm-kcm-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/sddm-kcm-5.27.1.tar.xz"; + sha256 = "04j9awyqlicdfsim60zs5n0mmsk3jd6ihxv34di41x850rmcz2gi"; + name = "sddm-kcm-5.27.1.tar.xz"; }; }; systemsettings = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/systemsettings-5.27.0.tar.xz"; - sha256 = "0smsv1kr9c5d7ypi74hvp3hrckk41p62ddhvjvlxw44qvykby597"; - name = "systemsettings-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/systemsettings-5.27.1.tar.xz"; + sha256 = "16hpgqgszy05dah0c77amvlc7c5z53drcanj10l02znk7nh97ccy"; + name = "systemsettings-5.27.1.tar.xz"; }; }; xdg-desktop-portal-kde = { - version = "5.27.0"; + version = "5.27.1"; src = fetchurl { - url = "${mirror}/stable/plasma/5.27.0/xdg-desktop-portal-kde-5.27.0.tar.xz"; - sha256 = "069fsw47v7p63m05rf2pxllxw7f4agclndvxccyrjyvsv12hrmbh"; - name = "xdg-desktop-portal-kde-5.27.0.tar.xz"; + url = "${mirror}/stable/plasma/5.27.1/xdg-desktop-portal-kde-5.27.1.tar.xz"; + sha256 = "0ig1xvfwfnvgp5fq4ac520wznllbg78bwaac9vsz4jwflv70axdh"; + name = "xdg-desktop-portal-kde-5.27.1.tar.xz"; }; }; } From c18127342323869483f47b2b4bd633e20dd47470 Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Tue, 7 Feb 2023 20:54:49 -0500 Subject: [PATCH 167/178] cudaPackages_12: 12.0.0 -> 12.0.1 --- .../cudatoolkit/redist/extension.nix | 2 +- .../redist/manifests/redistrib_12.0.0.json | 1127 ---------------- .../redist/manifests/redistrib_12.0.1.json | 1128 +++++++++++++++++ .../compilers/cudatoolkit/versions.toml | 6 +- pkgs/test/cuda/cuda-samples/extension.nix | 1 + 5 files changed, 1133 insertions(+), 1131 deletions(-) delete mode 100644 pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.0.json create mode 100644 pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.1.json diff --git a/pkgs/development/compilers/cudatoolkit/redist/extension.nix b/pkgs/development/compilers/cudatoolkit/redist/extension.nix index 962663f08bcb..d10c68236b32 100644 --- a/pkgs/development/compilers/cudatoolkit/redist/extension.nix +++ b/pkgs/development/compilers/cudatoolkit/redist/extension.nix @@ -13,7 +13,7 @@ final: prev: let "11.6" = ./manifests/redistrib_11.6.2.json; "11.7" = ./manifests/redistrib_11.7.0.json; "11.8" = ./manifests/redistrib_11.8.0.json; - "12.0" = ./manifests/redistrib_12.0.0.json; + "12.0" = ./manifests/redistrib_12.0.1.json; }; # Function to build a single cudatoolkit redist package diff --git a/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.0.json b/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.0.json deleted file mode 100644 index ca99487e6722..000000000000 --- a/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.0.json +++ /dev/null @@ -1,1127 +0,0 @@ -{ - "release_date": "2022-12-08", - "cuda_cccl": { - "name": "CXX Core Compute Libraries", - "license": "CUDA Toolkit", - "version": "12.0.90", - "linux-x86_64": { - "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-12.0.90-archive.tar.xz", - "sha256": "37f6e03b6f95579d8e2e96b9ba15eeb1224dcd18b21ad50c3ac249e408152a24", - "md5": "ced6a2998ad8c3a5f421a60e708bf2c1", - "size": "1029064" - }, - "linux-ppc64le": { - "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-12.0.90-archive.tar.xz", - "sha256": "c6de67acd6a65b24db0383f6330b842ed19b6c27a27a37f828e9f3e96cc96f72", - "md5": "3b533c00dfe103773f60e706d2e6a3c7", - "size": "1029080" - }, - "linux-sbsa": { - "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-12.0.90-archive.tar.xz", - "sha256": "f2a19927c558a9c872fa87eda4c0dc0446e5c4c744df4f846d01f4d4e08c8cd7", - "md5": "66b520f391ae130c31198daf58e61d32", - "size": "1028684" - }, - "windows-x86_64": { - "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-12.0.90-archive.zip", - "sha256": "dd422d4cc8462d112411659a56cc78cb6010d704f83db3e48c55a3f66eed5ec2", - "md5": "efd7fc187d6f1b57d7fa2ca7c6ffe7ad", - "size": "2608382" - }, - "linux-aarch64": { - "relative_path": "cuda_cccl/linux-aarch64/cuda_cccl-linux-aarch64-12.0.90-archive.tar.xz", - "sha256": "1f606217f6477afaa3e8226d0629ce84eb3b35790c2a832fb46baf7912722cb9", - "md5": "244bb1fb614395058ae08f7e436d783b", - "size": "1029128" - } - }, - "cuda_compat": { - "name": "CUDA compat L4T", - "license": "CUDA Toolkit", - "version": "12.0.31752801", - "linux-aarch64": { - "relative_path": "cuda_compat/linux-aarch64/cuda_compat-linux-aarch64-12.0.31752801-archive.tar.xz", - "sha256": "dcb1fa133eb89eb10b049271e6be8861deaefd612133ceec0e13baf38fe43e93", - "md5": "c046dad28e75b3765625757ba006f845", - "size": "16051812" - } - }, - "cuda_cudart": { - "name": "CUDA Runtime (cudart)", - "license": "CUDA Toolkit", - "version": "12.0.107", - "linux-x86_64": { - "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-12.0.107-archive.tar.xz", - "sha256": "c0e16e9593a69afe4997ae96a8b024e751ebce0254523fd969b08bb028582d23", - "md5": "70f9998315314b2e2c4d311a5d70da74", - "size": "977884" - }, - "linux-ppc64le": { - "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-12.0.107-archive.tar.xz", - "sha256": "d785fd613e35e3761fdb0016a31a56417f570605cbfb9a93ca9dc68be6789188", - "md5": "983548770e312f604f818be087609c6d", - "size": "967996" - }, - "linux-sbsa": { - "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-12.0.107-archive.tar.xz", - "sha256": "5de248c6c203f6c91ce34256bbfc028bc87c1b0c552f9f51edb65e60ad665f63", - "md5": "e723920f9c598c87db718022005e0961", - "size": "969628" - }, - "windows-x86_64": { - "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-12.0.107-archive.zip", - "sha256": "1cd8516feee068c6d718453e76b0dfcbee27844a35d4f3aa608a3d316190309c", - "md5": "8c8b57dc2f0e5ea52d1f5b0dfe032676", - "size": "2267147" - }, - "linux-aarch64": { - "relative_path": "cuda_cudart/linux-aarch64/cuda_cudart-linux-aarch64-12.0.107-archive.tar.xz", - "sha256": "a9c29e8fceb877eeeb252a10030074e5a5fa31afb418df42e1261aebd8bf7d8c", - "md5": "3971437445a966ab1a37d7b8041e98b0", - "size": "975680" - } - }, - "cuda_cuobjdump": { - "name": "cuobjdump", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "c2b627534d8eedff86b50bbf13c043a3c9a01a048fa6aa40678be5548c96d2a9", - "md5": "baa64f45529bc50de813bf0d6ea91295", - "size": "164564" - }, - "linux-ppc64le": { - "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "6b57dcc8a448068f0bd6a3c109f7dfbf96725f60c260a122a2c818f9cbe5b81c", - "md5": "5e6dea10146a48e4ffbd1eb90d5f0a91", - "size": "209288" - }, - "linux-sbsa": { - "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "30744ab5f7ae24d2265bd5167d750907abb2d2f6f62922aeab1fac5aa4030eca", - "md5": "285c7a3a8a16e735d625af0bd6038eb7", - "size": "173012" - }, - "windows-x86_64": { - "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-12.0.76-archive.zip", - "sha256": "00688ad84b04df7e6a39e6d4d5fb29fda42d36bdf7e3a432c332ebafbed6fb90", - "md5": "5d28cdc57561d98c0e647f9174cdeb6c", - "size": "3786191" - }, - "linux-aarch64": { - "relative_path": "cuda_cuobjdump/linux-aarch64/cuda_cuobjdump-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "e75adc4b9c6ebc00d1de652a3a243f362ae654b82fc5653a890819c433e8abac", - "md5": "936385ead6e6c764187f350d4e475939", - "size": "172952" - } - }, - "cuda_cupti": { - "name": "CUPTI", - "license": "CUDA Toolkit", - "version": "12.0.90", - "linux-x86_64": { - "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-12.0.90-archive.tar.xz", - "sha256": "3c93a6a8c5eab3a56c1a0a514c0ac7d374807c70a9551155f089588b6c5e1d10", - "md5": "fb7af580f717fee8ed666b1b4a73eea5", - "size": "18932212" - }, - "linux-ppc64le": { - "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-12.0.90-archive.tar.xz", - "sha256": "bbabb508eb4fb0f9d98ac3ab4a40d0278de41cef95139c1bfe6436b716dd6cfc", - "md5": "e75692d08f0b6a1755e66471a1f93c47", - "size": "9856220" - }, - "linux-sbsa": { - "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-12.0.90-archive.tar.xz", - "sha256": "33b3b06cf9838fa3289c7e40f143a8f58b941ccad93f9d0640a29bb83aa2152e", - "md5": "d95ed64afd78865d16b8e6021d26cb5a", - "size": "9825196" - }, - "windows-x86_64": { - "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-12.0.90-archive.zip", - "sha256": "b65a34a3715e3ef2b835bdd36c43b21c20800325be1eda1e84ad4d80ee837c92", - "md5": "4ebbcd9fae699bc6a224148a2a132f36", - "size": "13242979" - }, - "linux-aarch64": { - "relative_path": "cuda_cupti/linux-aarch64/cuda_cupti-linux-aarch64-12.0.90-archive.tar.xz", - "sha256": "9ae58aa13c33a9d6ec053ec18ff87970ce51a8de77a0371ee1e8133d9733e2bb", - "md5": "8b7ebc65a1e34fe9eb3cb0d9cf7ffd3a", - "size": "7742504" - } - }, - "cuda_cuxxfilt": { - "name": "CUDA cuxxfilt (demangler)", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "363502e0743a21f487bac7ebd63ef8dba6cf11a2b16cd82149e0cecc83c24c34", - "md5": "9f066a6547b751765bca4cdaf8e25f09", - "size": "186832" - }, - "linux-ppc64le": { - "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "bfd38cadc3066cf28366722e15bd85c298cd7f4ebe4c7852a4149ba2a6b84d2d", - "md5": "aac148c78969134bc889dd86e2f78895", - "size": "179528" - }, - "linux-sbsa": { - "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "2f992cc3dabce111cb93caabb599caa868797fee6b37ff53676fadce36701e6f", - "md5": "5221152f2f132150f67985cb7c731fca", - "size": "171236" - }, - "windows-x86_64": { - "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-12.0.76-archive.zip", - "sha256": "0d6276d4a49e7e394b7f8ee150bb6d538297334c7d6b3d1266fa29311ba933f4", - "md5": "f9920e0f1c1c6a2cf3ad9882c6fb043f", - "size": "168494" - }, - "linux-aarch64": { - "relative_path": "cuda_cuxxfilt/linux-aarch64/cuda_cuxxfilt-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "04337e54fe12dad4fe9aae44dbc952bccaeeb438be11c3730326b5def18ba3bc", - "md5": "9fbadd8c487f309d743bc2494c80ff4a", - "size": "172044" - } - }, - "cuda_demo_suite": { - "name": "CUDA Demo Suite", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "b8c16b37d6e83e1cd6013a9d296a1244c8e88c6dbaa3111dbbe2bb5119ddd439", - "md5": "2b3940445ffdba7965f75bdbdf88e486", - "size": "4005452" - }, - "windows-x86_64": { - "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-12.0.76-archive.zip", - "sha256": "2bc2d30189f41b0f3150d0629089a1b1c695f12b61ac0dc14877a8e93437761a", - "md5": "4b78b701a76537166ac1d41d84558a7b", - "size": "5048289" - } - }, - "cuda_documentation": { - "name": "CUDA Documentation", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "63226377fa39bcd93619d799b688a15d0cb9d0b3ebe8adb3cb2b2537f5839d5a", - "md5": "f64f43fc17ee19cf9307ca3386be8de8", - "size": "67016" - }, - "linux-ppc64le": { - "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "699ca03fcec35d4f7e454b97cac8e59b08085f155708ff522aba1910b61a8698", - "md5": "fb2c805291ac7a1ab34e2415e1c6bd11", - "size": "67188" - }, - "linux-sbsa": { - "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "771425dbb376e6a9b0caa9a7e31ae598c667b4031d4ca902ea47c9f4ddce05a0", - "md5": "140d34578251899104de09ab5bd3eedb", - "size": "66988" - }, - "windows-x86_64": { - "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-12.0.76-archive.zip", - "sha256": "a980c971deb1ad8fd76c514d63a5df7e2fcec3ddcf4bd9f07a4430aa6ad2f2de", - "md5": "7deb38b0b3b41e96b3f84d3b31b71e49", - "size": "105364" - }, - "linux-aarch64": { - "relative_path": "cuda_documentation/linux-aarch64/cuda_documentation-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "7808f0eb7f37e22d0cad9bfb67b49cee6843ecb6a0f81dde66647720797f186d", - "md5": "a81c23575e2eb4a4225be0a056d0b0bd", - "size": "67004" - } - }, - "cuda_gdb": { - "name": "CUDA GDB", - "license": "CUDA Toolkit", - "version": "12.0.90", - "linux-x86_64": { - "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-12.0.90-archive.tar.xz", - "sha256": "99fe034f035e426314c138902c6ff972697d8691a2291372fe3fbc8ea6542e05", - "md5": "1a780fa6dc71636dc9d6400cb1df21f0", - "size": "65690768" - }, - "linux-ppc64le": { - "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-12.0.90-archive.tar.xz", - "sha256": "e981b441520fa734451f54ee6fb0c3747d844242d1ca6588e23978c0f4d18be2", - "md5": "7aaa44c15862b6b27bb832d592cebf45", - "size": "65468312" - }, - "linux-sbsa": { - "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-12.0.90-archive.tar.xz", - "sha256": "df48dc586b500db4e7c35e313116bcd760885340e6a554ceca020f640b4896b8", - "md5": "1f0c317de2e264c3981bde9d710e15e5", - "size": "65372192" - }, - "linux-aarch64": { - "relative_path": "cuda_gdb/linux-aarch64/cuda_gdb-linux-aarch64-12.0.90-archive.tar.xz", - "sha256": "93d45774b85b6826d7a0d930b518bb3682c3ae3eb539c49737894a21d574ce21", - "md5": "606b2c05e2feaad2a4d2fe89587cac66", - "size": "65271068" - } - }, - "cuda_nsight": { - "name": "Nsight Eclipse Edition Plugin", - "license": "CUDA Toolkit", - "version": "12.0.78", - "linux-x86_64": { - "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-12.0.78-archive.tar.xz", - "sha256": "d7d151829fa516041174366f1460371e598f0b5b1665fb4a369b539bfc4b60e0", - "md5": "af78990a65dd616cae8632660d459e63", - "size": "118608488" - }, - "linux-ppc64le": { - "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-12.0.78-archive.tar.xz", - "sha256": "00af4bff3ac54bdb0b9c16eba80aa3c95814845805559691d504b8837d620b32", - "md5": "686772a1d5532ce104ac83c3957efa0d", - "size": "118608480" - } - }, - "cuda_nvcc": { - "name": "CUDA NVCC", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "160ca9f8828f53daa4b2066c5361aacb45fa2575885f70c223cda1d11df53d6f", - "md5": "2014f06172f634e592dc73557b128866", - "size": "44030620" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "dc5bd7eac57b32a9645c0c23c6a1ba8a9533e846eeec31414e1aa4230afee2f8", - "md5": "98f2c6d8a280c577b49f2f1181a1fde2", - "size": "40973728" - }, - "linux-sbsa": { - "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "85c8c643ea2cfa398e1b5ffcd597f5bb3b738526c9e3fb8e39dd909c55345f36", - "md5": "8adcc46ee0d47b96f96536cd7ef0711b", - "size": "39603744" - }, - "windows-x86_64": { - "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-12.0.76-archive.zip", - "sha256": "f67406f44263f0e4a110a8cf0200bff1d3d0e32917db8a7c9e417a87eb7ca372", - "md5": "659567fef2b820773e8a3f3d74036f85", - "size": "58899378" - }, - "linux-aarch64": { - "relative_path": "cuda_nvcc/linux-aarch64/cuda_nvcc-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "5623df048157f29e825df6c219a308d9988671c4ba2068353f5590f5d5cacb85", - "md5": "5a29cb52cfa3a106cdef626ed023e01d", - "size": "39724216" - } - }, - "cuda_nvdisasm": { - "name": "CUDA nvdisasm", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "0e0660100b052248529ee07353479a7d703258ef3200ac52e9676298511d10c3", - "md5": "8f7eac1f3cbe384c4169d6294190cf8a", - "size": "49863368" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "aca86a9b2b7678884aa58e7a29881044e6d12dbf790b46266f08f6855a10ac79", - "md5": "ad3cb34c8c7cb150c0fdc800e7069a8b", - "size": "49865020" - }, - "linux-sbsa": { - "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "4991a102fd8d7d3aa632cf5a28df6368f4074a4ced952e7665c382c6dbdec1fd", - "md5": "bef0429bc003c9f90905320df0444c3c", - "size": "49807864" - }, - "windows-x86_64": { - "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-12.0.76-archive.zip", - "sha256": "7d716f14dc1342d62c9c67d4636cc1dbd496d7648b6097a53d05e1d6864a487c", - "md5": "4e394432bee60b914cd6b729364e45c6", - "size": "50113509" - }, - "linux-aarch64": { - "relative_path": "cuda_nvdisasm/linux-aarch64/cuda_nvdisasm-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "110567ea874f7fa15f35fc3a9ad6d79dc8dd472e86702dc87d47b9de5aa666bb", - "md5": "dbccdbae44abdc3dc80ade192496da47", - "size": "49807504" - } - }, - "cuda_nvml_dev": { - "name": "CUDA NVML Headers", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "6780e554784bef73050144afe39668e26923d2533c268460c348e0e380d5d048", - "md5": "965db81d17011596c89428a0a5f86480", - "size": "81844" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "319b96999d144192094d254f0607debb14118ce206ef7dfeba3d13da1cc805ec", - "md5": "b30ba5deacce533f6027c614a8e75f82", - "size": "81312" - }, - "linux-sbsa": { - "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "4aee09e48ecd30b2dcaa9de4eb8af2fcdf36ed040eac50c14f3345a12410b6ec", - "md5": "94fe6aa2748a5cae080fe451e7039a0c", - "size": "82068" - }, - "windows-x86_64": { - "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-12.0.76-archive.zip", - "sha256": "abc366280d0aa1ca047323a3e316270b80ffabb649021184647cd16b44c60a71", - "md5": "6f064c5fa6b96a478986593f345e7dd6", - "size": "114128" - }, - "linux-aarch64": { - "relative_path": "cuda_nvml_dev/linux-aarch64/cuda_nvml_dev-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "62b1d7bedb9b928b28d903b87855fc2f4b9db7d6ce38e27a196340ef828bf4e1", - "md5": "135c74bf4517a5e27cfa9f969311737a", - "size": "81992" - } - }, - "cuda_nvprof": { - "name": "CUDA nvprof", - "license": "CUDA Toolkit", - "version": "12.0.90", - "linux-x86_64": { - "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-12.0.90-archive.tar.xz", - "sha256": "e3313459ff03f17836fc43e53fa7bc1d3ba4079e6089c48ac9d91009c762f196", - "md5": "a2f267cd8a511191e3690a22ac95299a", - "size": "1964632" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-12.0.90-archive.tar.xz", - "sha256": "b1067e82bbf4ce592fd94c8b654d91a72e5b70c2ec407348ce7f7cf462acd6a4", - "md5": "8e52f284df19ed42c8593608ee9daa9a", - "size": "1613276" - }, - "windows-x86_64": { - "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-12.0.90-archive.zip", - "sha256": "d509046b6670105bc11a6a31e412a07c7ceb2f76f5248d1d5699be1544dc6221", - "md5": "e1795d1a90cfe134abbc47c8f79556f1", - "size": "1601545" - } - }, - "cuda_nvprune": { - "name": "CUDA nvprune", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "51888da85f2a77b09d8e430c764cc5ef06d178dc6acec129e88130e6cb232978", - "md5": "01f2900c204b78d691ec842e1c8d2fd5", - "size": "56264" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "b1f7f8eeccaa9c0bf98fd4b31f182b7677ab692da3e9010d43a9157d18898e50", - "md5": "3afe2dbdab0a9fc2e8786819650929fa", - "size": "57240" - }, - "linux-sbsa": { - "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "39eff5df71d45112b606f0f2d03b6be7981c147b941ce7b3f530d24e07c7bc77", - "md5": "b09ae0655fbb40707f4a4336b3265893", - "size": "48476" - }, - "windows-x86_64": { - "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-12.0.76-archive.zip", - "sha256": "38860f15bda7bceaf6aff5d088b6cc50260d16036c4c30ec7f3a9d0c3edc3cba", - "md5": "ad56d80358749c16e9638a0bf3248758", - "size": "145929" - }, - "linux-aarch64": { - "relative_path": "cuda_nvprune/linux-aarch64/cuda_nvprune-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "38f5ad012d0f8c1e47af42020d9d9282d5681f9a3eeba7b4787222c9c27e0480", - "md5": "8f6cdacb6cea72b52ebb179a54e04f62", - "size": "48468" - } - }, - "cuda_nvrtc": { - "name": "CUDA NVRTC", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "0a4ebc9a1516a5e00f14c69365ba782dcfab545d2abb15740569970f89855bff", - "md5": "84efcdbcdfdc7307aaa2b46e946305cc", - "size": "30070440" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "a8a5ad2c6823435762acb209fbfb032d22fc3d09c4bfc0cade8d3734f4a26c60", - "md5": "ee1165e9fcccdab9112df312160f6679", - "size": "27776652" - }, - "linux-sbsa": { - "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "40d88b96fd41b28f2c5a14fa14a2c16559b0abb77689d1f85525789b23e21cad", - "md5": "a52760480e6c82b3db71a8e4480009de", - "size": "27613176" - }, - "windows-x86_64": { - "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-12.0.76-archive.zip", - "sha256": "2e97727ea5c943d0757e564fe87818a5c8c3d27bc78d60a7aaab8874e3ec5960", - "md5": "87c314e4e9e3b60e926f5d766795fa13", - "size": "96571437" - }, - "linux-aarch64": { - "relative_path": "cuda_nvrtc/linux-aarch64/cuda_nvrtc-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "6a5bc6281cc778281a0f23402d05ca8265d83b8591d1d3ba661039ad56968c23", - "md5": "d7996ee250f4623f86893df8c0705062", - "size": "27620372" - } - }, - "cuda_nvtx": { - "name": "CUDA NVTX", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "1d2cbcb05a2e8a04b51a866b6997cb73ed90e61ffa183669d3f9ff7a0c7fd654", - "md5": "8514350a4a5e4d4b968612ac5aafd3c6", - "size": "48396" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "2a8aef88030147cd0a394d6fe1ceb2d26aa9694aa751e10d58e39623f27cf7e2", - "md5": "c6c975272145ffe63126d0fd39263773", - "size": "48424" - }, - "linux-sbsa": { - "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "2cb31f10cf0e58d296611bac2bb6e2f9ccb498753bb148b487defbd95e11f3e8", - "md5": "7eee00ed46808fb2421a167568ca7063", - "size": "48964" - }, - "windows-x86_64": { - "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-12.0.76-archive.zip", - "sha256": "e16c1214fb7ae1bb60a9224e07b70aa5fd03310226140672ab3b409ddf4ae2a7", - "md5": "f49f414b982391c1b7848afe5fa29e78", - "size": "65690" - }, - "linux-aarch64": { - "relative_path": "cuda_nvtx/linux-aarch64/cuda_nvtx-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "a698427df9910c96deb6fb77870360b2d723c57a23383ab4c8d84040ce04a468", - "md5": "94fe72e188fdbad8492a9c0751831079", - "size": "48848" - } - }, - "cuda_nvvp": { - "name": "CUDA NVVP", - "license": "CUDA Toolkit", - "version": "12.0.90", - "linux-x86_64": { - "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-12.0.90-archive.tar.xz", - "sha256": "3139235d52d0a41c56cb5caead9481154895754205b7ded7f96137fae3a9e9b1", - "md5": "8b5dd4767cd6028e7bbad5c1b53b74b4", - "size": "117594056" - }, - "linux-ppc64le": { - "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-12.0.90-archive.tar.xz", - "sha256": "48928f3b3103c2fe47e557b4bd9966049b637c563af7a171358700cecf84d609", - "md5": "410f75915e32d61ad76cd1b1d3b5535e", - "size": "111727748" - }, - "windows-x86_64": { - "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-12.0.90-archive.zip", - "sha256": "edc4302461ba6f9b716e146d6bb5f10f7dc776ae1268bfd383cfd74ee94fdf19", - "md5": "4176efce368b865763327d97803202cb", - "size": "120357419" - } - }, - "cuda_opencl": { - "name": "CUDA OpenCL", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_opencl/linux-x86_64/cuda_opencl-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "285b646a231d1101d7ffb7b37ca081f2c170114102ebfd0439fe189dbdc07b37", - "md5": "9b248633d7fd920442af53dd0906c999", - "size": "69168" - }, - "windows-x86_64": { - "relative_path": "cuda_opencl/windows-x86_64/cuda_opencl-windows-x86_64-12.0.76-archive.zip", - "sha256": "9a8688abf527dd1105e2f366e5aa84f901975a3ba94d977088764c45586370d3", - "md5": "598fdccab3e88205c17ff06c4e0be022", - "size": "103553" - } - }, - "cuda_profiler_api": { - "name": "CUDA Profiler API", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "cuda_profiler_api/linux-x86_64/cuda_profiler_api-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "0fb470a3065ad39666dd231c12f8c8a9a94f34c4ac8494e5a399ea8e6ad69346", - "md5": "4748d343c6cdbce71f08e4241c877025", - "size": "16056" - }, - "linux-ppc64le": { - "relative_path": "cuda_profiler_api/linux-ppc64le/cuda_profiler_api-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "211513a8a194557a2b838a46700a820af6f38932fac5a82fa229c162779d9a25", - "md5": "e58b3254395a92b8918b415fd6d0e8d6", - "size": "16056" - }, - "linux-sbsa": { - "relative_path": "cuda_profiler_api/linux-sbsa/cuda_profiler_api-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "b93d4e99077c31e7034eeaea09068b43abc0dd2868a01d489ebcd1e51ceab816", - "md5": "5f843fb1aad1b6ee1c19f64e8bb02085", - "size": "16052" - }, - "windows-x86_64": { - "relative_path": "cuda_profiler_api/windows-x86_64/cuda_profiler_api-windows-x86_64-12.0.76-archive.zip", - "sha256": "e8bccbfda35abc7076ba6623578d11d05966a9c7fed817cbfe7d4dea9627057e", - "md5": "100f5883eb8242d3fec645616e4fa8fe", - "size": "20075" - }, - "linux-aarch64": { - "relative_path": "cuda_profiler_api/linux-aarch64/cuda_profiler_api-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "31d6e843ce65c6e02cf7e4d8ed71566b6a243714750e6742b36c1a705db247ed", - "md5": "514992a5be0c84f33cea052f3137dbab", - "size": "16048" - } - }, - "cuda_sanitizer_api": { - "name": "CUDA Compute Sanitizer API", - "license": "CUDA Toolkit", - "version": "12.0.90", - "linux-x86_64": { - "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-12.0.90-archive.tar.xz", - "sha256": "80e23d82bf4a0bb79c564104121467bd0d15f0142e1dc4fff36bb491bc4b3d4f", - "md5": "b050c5f1139eff774f00d15eadbbb581", - "size": "8124684" - }, - "linux-ppc64le": { - "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-12.0.90-archive.tar.xz", - "sha256": "50d66cab58c7b8aa8473b36844669ee2ea7fc85ad92d49473b30214de22c2d25", - "md5": "b737683145211694fcfe45b5f57b7732", - "size": "7453156" - }, - "linux-sbsa": { - "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-12.0.90-archive.tar.xz", - "sha256": "c872f56fa4a0ce50f8acf5f154d73d0c7a3290e9fa7ffa0b368fbdae3d1435b9", - "md5": "d231a77f1a21aaf9e3397d70eaea1236", - "size": "6020964" - }, - "windows-x86_64": { - "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-12.0.90-archive.zip", - "sha256": "cdb48694de35aed5576aaf81f2443d12791a346d7a186e2c37e7606e252ef4e4", - "md5": "053582e559296ad422eb85f0a6df6ee6", - "size": "13689020" - }, - "linux-aarch64": { - "relative_path": "cuda_sanitizer_api/linux-aarch64/cuda_sanitizer_api-linux-aarch64-12.0.90-archive.tar.xz", - "sha256": "33d777ba9460c0b1cdb99c41a5c2f6d8506c0036b29770819cbf9b0669c81e05", - "md5": "696634de97f6d9486a1122c0bcd53384", - "size": "3442072" - } - }, - "fabricmanager": { - "name": "NVIDIA Fabric Manager", - "license": "NVIDIA Driver", - "version": "525.60.13", - "linux-x86_64": { - "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-525.60.13-archive.tar.xz", - "sha256": "1adfbb12817f213e39d389442505f75dd7cc085ce4afa98ecdc2ea26dcb321da", - "md5": "1a1773bd6ae9cdbe9cf08c623f50bb4b", - "size": "1630476" - }, - "linux-sbsa": { - "relative_path": "fabricmanager/linux-sbsa/fabricmanager-linux-sbsa-525.60.13-archive.tar.xz", - "sha256": "6c74abdb3f5bb54742a71e0c610d9e550c2754a10f12581dc058324799416a44", - "md5": "bab165a4ba0c2bdaf55de62129b8309b", - "size": "1506948" - } - }, - "libcublas": { - "name": "CUDA cuBLAS", - "license": "CUDA Toolkit", - "version": "12.0.1.189", - "linux-x86_64": { - "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-12.0.1.189-archive.tar.xz", - "sha256": "38272cc9184b4a57a6250fc2cd914ffc827f9f8cd5a3e1356bc3c31f843caf8f", - "md5": "135f10725f9b02eaa0056511b700aff4", - "size": "448944412" - }, - "linux-ppc64le": { - "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-12.0.1.189-archive.tar.xz", - "sha256": "2d46e735f8e76e2eb7df1b4f41d56aa8d5d2683f99988bac82d6ae33fb6d344b", - "md5": "2f3ccd6dbd1cfa7b747e1066852e8643", - "size": "371489968" - }, - "linux-sbsa": { - "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-12.0.1.189-archive.tar.xz", - "sha256": "96b68f6821684f39f338862639ce74a74c75830bf44dcd17ef372a1cb8c2304d", - "md5": "2f9ad67392e1cd1ebbb4553a9429a0b0", - "size": "446508656" - }, - "windows-x86_64": { - "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-12.0.1.189-archive.zip", - "sha256": "88f29bec81880844da2eee13f1cdc51e1ccd8b4c60af6df633577810b30f80d0", - "md5": "4c66759a793bd0f350a2bdc621186dfe", - "size": "375183725" - }, - "linux-aarch64": { - "relative_path": "libcublas/linux-aarch64/libcublas-linux-aarch64-12.0.1.189-archive.tar.xz", - "sha256": "5c07b5c50ec784a90ede8ce3b5f4a8ea088489a171d27d8e84609fa905c1866f", - "md5": "403c178317cb52013c05f11ed09917ae", - "size": "318378464" - } - }, - "libcudla": { - "name": "cuDLA", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-aarch64": { - "relative_path": "libcudla/linux-aarch64/libcudla-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "d85f38c47bceeac61eedff54157e5f9ac424b7a199bfd6299f2b99090faa879e", - "md5": "561d85906e7d09f9aafa3de801107f68", - "size": "38416" - } - }, - "libcufft": { - "name": "CUDA cuFFT", - "license": "CUDA Toolkit", - "version": "11.0.0.21", - "linux-x86_64": { - "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-11.0.0.21-archive.tar.xz", - "sha256": "4650f79fcf377af410afedb56445f1332e8f213ec3c94d660f9a91328c3ecb4a", - "md5": "54369abfc2de7a9704d4a6abfdf57de8", - "size": "121895016" - }, - "linux-ppc64le": { - "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-11.0.0.21-archive.tar.xz", - "sha256": "e711671995e9d92d16015a4cd3751ec30710a49fa22f2b88a4a42905c248d861", - "md5": "39efd61abb12157378ddac5f597acb14", - "size": "122075552" - }, - "linux-sbsa": { - "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-11.0.0.21-archive.tar.xz", - "sha256": "91aa1ba5e68ca65778222c9a427a9214c4550d2f45e978e51779a207bafc17a3", - "md5": "947fe2aeff52e2448cf8b6c85b75d151", - "size": "121276340" - }, - "windows-x86_64": { - "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-11.0.0.21-archive.zip", - "sha256": "a33f577d48ef432d5cfa8d0ebfa789cc5261af5dd84fd9c608235edc3f769e43", - "md5": "150394e3997e99dd5bfda601ae51f8ce", - "size": "87877603" - }, - "linux-aarch64": { - "relative_path": "libcufft/linux-aarch64/libcufft-linux-aarch64-11.0.0.21-archive.tar.xz", - "sha256": "ddc525a7c92816115c8bc39a440f4bad71c29b04bfdb7ce9a58be6167e855a3f", - "md5": "d7ba56c1ca4c0cbab93e0787c042d58e", - "size": "121615432" - } - }, - "libcufile": { - "name": "CUDA cuFile", - "license": "CUDA Toolkit", - "version": "1.5.0.59", - "linux-x86_64": { - "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.5.0.59-archive.tar.xz", - "sha256": "222c49b29afb544c69542c4e658b0a1bd01fd2306f2136ad6990ccfff482a097", - "md5": "eb688d2305ed503bd4b43accf09d7ce1", - "size": "40919608" - }, - "linux-aarch64": { - "relative_path": "libcufile/linux-aarch64/libcufile-linux-aarch64-1.5.0.59-archive.tar.xz", - "sha256": "4e8d2b525322be9ab6ae574bd1d0325a4bf9c6c3bbdaa1611b5b969b7b34b0c4", - "md5": "1c79281002eb45d238f5ec14ff836977", - "size": "40583436" - } - }, - "libcurand": { - "name": "CUDA cuRAND", - "license": "CUDA Toolkit", - "version": "10.3.1.50", - "linux-x86_64": { - "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.3.1.50-archive.tar.xz", - "sha256": "7c25712016fdde96011c3370673d9007eddd7231261a9b47f36b213ceb964191", - "md5": "4144e77f5ca16ad596fc3d76b206c865", - "size": "81944120" - }, - "linux-ppc64le": { - "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.3.1.50-archive.tar.xz", - "sha256": "ac020f6e88105927f96f58ca331d3cddba35b37376f4716e866155c4f56681dd", - "md5": "7d367772ea86af8199ce315c96a57dae", - "size": "81985844" - }, - "linux-sbsa": { - "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.3.1.50-archive.tar.xz", - "sha256": "c7ae331dd6c9936a4e9746abdc222514bbda47a1e495e396b8244b918de377e2", - "md5": "6a3139862df5eb789a55b6d8d5f587f4", - "size": "81931640" - }, - "windows-x86_64": { - "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.3.1.50-archive.zip", - "sha256": "5fb95fbbd1c652e1e2a8c12c41d225117cab3f718c739f0d49d580c11b4a44f1", - "md5": "32dc14283d64989131c88af5b6910e5f", - "size": "55271970" - }, - "linux-aarch64": { - "relative_path": "libcurand/linux-aarch64/libcurand-linux-aarch64-10.3.1.50-archive.tar.xz", - "sha256": "bb1ffdb88d4177c6608f3aceb5c2d2ef0314387e3b17c2cd66d571be0ea37e55", - "md5": "80866689104d7742bb1725d982605804", - "size": "82230320" - } - }, - "libcusolver": { - "name": "CUDA cuSOLVER", - "license": "CUDA Toolkit", - "version": "11.4.2.57", - "linux-x86_64": { - "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.4.2.57-archive.tar.xz", - "sha256": "c9460db500d0c7d14debb2c8e0d88fc26a39197363f1b000ccf760866f636f12", - "md5": "800886ff264202d172b89df3dadbcd25", - "size": "83059560" - }, - "linux-ppc64le": { - "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.4.2.57-archive.tar.xz", - "sha256": "bf3c9a090652d011aafe2190c6f26fe108194cf8512d3c571e406054740168bb", - "md5": "cc8287aac0117581f8a017569e819de2", - "size": "83070796" - }, - "linux-sbsa": { - "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.4.2.57-archive.tar.xz", - "sha256": "0ca46b73520657f96f921711c05af7053bd398328d510aecddfff2521c000e91", - "md5": "9d361eeb7894e0ea97ab0072dec8b76c", - "size": "82258964" - }, - "windows-x86_64": { - "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.4.2.57-archive.zip", - "sha256": "c09836df1f43a3496f2b61ad8827af662ace298508869564a40c30d909ba550f", - "md5": "d06f19ad2f63f84707f8a8f68d320814", - "size": "122669822" - }, - "linux-aarch64": { - "relative_path": "libcusolver/linux-aarch64/libcusolver-linux-aarch64-11.4.2.57-archive.tar.xz", - "sha256": "64b68e5d145fcc883e132df090fa931e3fb34fb9ed802584bb38f5202264c50b", - "md5": "eb07c50be715202d76338ad7110d1aec", - "size": "76026940" - } - }, - "libcusparse": { - "name": "CUDA cuSPARSE", - "license": "CUDA Toolkit", - "version": "12.0.0.76", - "linux-x86_64": { - "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-12.0.0.76-archive.tar.xz", - "sha256": "66bd1962f4905b6fc49446d5b2570bcd6171a96833b93f44ad4fc5650f47a496", - "md5": "9d1f8dd5d9085ec5b0f70a2e0f429ade", - "size": "186834824" - }, - "linux-ppc64le": { - "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-12.0.0.76-archive.tar.xz", - "sha256": "36b5f682ebe21089d1bbc8250eabd18c9c9a8bf498b5f878ea4944fda16d8203", - "md5": "802d9b51bb957c9f7cf01cd077a929b9", - "size": "186984664" - }, - "linux-sbsa": { - "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-12.0.0.76-archive.tar.xz", - "sha256": "ee3a2ff7becc449aeda6b2cec11ad7f0606cef4b54eb6511d5f0c1166c79cc80", - "md5": "42b015133b9395cf7c5cd059ac4c8ba8", - "size": "186428912" - }, - "windows-x86_64": { - "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-12.0.0.76-archive.zip", - "sha256": "a475bc85cfc204aff825e3e5d97d7c1993d3f2cfec22a87e76b8d596fc496a02", - "md5": "7c5144483b1b050cbb91c4bffa5a1e94", - "size": "151652787" - }, - "linux-aarch64": { - "relative_path": "libcusparse/linux-aarch64/libcusparse-linux-aarch64-12.0.0.76-archive.tar.xz", - "sha256": "72a882a92d0ae9a9d62dd1ed0409ddee241da04923bfc0c4b9639a4d13fed4d8", - "md5": "1ce21b4b799209c90cc55e4c42f5f7ad", - "size": "191797084" - } - }, - "libnpp": { - "name": "CUDA NPP", - "license": "CUDA Toolkit", - "version": "12.0.0.30", - "linux-x86_64": { - "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-12.0.0.30-archive.tar.xz", - "sha256": "003365261d69caa6219ba698b649a961ad41ae386772fe673f3b8166c1b42775", - "md5": "a2721015edbd6ae8a63da0c2fcfb3c73", - "size": "183973264" - }, - "linux-ppc64le": { - "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-12.0.0.30-archive.tar.xz", - "sha256": "4e2b56928cfef99725931f98b5840ca35a56505d927871ce53accba6f38005e5", - "md5": "0bc29dcf667156062c719a0e84b863ff", - "size": "184254800" - }, - "linux-sbsa": { - "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-12.0.0.30-archive.tar.xz", - "sha256": "6239013db1d4badf1cc1af8acebe3fc1bc0ef167092b314721078742a2916976", - "md5": "eda65a21bb0a0d762b082508620eb299", - "size": "183254792" - }, - "windows-x86_64": { - "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-12.0.0.30-archive.zip", - "sha256": "a7abd59e05b326d6adfca16840071d2ed02d0cc6df092d921ed96d489a2e864e", - "md5": "dcfac50bad2ee907c0d4cbb272f5a06c", - "size": "152918791" - }, - "linux-aarch64": { - "relative_path": "libnpp/linux-aarch64/libnpp-linux-aarch64-12.0.0.30-archive.tar.xz", - "sha256": "248fde03fb06d6dbdf080b05016baec5ed15bdd202374599de6165110b48e4b0", - "md5": "ee08825c03495d38f12350816952fc08", - "size": "179283116" - } - }, - "libnvidia_nscq": { - "name": "NVIDIA NSCQ API", - "license": "NVIDIA Driver", - "version": "525.60.13", - "linux-x86_64": { - "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-525.60.13-archive.tar.xz", - "sha256": "1335573917e02a0fdb032d2d959d3a82598498680a7aa3a32eb1059db75bbb54", - "md5": "3fc1b5ba901c38176f9f9be503c2f7bf", - "size": "439128" - }, - "linux-sbsa": { - "relative_path": "libnvidia_nscq/linux-sbsa/libnvidia_nscq-linux-sbsa-525.60.13-archive.tar.xz", - "sha256": "8a5c56cf99df931b2f7088e3ad0fd962437b0dd5e5b66a8af3ce692c86be44f2", - "md5": "dd005f018eae69ecf91160535e4f077f", - "size": "395800" - } - }, - "libnvjitlink": { - "name": "NVIDIA compiler library for JIT LTO functionality", - "license": "CUDA Toolkit", - "version": "12.0.76", - "linux-x86_64": { - "relative_path": "libnvjitlink/linux-x86_64/libnvjitlink-linux-x86_64-12.0.76-archive.tar.xz", - "sha256": "92a70db1ee90f1816a40d4d2019e0a59c43eebb9f3eb1208abedcc00a13e48be", - "md5": "629eb972949909a441346ba7aa0b7aea", - "size": "25644284" - }, - "linux-ppc64le": { - "relative_path": "libnvjitlink/linux-ppc64le/libnvjitlink-linux-ppc64le-12.0.76-archive.tar.xz", - "sha256": "dd317e1d052b4231ab95d1b472105640f617f7d250aacc5bc1c952aab93d7483", - "md5": "bb08ab81b8df623356c1edd3ff692a92", - "size": "23614740" - }, - "linux-sbsa": { - "relative_path": "libnvjitlink/linux-sbsa/libnvjitlink-linux-sbsa-12.0.76-archive.tar.xz", - "sha256": "9f18090f6587e95be0ee424f07358eeb0e15c5ab3f8636870f68dd84a92ed2e6", - "md5": "1847112c9f0c35b9d12a2be3fdf36e72", - "size": "23443868" - }, - "windows-x86_64": { - "relative_path": "libnvjitlink/windows-x86_64/libnvjitlink-windows-x86_64-12.0.76-archive.zip", - "sha256": "cae74b6790174b283d892bb20e1ff91bff13c8a2a8486de4f417e09675469372", - "md5": "6637e29e523a18f3c1fc7a3e8e1750ca", - "size": "86232010" - }, - "linux-aarch64": { - "relative_path": "libnvjitlink/linux-aarch64/libnvjitlink-linux-aarch64-12.0.76-archive.tar.xz", - "sha256": "e01c074fe008aa81496d65779068d8443b19b1a1d3b6e36d20e2a4018d59888d", - "md5": "81d94bf755b2406d15a986813ef21306", - "size": "23442512" - } - }, - "libnvjpeg": { - "name": "CUDA nvJPEG", - "license": "CUDA Toolkit", - "version": "12.0.0.28", - "linux-x86_64": { - "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-12.0.0.28-archive.tar.xz", - "sha256": "ad3380591a4d5b97ab57d10e9bf05e23dee6429ff91ea939423a3b35ee0e35de", - "md5": "043df4a379a5ce4947909e7a0d3383ea", - "size": "1972024" - }, - "linux-ppc64le": { - "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-12.0.0.28-archive.tar.xz", - "sha256": "f7136bb691d794c680d77376b306bedb80eeebf687bfa4dc74355fdae5adcebb", - "md5": "c7269e3c1bf6b5000fceebf64fbd83f8", - "size": "1980748" - }, - "linux-sbsa": { - "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-12.0.0.28-archive.tar.xz", - "sha256": "31fd6ee0dccc72f0d583e25b849543551eb4bc49d3285628bf3b17929e09bac1", - "md5": "184b017c65856b4f0299a02fc9ec6a5b", - "size": "1786868" - }, - "windows-x86_64": { - "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-12.0.0.28-archive.zip", - "sha256": "b7cb56ab2c69e055a4b1ea41653df917153a568ab23fb0d8121e0739011989a8", - "md5": "18d62f0d142f7e8ce6de806190876a18", - "size": "1943533" - } - }, - "libnvvm_samples": { - "name": "NVVM library samples", - "license": "CUDA Toolkit", - "version": "12.0.94", - "linux-x86_64": { - "relative_path": "libnvvm_samples/linux-x86_64/libnvvm_samples-linux-x86_64-12.0.94-archive.tar.xz", - "sha256": "0f6bcdd9b883cdd8aa706adf1a7b6ffba89ce58ef0ba986ba6dc9d3301d14987", - "md5": "9c07aca7a08caa69da3fd6d8e46aaed0", - "size": "28988" - }, - "linux-ppc64le": { - "relative_path": "libnvvm_samples/linux-ppc64le/libnvvm_samples-linux-ppc64le-12.0.94-archive.tar.xz", - "sha256": "38abed8bc9bf7d103e5d73db587a157dfbf9ef91b8c2d79d8d51c0c085d7d6f7", - "md5": "5d080ed2bd81e0e3c2c497203f76f189", - "size": "28992" - }, - "linux-sbsa": { - "relative_path": "libnvvm_samples/linux-sbsa/libnvvm_samples-linux-sbsa-12.0.94-archive.tar.xz", - "sha256": "892d1e14eefe5d5ba4863575c767e016ac022002014acf87a2ec62e3e562ae09", - "md5": "3fd0884d42bd2c380e4c086f372d172c", - "size": "28900" - }, - "windows-x86_64": { - "relative_path": "libnvvm_samples/windows-x86_64/libnvvm_samples-windows-x86_64-12.0.94-archive.zip", - "sha256": "e801c44c296f93e6c0a1fbb1815fac4e1d58be248bc5c3321ead5b02b825261d", - "md5": "ce6670a8312bc878f9dc1ad3c2680f28", - "size": "44383" - }, - "linux-aarch64": { - "relative_path": "libnvvm_samples/linux-aarch64/libnvvm_samples-linux-aarch64-12.0.94-archive.tar.xz", - "sha256": "069111f6c03835e56795f3306c9a7406f036f734a4b92c4a6007d532e64be5df", - "md5": "a2ca1ffa02c9583ebe455c6481813cdb", - "size": "29000" - } - }, - "nsight_compute": { - "name": "Nsight Compute", - "license": "NVIDIA SLA", - "version": "2022.4.0.15", - "linux-x86_64": { - "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2022.4.0.15-archive.tar.xz", - "sha256": "f084e05eb4d2ba32aceb25e1dcfe03f2a50127630973722b65219cf9e986a139", - "md5": "5728a6b6f74c6fa7399c343f1c727f71", - "size": "704648508" - }, - "linux-ppc64le": { - "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2022.4.0.15-archive.tar.xz", - "sha256": "20e58ce79681bc8fd39394cfb8f8316c177fe4175af3ae95c025996f45904732", - "md5": "9e49ee03465ac3c0ba0df9063d664433", - "size": "181691528" - }, - "linux-sbsa": { - "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2022.4.0.15-archive.tar.xz", - "sha256": "7d0b3d4d01ce36657fa739496c7b0a9c627f5fa42021c1696ddd15e119bb05a4", - "md5": "50dbf4765e7faad5f5c3d4e0adde0d30", - "size": "341158648" - }, - "windows-x86_64": { - "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2022.4.0.15-archive.zip", - "sha256": "958da9986841c49cb5a2885d1e14e4c673ba94e4b404ef9389d083b7a0095d84", - "md5": "4aef8035c676ba89c4d27656c4a4f01e", - "size": "634477385" - }, - "linux-aarch64": { - "relative_path": "nsight_compute/linux-aarch64/nsight_compute-linux-aarch64-2022.4.0.15-archive.tar.xz", - "sha256": "cdcf9b4cefdafbaacbcc2d3266537458fd3924d8a6fb67592605030d18954604", - "md5": "0b5b0f866f9331df8e59316719aaa2d1", - "size": "704209708" - } - }, - "nsight_systems": { - "name": "Nsight Systems", - "license": "NVIDIA SLA", - "version": "2022.4.2.18", - "linux-x86_64": { - "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2022.4.2.18-archive.tar.xz", - "sha256": "9f472990098a719bb8cc3136512e37eb99843c80c95560f9f8edfb2e50d9fa67", - "md5": "b490dfb944a6b8d4e0d12ca4b07b7492", - "size": "197472896" - }, - "linux-ppc64le": { - "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2022.4.2.18-archive.tar.xz", - "sha256": "6a45a64052c80db3ac99dff56bd415cc1c767d5bfb6fa97acf8081a9e793e94b", - "md5": "ad6bfa7fa72adf5324d0e2e75a3cec90", - "size": "53600240" - }, - "linux-sbsa": { - "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2022.4.2.18-archive.tar.xz", - "sha256": "7e1598d5a8eec9bd84c9276d36c5efe7eebf44e5cc308b08c8a6f985ca41e0e2", - "md5": "28be2fa20b9e90b9cf207d60cec75c4b", - "size": "187083996" - }, - "windows-x86_64": { - "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2022.4.2.18-archive.zip", - "sha256": "5984fd60fd80f6cb0073ab7bc5edc754bfa8412c77b1068dbd82da3abe73137e", - "md5": "78b945d4735790cecfe163031b39c16e", - "size": "729028336" - } - }, - "nsight_vse": { - "name": "Nsight Visual Studio Edition (VSE)", - "license": "NVIDIA SLA", - "version": "2022.4.0.22322", - "windows-x86_64": { - "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2022.4.0.22322-archive.zip", - "sha256": "d0452c1bb063482920040d1e1b4f3239bff2de238762c91176a101fb9c748bf8", - "md5": "9a6d042c20eef6349e2e621c2a218086", - "size": "536307565" - } - }, - "nvidia_driver": { - "name": "NVIDIA Linux Driver", - "license": "NVIDIA Driver", - "version": "525.60.13", - "linux-x86_64": { - "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-525.60.13-archive.tar.xz", - "sha256": "a42691822f6e87060da5682a8e0662c86d1b20fbf31d12cb2969b819995e4138", - "md5": "ad2972799f4ebf292e8642c28c83127d", - "size": "417069508" - }, - "linux-ppc64le": { - "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-525.60.13-archive.tar.xz", - "sha256": "4ad08f8431195580349f4984fae2d93697d2f5572837c1e7ae59c37feab291c8", - "md5": "b38a21c5dd06e56a6dcf840cfeb5b82a", - "size": "97903116" - }, - "linux-sbsa": { - "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-525.60.13-archive.tar.xz", - "sha256": "1708ae3ba857559cbfc4e6c06267ed6126eff2c68fa5321a95906f50e984148c", - "md5": "78379197e219d8172a3e9e1cc0de81e3", - "size": "268660720" - } - }, - "nvidia_fs": { - "name": "NVIDIA filesystem", - "license": "CUDA Toolkit", - "version": "2.14.12", - "linux-x86_64": { - "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.14.12-archive.tar.xz", - "sha256": "12a2a04b4cd0b6f9d502556694594e122e22cc1effc7fa359308dbe405732bc2", - "md5": "f47d9f5415c50ddb41d87b58b218c277", - "size": "57124" - }, - "linux-aarch64": { - "relative_path": "nvidia_fs/linux-aarch64/nvidia_fs-linux-aarch64-2.14.12-archive.tar.xz", - "sha256": "c90434ff603a74a4966bce28b0152b383b0c6f48b2e935c4194db5d3ceaa2f77", - "md5": "1bb76127d950212d9450f259f2012825", - "size": "57112" - } - }, - "visual_studio_integration": { - "name": "CUDA Visual Studio Integration", - "license": "CUDA Toolkit", - "version": "12.0.76", - "windows-x86_64": { - "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-12.0.76-archive.zip", - "sha256": "ef81457b08ef6b03899cb08433b1be4043cdf2c69386fc0d45ba55f9c3b36db2", - "md5": "1f048a3cb028e3c50b91823d7211fc63", - "size": "544915" - } - } -} diff --git a/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.1.json b/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.1.json new file mode 100644 index 000000000000..77bd44962abf --- /dev/null +++ b/pkgs/development/compilers/cudatoolkit/redist/manifests/redistrib_12.0.1.json @@ -0,0 +1,1128 @@ +{ + "release_date": "2023-01-31", + "cuda_cccl": { + "name": "CXX Core Compute Libraries", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_cccl/linux-x86_64/cuda_cccl-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "99ab5e0f671490141e0f41724f271dbfad75fb1105532f0726523d4fdcf12783", + "md5": "b77b8d051671afd1d6f994c67ef3baeb", + "size": "1031260" + }, + "linux-ppc64le": { + "relative_path": "cuda_cccl/linux-ppc64le/cuda_cccl-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "12a24d11fe5d77e57adbd9db5a596224a17d6bcee3df7f51a65a3fb01c191028", + "md5": "5b5be14567397d68e3d90b86b3ba2f94", + "size": "1031500" + }, + "linux-sbsa": { + "relative_path": "cuda_cccl/linux-sbsa/cuda_cccl-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "8ac9fa2cbaf2ead8c7794b787eea98a7ee94ecf44f99d564e1a4ae349f08a153", + "md5": "0799dc5f7591ceb6b7f10e54366c5884", + "size": "1030984" + }, + "windows-x86_64": { + "relative_path": "cuda_cccl/windows-x86_64/cuda_cccl-windows-x86_64-12.0.140-archive.zip", + "sha256": "4a660ecc7d6651f797279cb5aeeaef90defc33469b2015ef2a15375c7c56aeec", + "md5": "94df119ff7099e090e335913869abbdb", + "size": "2610906" + }, + "linux-aarch64": { + "relative_path": "cuda_cccl/linux-aarch64/cuda_cccl-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "c5333a62613f990396496988c4b6021ffdeea2d633bdd980e7a038cc2db0db79", + "md5": "1e969e1e7cd53b8e4d64ee093517a23a", + "size": "1031408" + } + }, + "cuda_compat": { + "name": "CUDA compat L4T", + "license": "CUDA Toolkit", + "version": "12.0.32271208", + "linux-aarch64": { + "relative_path": "cuda_compat/linux-aarch64/cuda_compat-linux-aarch64-12.0.32271208-archive.tar.xz", + "sha256": "343819e63007e307947f2d4ce981a36693bd0266e99516cc0c91b24897e25938", + "md5": "ab3e1ac6c9a31912df5620d94ed44ae6", + "size": "16078292" + } + }, + "cuda_cudart": { + "name": "CUDA Runtime (cudart)", + "license": "CUDA Toolkit", + "version": "12.0.146", + "linux-x86_64": { + "relative_path": "cuda_cudart/linux-x86_64/cuda_cudart-linux-x86_64-12.0.146-archive.tar.xz", + "sha256": "af047b03ea261db8413fe61cd9c5d480e784b41f286d1cd31925eddaf8b2e84c", + "md5": "7b4b29816f73a489cf99b35cd1bc6d1f", + "size": "976768" + }, + "linux-ppc64le": { + "relative_path": "cuda_cudart/linux-ppc64le/cuda_cudart-linux-ppc64le-12.0.146-archive.tar.xz", + "sha256": "21db5f223ba9d6f0c873b81068e6ca9d1dede310ab43d2f200820530aa41ef9b", + "md5": "74f380e1b605220c08140d1a09b94761", + "size": "968140" + }, + "linux-sbsa": { + "relative_path": "cuda_cudart/linux-sbsa/cuda_cudart-linux-sbsa-12.0.146-archive.tar.xz", + "sha256": "33b14bd774b0bec908d4758bfb30fcf2020cd0c93ad899376f438113de3df519", + "md5": "837b6e6688b50b85085862b95fb1e5e5", + "size": "969116" + }, + "windows-x86_64": { + "relative_path": "cuda_cudart/windows-x86_64/cuda_cudart-windows-x86_64-12.0.146-archive.zip", + "sha256": "f40f5ab0d3a566f30d865903f76b504a168a58adc11cf16e0c53f1c2cea4a588", + "md5": "bbc51b42e2afb43e20719fd93b9ec4e8", + "size": "2362874" + }, + "linux-aarch64": { + "relative_path": "cuda_cudart/linux-aarch64/cuda_cudart-linux-aarch64-12.0.146-archive.tar.xz", + "sha256": "cb333a5ef5da06aa88823501c3269dbde7b3b2aa53b3cf9d76c7ebad9d53a532", + "md5": "672231dc9e9f9fb59d86267d58b831c6", + "size": "977400" + } + }, + "cuda_cuobjdump": { + "name": "cuobjdump", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_cuobjdump/linux-x86_64/cuda_cuobjdump-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "6f032c74da29c8a4738e30e69f42111f754dc7ffde2aa0417cfb3b3813aef0a1", + "md5": "b22f9840396ae7a033e90a6d84358a89", + "size": "166916" + }, + "linux-ppc64le": { + "relative_path": "cuda_cuobjdump/linux-ppc64le/cuda_cuobjdump-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "c1c8361fcbec46156df7fb764a7a8b213f06ec0ae926e98316bc4ec63ce3a68e", + "md5": "28894e39e6fa6e5994684a85f557226e", + "size": "206572" + }, + "linux-sbsa": { + "relative_path": "cuda_cuobjdump/linux-sbsa/cuda_cuobjdump-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "899dde9d02095a6802c81021480dd093ae4a1d2af314ba3cefdd93e8a2eb076b", + "md5": "72ce0111cde945e9eae10988086afb17", + "size": "175484" + }, + "windows-x86_64": { + "relative_path": "cuda_cuobjdump/windows-x86_64/cuda_cuobjdump-windows-x86_64-12.0.140-archive.zip", + "sha256": "51def3bad16ad68a33a7fcb3ab75ee8b7c607e025bf1aeb07105377085450691", + "md5": "8988bc0c90e8a57de436d44672b2ef7c", + "size": "3789889" + }, + "linux-aarch64": { + "relative_path": "cuda_cuobjdump/linux-aarch64/cuda_cuobjdump-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "fef156cad68f94b8180ac20b99f57cbbeeb05107ed42dc160b33a529c2cd010f", + "md5": "d4c8bbd42a90279a5a77ad9ea47baf1a", + "size": "175420" + } + }, + "cuda_cupti": { + "name": "CUPTI", + "license": "CUDA Toolkit", + "version": "12.0.146", + "linux-x86_64": { + "relative_path": "cuda_cupti/linux-x86_64/cuda_cupti-linux-x86_64-12.0.146-archive.tar.xz", + "sha256": "ab0cd16702748861a58668e78fe6ed27d69c649f585a616927e7809a4108881b", + "md5": "9450ec8fe5cdef7ad0fad2fae37e04a1", + "size": "18991980" + }, + "linux-ppc64le": { + "relative_path": "cuda_cupti/linux-ppc64le/cuda_cupti-linux-ppc64le-12.0.146-archive.tar.xz", + "sha256": "24d5bdeed953816ea2137393b306dbe1eb269e6411d2d4d50665104357716866", + "md5": "3536b230cddd5f569d9db5933e533302", + "size": "9815620" + }, + "linux-sbsa": { + "relative_path": "cuda_cupti/linux-sbsa/cuda_cupti-linux-sbsa-12.0.146-archive.tar.xz", + "sha256": "df39906fe2320a4b7901b5afe6bc39c43c0cd83871bcd153005166bca3036fba", + "md5": "86b5b0201e44a97e7c6d0776f28ccbae", + "size": "9725744" + }, + "windows-x86_64": { + "relative_path": "cuda_cupti/windows-x86_64/cuda_cupti-windows-x86_64-12.0.146-archive.zip", + "sha256": "cc888b32d5e2d6dfbdab00c5ac99bbb35f45cbee6a9e79f679013a550811a322", + "md5": "aeb8b8d7a4a22becfbb0b3500357a423", + "size": "13237455" + }, + "linux-aarch64": { + "relative_path": "cuda_cupti/linux-aarch64/cuda_cupti-linux-aarch64-12.0.146-archive.tar.xz", + "sha256": "36e00f979177b559fd6b137ecbdf8cf9e5ed6d3e2d9960c3d17e9b375cecf540", + "md5": "183727f766b796a8819abcbf563f225d", + "size": "7679384" + } + }, + "cuda_cuxxfilt": { + "name": "CUDA cuxxfilt (demangler)", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_cuxxfilt/linux-x86_64/cuda_cuxxfilt-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "fee967a2ca2c22ca74495c55b7771d0f1f373c21e5320d655f0d4dcc863548ec", + "md5": "add93722725ad91107e7dc46bba4cd55", + "size": "186184" + }, + "linux-ppc64le": { + "relative_path": "cuda_cuxxfilt/linux-ppc64le/cuda_cuxxfilt-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "5b00578c3504e72c65140b30785a652b1f231b0ef7643a104605ab601a2d38ac", + "md5": "85bd21a31c60192b9b88157ff3a5192e", + "size": "179804" + }, + "linux-sbsa": { + "relative_path": "cuda_cuxxfilt/linux-sbsa/cuda_cuxxfilt-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "a92c6ac9c386630fcdf4566cada5bb45b8d826690649c1cdb796da0ada07720d", + "md5": "e9b4589c18ad44a527237b48afeda30e", + "size": "171972" + }, + "windows-x86_64": { + "relative_path": "cuda_cuxxfilt/windows-x86_64/cuda_cuxxfilt-windows-x86_64-12.0.140-archive.zip", + "sha256": "c25359098a319adf86020da49c0a7718be0f9684e424f7daee4bc39c5e42063f", + "md5": "d2f0a956d3c38740bbd9ede6651aa31a", + "size": "168497" + }, + "linux-aarch64": { + "relative_path": "cuda_cuxxfilt/linux-aarch64/cuda_cuxxfilt-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "e53500b0b8b468c03e34bbc05089f6cd2b11e6874e1c9c995e6cde13a50d67f6", + "md5": "11daee96f53bf5e095b61b54d6157e5c", + "size": "171980" + } + }, + "cuda_demo_suite": { + "name": "CUDA Demo Suite", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_demo_suite/linux-x86_64/cuda_demo_suite-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "e535d9c8ca9830c24c70e9b08fb6aef009cc490dbfe11e514a5b6a9abdb87e1f", + "md5": "f03dd4d7871da95689970a29fdb889b1", + "size": "3972436" + }, + "windows-x86_64": { + "relative_path": "cuda_demo_suite/windows-x86_64/cuda_demo_suite-windows-x86_64-12.0.140-archive.zip", + "sha256": "a220773af909aecfa467eeb1be10c5390bce9660fa3eb7dec56e367ee2984b24", + "md5": "9469c1c926def7b2e01e8c1469c21cb1", + "size": "5048369" + } + }, + "cuda_documentation": { + "name": "CUDA Documentation", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_documentation/linux-x86_64/cuda_documentation-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "e9d35c48e30a7bb4d8835580494849ca7b5b39b244cafeb792864488f83b3cec", + "md5": "97e971e6cfb8b14f25f024096f8de3c1", + "size": "67044" + }, + "linux-ppc64le": { + "relative_path": "cuda_documentation/linux-ppc64le/cuda_documentation-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "33f7b839f5f01a81285fc6da4f121cfb8857e7e85ef3041f89332ea39a811981", + "md5": "8d597206f5afa27c761bae8a2b67c8e6", + "size": "67112" + }, + "linux-sbsa": { + "relative_path": "cuda_documentation/linux-sbsa/cuda_documentation-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "1b952a3a38949e546ac70d1307dea0d2013778dd550aa26485d0fde6784c4e81", + "md5": "c0a8d48a5d2244458e0ca2fc770201d8", + "size": "67180" + }, + "windows-x86_64": { + "relative_path": "cuda_documentation/windows-x86_64/cuda_documentation-windows-x86_64-12.0.140-archive.zip", + "sha256": "1166dad7c941068e680277b1deb3f92417ce17acbcb4022a262a3a1ad5c410f5", + "md5": "59155977b997a67e0b53d45a06d1675c", + "size": "105380" + }, + "linux-aarch64": { + "relative_path": "cuda_documentation/linux-aarch64/cuda_documentation-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "5c5f1ddc8c05dbf8e46f0de6b300c7dedd91e2047906500e2c4f46a363cca5c3", + "md5": "193b5539477134fee9afe8b1456f6251", + "size": "67044" + } + }, + "cuda_gdb": { + "name": "CUDA GDB", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_gdb/linux-x86_64/cuda_gdb-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "d8a9f3ce2b10b3586dd6af887b3e00cb76e7013b12e7060d23f01ff9b4808738", + "md5": "ae797cca7f7f80e5b34a9d241b262034", + "size": "65706444" + }, + "linux-ppc64le": { + "relative_path": "cuda_gdb/linux-ppc64le/cuda_gdb-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "c2cc2e789d267af56b7a0782412d8b4c09229f7e064c6b076401f4a10811695f", + "md5": "f060b14655e923dd2364225b08d1fba3", + "size": "65484032" + }, + "linux-sbsa": { + "relative_path": "cuda_gdb/linux-sbsa/cuda_gdb-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "eb4ee6eed7cf749026e9cdfd1676ea7d39213b16cb8ed9cf3076fb1f56c6f646", + "md5": "269fe631516733aee8c382ad2781266a", + "size": "65381072" + }, + "linux-aarch64": { + "relative_path": "cuda_gdb/linux-aarch64/cuda_gdb-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "f6b3c5eecd79ec0cf1757629231a682c96be96b52c3e50d036071d457ee941dc", + "md5": "8ac5b300e21d08be2e64f2f706c99f56", + "size": "65243124" + } + }, + "cuda_nsight": { + "name": "Nsight Eclipse Edition Plugin", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_nsight/linux-x86_64/cuda_nsight-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "3495eb983d528dd8d1917e4fabd833e9ec88acb0b30e02fcaf5cfc5598683ec7", + "md5": "1bca54c09196aa1c6dacc120fdf9471d", + "size": "118610252" + }, + "linux-ppc64le": { + "relative_path": "cuda_nsight/linux-ppc64le/cuda_nsight-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "ad40ea617abe96b4cd55ffb3dcf30b56704dacb35eaacac79391971d69fe9736", + "md5": "0a423201f7f68802b94893c37a4b9c6b", + "size": "118610260" + } + }, + "cuda_nvcc": { + "name": "CUDA NVCC", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_nvcc/linux-x86_64/cuda_nvcc-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "906b894dffd853acefe6ab3d2a6cd74a0aa99b34bb8ca1e848174bddf55bfa3b", + "md5": "6a0d869f8220935bbaadfc0bb337fa3d", + "size": "44036908" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvcc/linux-ppc64le/cuda_nvcc-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "9cd7b8e584c74a648147c9cfbedb505165c90187f0eb10a4696541ac0751f2b5", + "md5": "3ab025c357486c3912f6cc4ce1374f3c", + "size": "40987532" + }, + "linux-sbsa": { + "relative_path": "cuda_nvcc/linux-sbsa/cuda_nvcc-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "04ea3493f4411007f1941eacc2de4af2277804a3d5be2e18f2aea54a362431bd", + "md5": "c9597a42999bf90124515ea4039e367b", + "size": "39730304" + }, + "windows-x86_64": { + "relative_path": "cuda_nvcc/windows-x86_64/cuda_nvcc-windows-x86_64-12.0.140-archive.zip", + "sha256": "410100486923612c1984e4b4d93b04c9d689f5aca9e93294f1d78e3af745746b", + "md5": "0a82b305e8d5ece3a0ce45a942039c9e", + "size": "58942235" + }, + "linux-aarch64": { + "relative_path": "cuda_nvcc/linux-aarch64/cuda_nvcc-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "9540d9b13bc5d576f3ea645cb077b420c672c7197c7e5c9dae3db75d5a671d67", + "md5": "38ec2847d9b1418c338e6987826e3c28", + "size": "39767432" + } + }, + "cuda_nvdisasm": { + "name": "CUDA nvdisasm", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_nvdisasm/linux-x86_64/cuda_nvdisasm-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "edcd6133f55d04dce7f09c0b9e70b3c2e3b67a4ac526aaaffd98cbdf619fd160", + "md5": "432998db00587b79d2df4f167853a8e9", + "size": "49877104" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvdisasm/linux-ppc64le/cuda_nvdisasm-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "69e46bf5eafa22ba341a61cdb23cb78fa09b43656c77c219a3a53f2ab5105bc0", + "md5": "6c8365934df42e34cb4731038cc59aa0", + "size": "49865372" + }, + "linux-sbsa": { + "relative_path": "cuda_nvdisasm/linux-sbsa/cuda_nvdisasm-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "591da3a8957102934dd4af1c18a4a781c071b7da6a88213ad05edba3393783ce", + "md5": "5eeb1815186c5fed4a9aa6a7ecfdc48f", + "size": "49808164" + }, + "windows-x86_64": { + "relative_path": "cuda_nvdisasm/windows-x86_64/cuda_nvdisasm-windows-x86_64-12.0.140-archive.zip", + "sha256": "ac84be4b8657dff366ac949d2a1827ed30ff8a130a46bad92006c4bad6a79be6", + "md5": "7f09d7a69988beefac772b7ac5f5be55", + "size": "50113623" + }, + "linux-aarch64": { + "relative_path": "cuda_nvdisasm/linux-aarch64/cuda_nvdisasm-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "27bd736406574ab8c4090725da5b3504905e2e2aed4d1cc1fbf3ddbaf1e2cd18", + "md5": "2e690fe0ee14d3c052a615b890eb155a", + "size": "49797168" + } + }, + "cuda_nvml_dev": { + "name": "CUDA NVML Headers", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_nvml_dev/linux-x86_64/cuda_nvml_dev-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "c775973769480a1e2e1f6dcd3ae8e384e8829bb8afd5669b6f5af9a442b947e3", + "md5": "f2503fc3152d1c41adb1b29babefbb30", + "size": "81756" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvml_dev/linux-ppc64le/cuda_nvml_dev-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "414c1faea0f537965b3af44631fe2f3a285fdac8d641b8b3c120e48230327ba5", + "md5": "e786d89b7bfc30bcdd9914e161b63d59", + "size": "81376" + }, + "linux-sbsa": { + "relative_path": "cuda_nvml_dev/linux-sbsa/cuda_nvml_dev-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "f41a552e53842e8fe9d0851f29433c115a0bc05cc44c93bc33a7ad5b91d73a14", + "md5": "4a0f57b6cc1fcc16ac3277fb47a79b5c", + "size": "81856" + }, + "windows-x86_64": { + "relative_path": "cuda_nvml_dev/windows-x86_64/cuda_nvml_dev-windows-x86_64-12.0.140-archive.zip", + "sha256": "4c753f4b871a62f3586e9c3afa51128445c7b1479da303daebfcbc5a3743e9a8", + "md5": "056c25ad1d6e4c113fcd43fbfdbdd970", + "size": "114004" + }, + "linux-aarch64": { + "relative_path": "cuda_nvml_dev/linux-aarch64/cuda_nvml_dev-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "4635668f7b0dfcf78cf497c2132a7a02eebf2c31ef082edf03a9ff9fe985e3f4", + "md5": "35a7f4c9c1c3595b5039c9c11b35d2c9", + "size": "81912" + } + }, + "cuda_nvprof": { + "name": "CUDA nvprof", + "license": "CUDA Toolkit", + "version": "12.0.146", + "linux-x86_64": { + "relative_path": "cuda_nvprof/linux-x86_64/cuda_nvprof-linux-x86_64-12.0.146-archive.tar.xz", + "sha256": "b37b2f8f5a2289accb75378cf75ed56404b1e608d56f35fcb70c952235fd2f8b", + "md5": "41626aec89fa0bd023a9f0ebd9e3d01e", + "size": "2438328" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvprof/linux-ppc64le/cuda_nvprof-linux-ppc64le-12.0.146-archive.tar.xz", + "sha256": "9accaff6e628e949c8e744900e0b602579b75f40a4b8e225b6faf64ffc691838", + "md5": "95d8e7233519f26bcc2a7c6dbede4c03", + "size": "2116312" + }, + "windows-x86_64": { + "relative_path": "cuda_nvprof/windows-x86_64/cuda_nvprof-windows-x86_64-12.0.146-archive.zip", + "sha256": "f44dffd0ad1d6e38d1f4a1ac8046e91a8cdf6deb52ea8bb830a07d27dce5d785", + "md5": "f7a1de81dc1707ab16413c14fa6075bd", + "size": "1699140" + } + }, + "cuda_nvprune": { + "name": "CUDA nvprune", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_nvprune/linux-x86_64/cuda_nvprune-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "6ffa51a5e0b2977302204b218337900948b1662e596617a5947e520ff4cf3662", + "md5": "9e0895e3a15a8654e4d5b5f4749c1445", + "size": "56364" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvprune/linux-ppc64le/cuda_nvprune-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "c8c5b05b8ddf84718c16ebd49076b7759dfac7f8e8118cd25f9b53db9f142ccf", + "md5": "54c8d5a5c66798a1f015d88490d0bc6a", + "size": "57044" + }, + "linux-sbsa": { + "relative_path": "cuda_nvprune/linux-sbsa/cuda_nvprune-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "38583e2894b3ccb9231a5396d17b0a7484662f50b22cfa3da788f9fe4b8f4e7c", + "md5": "ff47e44fa4e14bd97d1bf61b58e73c42", + "size": "48380" + }, + "windows-x86_64": { + "relative_path": "cuda_nvprune/windows-x86_64/cuda_nvprune-windows-x86_64-12.0.140-archive.zip", + "sha256": "812a98986560898885d0bf404d2c885019af7cf07c76a91198ee3e63c983eea9", + "md5": "317154c8f87e3244ebf84f5eee673f05", + "size": "145970" + }, + "linux-aarch64": { + "relative_path": "cuda_nvprune/linux-aarch64/cuda_nvprune-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "cbd65b9b9e9c6b25b4ec7537d8e318c209826244b0d448dac3a5249069b35d61", + "md5": "117e73f57dbd89f4777bedbd8a1aaf12", + "size": "48368" + } + }, + "cuda_nvrtc": { + "name": "CUDA NVRTC", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_nvrtc/linux-x86_64/cuda_nvrtc-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "90199c8586a1ee88363358c25e028b1ae301457c5f3e36120a4135b8d941a5d8", + "md5": "e060441812dab7d91c6640a8ed75d754", + "size": "30077936" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvrtc/linux-ppc64le/cuda_nvrtc-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "b6001319eb9ae636a41a1578a86999f596f6e3b68c5a2d3b9f971686dcdc7d28", + "md5": "476c0cf7b89963bb7b7be164156fa8d2", + "size": "27780348" + }, + "linux-sbsa": { + "relative_path": "cuda_nvrtc/linux-sbsa/cuda_nvrtc-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "a6af3286a30ffa69ec667886c0e0aa44df23cd32dd77807c39ff8cab1ecc3492", + "md5": "22ba03908fb5ecc1e2c5324d83e828ba", + "size": "27628256" + }, + "windows-x86_64": { + "relative_path": "cuda_nvrtc/windows-x86_64/cuda_nvrtc-windows-x86_64-12.0.140-archive.zip", + "sha256": "cd8e8c5be748ad2675040ebcf8435c6431ef6dc08e3313e537d67cc31f370c3d", + "md5": "e59638914ede3ce08335903618554b4f", + "size": "96584114" + }, + "linux-aarch64": { + "relative_path": "cuda_nvrtc/linux-aarch64/cuda_nvrtc-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "3482f78e1170b3ba5ab43b024c56d635721ca01ab9e3f691eb32544c1743eac9", + "md5": "d58028836d92c6aaac6361112e820fa8", + "size": "27623484" + } + }, + "cuda_nvtx": { + "name": "CUDA NVTX", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_nvtx/linux-x86_64/cuda_nvtx-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "de43a0f2b6e1923cf399fd45f4bb233a5d16a4e87ce2c625c8743a1c1e44473a", + "md5": "1aa900b42fe683ac2de6f80acb994bdc", + "size": "48416" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvtx/linux-ppc64le/cuda_nvtx-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "acf77f9563c403e395588dffebb38a1aa7022db6b557a3c3bfd74e5fc3afa089", + "md5": "81f24300cc240345097e59750d125bd4", + "size": "48496" + }, + "linux-sbsa": { + "relative_path": "cuda_nvtx/linux-sbsa/cuda_nvtx-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "0d3a5f2b182dead113f5593d8738761ba4893cf24ba10388d8b65fb3c4cc6e58", + "md5": "8cf63d7d607d9ea6701385f5901194d8", + "size": "48964" + }, + "windows-x86_64": { + "relative_path": "cuda_nvtx/windows-x86_64/cuda_nvtx-windows-x86_64-12.0.140-archive.zip", + "sha256": "e5a79481f7289bf7f2e4f6cf2c50f639fa4f2b3e7155c060e160f0d9ae2e2515", + "md5": "18794972b4a5648fb35de89916835097", + "size": "65732" + }, + "linux-aarch64": { + "relative_path": "cuda_nvtx/linux-aarch64/cuda_nvtx-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "cdcf8f1e0adaaddd343ed0ad4db54a951233f8584e602ec568bce853968780dc", + "md5": "7aaa8ef2a023cddb2036df0718d54645", + "size": "48880" + } + }, + "cuda_nvvp": { + "name": "CUDA NVVP", + "license": "CUDA Toolkit", + "version": "12.0.146", + "linux-x86_64": { + "relative_path": "cuda_nvvp/linux-x86_64/cuda_nvvp-linux-x86_64-12.0.146-archive.tar.xz", + "sha256": "5d067e1081ace9e3bced739ee3ee15dd17d5120e835bba84ec25f7b55b59c91a", + "md5": "c4bdf5353f06cce21a745e003d954a2c", + "size": "112429480" + }, + "linux-ppc64le": { + "relative_path": "cuda_nvvp/linux-ppc64le/cuda_nvvp-linux-ppc64le-12.0.146-archive.tar.xz", + "sha256": "c81acd1d577243434495d2da002f2bd30d6dd298f0ee46bd44ab509b000d37fd", + "md5": "6eabf361592df6c6504edea599fa3408", + "size": "117087696" + }, + "windows-x86_64": { + "relative_path": "cuda_nvvp/windows-x86_64/cuda_nvvp-windows-x86_64-12.0.146-archive.zip", + "sha256": "eece54744ed33210e0e117ad5cb68680c787546fbdff8f1fded89493ec7483b3", + "md5": "6d96dca3bc76ad0616259cde4f9b932f", + "size": "120359555" + } + }, + "cuda_opencl": { + "name": "CUDA OpenCL", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_opencl/linux-x86_64/cuda_opencl-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "100df7f9554b7e2c6139d2ac4a9d6268fe40c78a1346c65ace44f1c1a545f255", + "md5": "8de4e80fb65427242823ff40f7ffee84", + "size": "69236" + }, + "windows-x86_64": { + "relative_path": "cuda_opencl/windows-x86_64/cuda_opencl-windows-x86_64-12.0.140-archive.zip", + "sha256": "17e52184c473564c0ed9fd3e9c6be86fba2f41ae5a7526ef2d1416221029ada5", + "md5": "846e8734c5a79b4289bd677a40d3bafb", + "size": "103599" + } + }, + "cuda_profiler_api": { + "name": "CUDA Profiler API", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_profiler_api/linux-x86_64/cuda_profiler_api-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "48663707a6ea2cbf5468b4bd956c650afd5793f0a32f2f8f0775d0a731695495", + "md5": "c02d36417d57de4311d410aa50597007", + "size": "16048" + }, + "linux-ppc64le": { + "relative_path": "cuda_profiler_api/linux-ppc64le/cuda_profiler_api-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "599e7a9d9cc937fd52775545c9d234bbbd0c361632fe16ce5764edb89740d053", + "md5": "04b5e051a56a319ec3f4c96619135e95", + "size": "16048" + }, + "linux-sbsa": { + "relative_path": "cuda_profiler_api/linux-sbsa/cuda_profiler_api-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "d181eedf77a91dc4dacec561c5735c957d07f8d7fcb69fa70fe35989c1398a82", + "md5": "c6e5719d9aaf0668dae442d2d9ffd903", + "size": "16044" + }, + "windows-x86_64": { + "relative_path": "cuda_profiler_api/windows-x86_64/cuda_profiler_api-windows-x86_64-12.0.140-archive.zip", + "sha256": "303405e4184be2cee7ecfbbb3744e33288bcb82f9191f33a58961ee33b53c4f6", + "md5": "16a4627384b03b417cd134528ce6269c", + "size": "20085" + }, + "linux-aarch64": { + "relative_path": "cuda_profiler_api/linux-aarch64/cuda_profiler_api-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "047a0d78f2253b1026f4afffc3540d5e26b2315841a5e97cc7346abdf87a8359", + "md5": "a587551ecc7be7c7dd54b33caf1c4846", + "size": "16048" + } + }, + "cuda_sanitizer_api": { + "name": "CUDA Compute Sanitizer API", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "cuda_sanitizer_api/linux-x86_64/cuda_sanitizer_api-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "9de1b2862f2994c7f730928d715dab442e5de0adba8409d5eabb5cd103a3c0e0", + "md5": "76f096cf40b5343fd1e50ab17d4755d4", + "size": "8127860" + }, + "linux-ppc64le": { + "relative_path": "cuda_sanitizer_api/linux-ppc64le/cuda_sanitizer_api-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "2fd04f3345b3010f77120181ea65d0fa507389ca89680d239509e5f38c6bf522", + "md5": "9ae700f4339b16e2f1be8db4decf26a4", + "size": "7425776" + }, + "linux-sbsa": { + "relative_path": "cuda_sanitizer_api/linux-sbsa/cuda_sanitizer_api-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "fc16a5451538c5c901ba738e89743eb63d0ec6055e9ec892745bb08fc3371cfa", + "md5": "fd0ecb32481fa34a86f2f382ae6fd46f", + "size": "6006356" + }, + "windows-x86_64": { + "relative_path": "cuda_sanitizer_api/windows-x86_64/cuda_sanitizer_api-windows-x86_64-12.0.140-archive.zip", + "sha256": "51abebc3d4bb715b65e8979d1d8d209d955cc56d714d7c8d7561c1a8a7d61186", + "md5": "466ad0f4e4a5282eedcaa86fdeda52fb", + "size": "13693692" + }, + "linux-aarch64": { + "relative_path": "cuda_sanitizer_api/linux-aarch64/cuda_sanitizer_api-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "f5345690ded34f3ece4a4232480ff78d646beecc175438c4fe2d5986bef9157a", + "md5": "c38c53652b569bad8c70dfd76f47623f", + "size": "3447724" + } + }, + "fabricmanager": { + "name": "NVIDIA Fabric Manager", + "license": "NVIDIA Driver", + "version": "525.85.12", + "linux-x86_64": { + "relative_path": "fabricmanager/linux-x86_64/fabricmanager-linux-x86_64-525.85.12-archive.tar.xz", + "sha256": "01e6e1a873347c91489860509e6332d5224eb48704dd3160335601083ffd0c74", + "md5": "9fb80a825581049edc6900212677a10d", + "size": "1629480" + }, + "linux-sbsa": { + "relative_path": "fabricmanager/linux-sbsa/fabricmanager-linux-sbsa-525.85.12-archive.tar.xz", + "sha256": "ba615237bda8b4e939d2cd0967b4c76a74f18266a410414069368b04a3a25d74", + "md5": "4d5ff6479fe477e6a7d15a1bd7752ee4", + "size": "1508600" + } + }, + "libcublas": { + "name": "CUDA cuBLAS", + "license": "CUDA Toolkit", + "version": "12.0.2.224", + "linux-x86_64": { + "relative_path": "libcublas/linux-x86_64/libcublas-linux-x86_64-12.0.2.224-archive.tar.xz", + "sha256": "67f9d7f639762685a93a8d3a12b8625084749fade6a887323fbb53bf6fefc81b", + "md5": "935441a812035b68de6e8ac1c5c5b57b", + "size": "459134512" + }, + "linux-ppc64le": { + "relative_path": "libcublas/linux-ppc64le/libcublas-linux-ppc64le-12.0.2.224-archive.tar.xz", + "sha256": "54a6b189a76a924b9e34e76124d7a0564f554c5106b9641d9101c9ea55b9b57b", + "md5": "29b5588ea8b9ff28e75d7853490fed72", + "size": "382119004" + }, + "linux-sbsa": { + "relative_path": "libcublas/linux-sbsa/libcublas-linux-sbsa-12.0.2.224-archive.tar.xz", + "sha256": "024561f702d72795f69a8c2a481da8961c85b954c43a3cb9ad66dd6f01ffbf65", + "md5": "3d88d77dbcb3738882f28c6d62aa992b", + "size": "456807572" + }, + "windows-x86_64": { + "relative_path": "libcublas/windows-x86_64/libcublas-windows-x86_64-12.0.2.224-archive.zip", + "sha256": "d7094c6ac5a9dfa27bfecca7b0afea8293f0828e1bce895c9b87740674bbc75f", + "md5": "c6661bab87b9e8f75cd6d1012ea4ec94", + "size": "390167374" + }, + "linux-aarch64": { + "relative_path": "libcublas/linux-aarch64/libcublas-linux-aarch64-12.0.2.224-archive.tar.xz", + "sha256": "779817bf118e62c6a1b80037b045128f389b80b05bde774b4e7ec9b2b03e86c7", + "md5": "0b64240177205e6227f12b822c2e42f7", + "size": "328770940" + } + }, + "libcudla": { + "name": "cuDLA", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-aarch64": { + "relative_path": "libcudla/linux-aarch64/libcudla-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "7cebd3bebc36e72428132b82363afe3da4430c0f0d67244a2388343c4b134fbb", + "md5": "cc0be7e33d4c99f0993da0657cecb33e", + "size": "38488" + } + }, + "libcufft": { + "name": "CUDA cuFFT", + "license": "CUDA Toolkit", + "version": "11.0.1.95", + "linux-x86_64": { + "relative_path": "libcufft/linux-x86_64/libcufft-linux-x86_64-11.0.1.95-archive.tar.xz", + "sha256": "0052bb2dfbb2d5bbe11c986b4c6f20cd2fb2ec006336829c70976ce6b9cb3f88", + "md5": "58d2016dbacfffb93030f952e3f86dad", + "size": "121897888" + }, + "linux-ppc64le": { + "relative_path": "libcufft/linux-ppc64le/libcufft-linux-ppc64le-11.0.1.95-archive.tar.xz", + "sha256": "ca5d8102a3727494ff09c85245d978d034cb6e6f271060f9a342e1bb40c69a5b", + "md5": "2e9b9a83a2fcc0a311c3c34c71b5e86d", + "size": "122079000" + }, + "linux-sbsa": { + "relative_path": "libcufft/linux-sbsa/libcufft-linux-sbsa-11.0.1.95-archive.tar.xz", + "sha256": "2df31984726527989418ffbec944f2c0fcc59707d5c84dd53c04a35c5b93dc95", + "md5": "c4d046384b9cd532b0bfdc67d7ceb643", + "size": "121291816" + }, + "windows-x86_64": { + "relative_path": "libcufft/windows-x86_64/libcufft-windows-x86_64-11.0.1.95-archive.zip", + "sha256": "3e284518643b7788c38c0f67a9a34f6310b4558a9e72d71d1e7d95a80d947038", + "md5": "bf34ccc53e8f01c4294b83cd17ed13b0", + "size": "87874793" + }, + "linux-aarch64": { + "relative_path": "libcufft/linux-aarch64/libcufft-linux-aarch64-11.0.1.95-archive.tar.xz", + "sha256": "c2ded0d0cf2d2686d31da81488d6e0d56c5d97f8509a3de9a7f41a6636d916de", + "md5": "b80ed442ecafa22400026f42d272f3fd", + "size": "121616748" + } + }, + "libcufile": { + "name": "CUDA cuFile", + "license": "CUDA Toolkit", + "version": "1.5.1.14", + "linux-x86_64": { + "relative_path": "libcufile/linux-x86_64/libcufile-linux-x86_64-1.5.1.14-archive.tar.xz", + "sha256": "5b4a1d07c2edab0a41e538032e986de21d0b463a676c6da8db1874c1be222c98", + "md5": "a81f90496568078342e7c8308268b5ee", + "size": "40936936" + }, + "linux-aarch64": { + "relative_path": "libcufile/linux-aarch64/libcufile-linux-aarch64-1.5.1.14-archive.tar.xz", + "sha256": "5d92d5ce85c34fe543817061af37f5776e065322cadbc8fcc6371609069b5ed9", + "md5": "fe7ac7da49dfa00274ea937d5325b677", + "size": "40599536" + } + }, + "libcurand": { + "name": "CUDA cuRAND", + "license": "CUDA Toolkit", + "version": "10.3.1.124", + "linux-x86_64": { + "relative_path": "libcurand/linux-x86_64/libcurand-linux-x86_64-10.3.1.124-archive.tar.xz", + "sha256": "0a890a9dd99c199973d909bd7a4a3614f236810b7b2b713417d1ceeb00cc2c51", + "md5": "bc25b5d48ad0946c57bf2be0710970b9", + "size": "81951488" + }, + "linux-ppc64le": { + "relative_path": "libcurand/linux-ppc64le/libcurand-linux-ppc64le-10.3.1.124-archive.tar.xz", + "sha256": "14a828fca560d9656c416f5b2a1db492e9d4b7910756f8da64d6e18fa145df4a", + "md5": "12c06d06351d6423f225a54ac033b374", + "size": "81985552" + }, + "linux-sbsa": { + "relative_path": "libcurand/linux-sbsa/libcurand-linux-sbsa-10.3.1.124-archive.tar.xz", + "sha256": "d73bfb1fee2cef2d5e72a71777ebe7a21a3002db95fb1f367c573189c3dd0253", + "md5": "f9c1095bcac07a6600f07c54748f031a", + "size": "81937240" + }, + "windows-x86_64": { + "relative_path": "libcurand/windows-x86_64/libcurand-windows-x86_64-10.3.1.124-archive.zip", + "sha256": "e214f386e7313371e1a70928f0cefe315093ee9ecceb48b784fcb8d8ce92bbb9", + "md5": "c2e74f8cb80a9523b291f219576e914d", + "size": "55278625" + }, + "linux-aarch64": { + "relative_path": "libcurand/linux-aarch64/libcurand-linux-aarch64-10.3.1.124-archive.tar.xz", + "sha256": "4d9b6ef38bd646f9a9219e605b6dc2a33ae2b5a15458b57b297f27938eee9a79", + "md5": "a0b62f77a0a460be6e70be4324f9cfc8", + "size": "82232176" + } + }, + "libcusolver": { + "name": "CUDA cuSOLVER", + "license": "CUDA Toolkit", + "version": "11.4.3.1", + "linux-x86_64": { + "relative_path": "libcusolver/linux-x86_64/libcusolver-linux-x86_64-11.4.3.1-archive.tar.xz", + "sha256": "7e457ec82af1819d7ceed3bdc68dd31819a51f9562836e24a7a9baecd71af08f", + "md5": "7ad5190e540fb9135d658753c45b86e8", + "size": "82229860" + }, + "linux-ppc64le": { + "relative_path": "libcusolver/linux-ppc64le/libcusolver-linux-ppc64le-11.4.3.1-archive.tar.xz", + "sha256": "1a413618bc7c6cc7c720d149132a8af980cb9fcccc1ddc61d7987b8512432f01", + "md5": "c13e69f550e16d08021bcd759cbdabe5", + "size": "82525004" + }, + "linux-sbsa": { + "relative_path": "libcusolver/linux-sbsa/libcusolver-linux-sbsa-11.4.3.1-archive.tar.xz", + "sha256": "f707901e02374dd1bbfa5ac8901da799cca5fdc18c088cd4d8a8d7ba1b91e02e", + "md5": "1156776fece680992de827278a708bcc", + "size": "81414176" + }, + "windows-x86_64": { + "relative_path": "libcusolver/windows-x86_64/libcusolver-windows-x86_64-11.4.3.1-archive.zip", + "sha256": "f4fd50ca109b8633409c26806dac80f2cb0cf9e8d715158c1addee1403ce9792", + "md5": "b39d8229fc5fe70ab055b7bb8eb70531", + "size": "122536913" + }, + "linux-aarch64": { + "relative_path": "libcusolver/linux-aarch64/libcusolver-linux-aarch64-11.4.3.1-archive.tar.xz", + "sha256": "9ee052656581ea67b37fcbe0430f680530351bfa77a2fd3575f5afc262a6cf26", + "md5": "5244e0816734c75637854d54e1bfb1fa", + "size": "75620036" + } + }, + "libcusparse": { + "name": "CUDA cuSPARSE", + "license": "CUDA Toolkit", + "version": "12.0.1.140", + "linux-x86_64": { + "relative_path": "libcusparse/linux-x86_64/libcusparse-linux-x86_64-12.0.1.140-archive.tar.xz", + "sha256": "e6042e6e8c9f075e6f23a172473a384858dd8d0a1e97950763f96eec329e168b", + "md5": "cabeacf931dadcb975d77e6284b4cc84", + "size": "204690448" + }, + "linux-ppc64le": { + "relative_path": "libcusparse/linux-ppc64le/libcusparse-linux-ppc64le-12.0.1.140-archive.tar.xz", + "sha256": "c5242ffb1297af6829b99351c95b17d340358309e15920100ff1626bfa2beb1a", + "md5": "ca44fdb9a271e3518efe020f39ede832", + "size": "204824704" + }, + "linux-sbsa": { + "relative_path": "libcusparse/linux-sbsa/libcusparse-linux-sbsa-12.0.1.140-archive.tar.xz", + "sha256": "f0df2c3d36b4529d84f8d447c7640a988f4c52db965b4582abfc282c90173937", + "md5": "bbe10d53442afd198854a7baa19983d0", + "size": "204323552" + }, + "windows-x86_64": { + "relative_path": "libcusparse/windows-x86_64/libcusparse-windows-x86_64-12.0.1.140-archive.zip", + "sha256": "0721ffa90bcf2d25b46245f76b30a8d948a3a05bca8f63ca0a4380d76ab37233", + "md5": "4078766b5b56d2788c4953d298b03f52", + "size": "186154754" + }, + "linux-aarch64": { + "relative_path": "libcusparse/linux-aarch64/libcusparse-linux-aarch64-12.0.1.140-archive.tar.xz", + "sha256": "878b02e09d73677365fc9195f282164c80f004921ae33b84c804333c1a28ab9d", + "md5": "1b5a38918444442d6f96347f1b59a03f", + "size": "197912292" + } + }, + "libnpp": { + "name": "CUDA NPP", + "license": "CUDA Toolkit", + "version": "12.0.1.104", + "linux-x86_64": { + "relative_path": "libnpp/linux-x86_64/libnpp-linux-x86_64-12.0.1.104-archive.tar.xz", + "sha256": "8ec3a0b1f4f465f8602a7113b8109fad19433ff03cb4d8e5018c30af29000776", + "md5": "39084873a037e853f828b95a1a3a59ed", + "size": "184050196" + }, + "linux-ppc64le": { + "relative_path": "libnpp/linux-ppc64le/libnpp-linux-ppc64le-12.0.1.104-archive.tar.xz", + "sha256": "7a98948ae3de878578acf44a2e164fe8885e51d15001a62b21b58c900e07c5bc", + "md5": "306ee2637f755bd64a7ce83309929127", + "size": "184321688" + }, + "linux-sbsa": { + "relative_path": "libnpp/linux-sbsa/libnpp-linux-sbsa-12.0.1.104-archive.tar.xz", + "sha256": "a34350a0ba18d6d11627ffbff407d356b9505935455bdb5f299b6c3ec5e30dae", + "md5": "9c34f25849843d20cce021a136f6858b", + "size": "183391228" + }, + "windows-x86_64": { + "relative_path": "libnpp/windows-x86_64/libnpp-windows-x86_64-12.0.1.104-archive.zip", + "sha256": "59a51d922eb358097a3e22d1293843d2f3c2004979ac687469c6846b01b4375f", + "md5": "058232598b0d0ec8548d27264819b9e3", + "size": "152997938" + }, + "linux-aarch64": { + "relative_path": "libnpp/linux-aarch64/libnpp-linux-aarch64-12.0.1.104-archive.tar.xz", + "sha256": "db02a7461a8921167b86f2b8702fbea545180840895740f6ff006d7578d22734", + "md5": "403dde0ba97503e96ae0e22e513b9664", + "size": "177965376" + } + }, + "libnvidia_nscq": { + "name": "NVIDIA NSCQ API", + "license": "NVIDIA Driver", + "version": "525.85.12", + "linux-x86_64": { + "relative_path": "libnvidia_nscq/linux-x86_64/libnvidia_nscq-linux-x86_64-525.85.12-archive.tar.xz", + "sha256": "3539eb9651970ea4c1dffa9b5c884c2c421649fff52b691fcc42220f7e24b7ec", + "md5": "4ad512a2936fbe583c84aa4c9e06305e", + "size": "561656" + }, + "linux-sbsa": { + "relative_path": "libnvidia_nscq/linux-sbsa/libnvidia_nscq-linux-sbsa-525.85.12-archive.tar.xz", + "sha256": "d97f6f9f6c038218ff1bedab1d96d5c94fa48bc2fe2bb2de7d5b221d2f629a31", + "md5": "85a6b8d66d05b202752a2e5350515e87", + "size": "515764" + } + }, + "libnvjitlink": { + "name": "NVIDIA compiler library for JIT LTO functionality", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "libnvjitlink/linux-x86_64/libnvjitlink-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "6bbfae3c369ad5b7807e9697000cb60ecc84e4a21af9376b9f42ed56f8ce9c7a", + "md5": "b35eecc3329a2bee14681d869e7fe47f", + "size": "25648248" + }, + "linux-ppc64le": { + "relative_path": "libnvjitlink/linux-ppc64le/libnvjitlink-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "5e2852073355e56d8cb8b13471dd64b2192ef65d86f4729e79196316d09e9190", + "md5": "674254a8c7618392655edf25740ef555", + "size": "23619516" + }, + "linux-sbsa": { + "relative_path": "libnvjitlink/linux-sbsa/libnvjitlink-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "7b45ef9787670e2676257e769deb60c12467a4751806ed4da49ff6c3826e8939", + "md5": "1271ae15c7378d5e8e890b5799aa1aad", + "size": "23449160" + }, + "windows-x86_64": { + "relative_path": "libnvjitlink/windows-x86_64/libnvjitlink-windows-x86_64-12.0.140-archive.zip", + "sha256": "88c4d3ca3fe2275b4ef0212034a67748465af2e9e193560c63c4c251f618caf9", + "md5": "998fcaa70cb98b1667e67f20bc235ace", + "size": "86246489" + }, + "linux-aarch64": { + "relative_path": "libnvjitlink/linux-aarch64/libnvjitlink-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "65fd365da945c56562057ab2992582783bfa69f411a69f8bc51635349737821b", + "md5": "59b5856a104a98ae441d7a70f7aaeb94", + "size": "23450460" + } + }, + "libnvjpeg": { + "name": "CUDA nvJPEG", + "license": "CUDA Toolkit", + "version": "12.0.1.102", + "linux-x86_64": { + "relative_path": "libnvjpeg/linux-x86_64/libnvjpeg-linux-x86_64-12.0.1.102-archive.tar.xz", + "sha256": "b32bcd888bbbbb33f5005ac0e6a11eedaa5b959ecf9ee3249efc171f51a113ec", + "md5": "e82d14cff3fbb8b3cb10a51741ecf477", + "size": "1969992" + }, + "linux-ppc64le": { + "relative_path": "libnvjpeg/linux-ppc64le/libnvjpeg-linux-ppc64le-12.0.1.102-archive.tar.xz", + "sha256": "89202c70183641b619dfef9735a2733c84ff8253c0285f8285c5e18653b0a990", + "md5": "0a05211b4466527f6c711e4ca9f732cc", + "size": "1980928" + }, + "linux-sbsa": { + "relative_path": "libnvjpeg/linux-sbsa/libnvjpeg-linux-sbsa-12.0.1.102-archive.tar.xz", + "sha256": "7ef6721a63aed4cd352c0099e68dd9e4da9d46bfefa51e4fbc2502c25e65f9cc", + "md5": "07f679e66d7f796bcda1e54e074c48ef", + "size": "1785664" + }, + "windows-x86_64": { + "relative_path": "libnvjpeg/windows-x86_64/libnvjpeg-windows-x86_64-12.0.1.102-archive.zip", + "sha256": "c79833f8f39c0dfa113418f277d97eb251fc21ba1a2513270ada080e367c2a5e", + "md5": "1f7bc966ef37116f8e229c29a1fa38a4", + "size": "1944326" + } + }, + "libnvvm_samples": { + "name": "NVVM library samples", + "license": "CUDA Toolkit", + "version": "12.0.140", + "linux-x86_64": { + "relative_path": "libnvvm_samples/linux-x86_64/libnvvm_samples-linux-x86_64-12.0.140-archive.tar.xz", + "sha256": "ce3929b34e8e384c723812d4a9c0f11548ba0babcb48d60055c3df60fe188715", + "md5": "538f8a1603d7b61b5b05199cb963f059", + "size": "28996" + }, + "linux-ppc64le": { + "relative_path": "libnvvm_samples/linux-ppc64le/libnvvm_samples-linux-ppc64le-12.0.140-archive.tar.xz", + "sha256": "4df51724b43fcaa04d6c3ce5dc399a8b769ae467dbaacc4d7a3bd9c20d3ec4c8", + "md5": "1e1afdcaf6f5842dacd4bdf21e64675d", + "size": "29012" + }, + "linux-sbsa": { + "relative_path": "libnvvm_samples/linux-sbsa/libnvvm_samples-linux-sbsa-12.0.140-archive.tar.xz", + "sha256": "a2335d32398255a2d320c02190e765fb24152390cebae5c769bf36cad68b8012", + "md5": "c50e4529ebe1c4c5c744079f5ea78e24", + "size": "29000" + }, + "windows-x86_64": { + "relative_path": "libnvvm_samples/windows-x86_64/libnvvm_samples-windows-x86_64-12.0.140-archive.zip", + "sha256": "333f4061c49e4b16e2c27e8d98e4d15c6022d054d9961abb735f769362bc1598", + "md5": "00c4ba15a0e049e1cf32842c010849da", + "size": "44435" + }, + "linux-aarch64": { + "relative_path": "libnvvm_samples/linux-aarch64/libnvvm_samples-linux-aarch64-12.0.140-archive.tar.xz", + "sha256": "58fb261c21b65e621435c3aa84e74ca226a83b8aef10aa819597ee90dc156729", + "md5": "6173ccfadd99fab98ceafa1a7f783dfb", + "size": "29016" + } + }, + "nsight_compute": { + "name": "Nsight Compute", + "license": "NVIDIA SLA", + "version": "2022.4.1.6", + "linux-x86_64": { + "relative_path": "nsight_compute/linux-x86_64/nsight_compute-linux-x86_64-2022.4.1.6-archive.tar.xz", + "sha256": "956e33a364c05c241119ad516e3f60bedafa3153e3e9c0767d339e991cb7834e", + "md5": "965db56d5e997049488d3d9d4330ac90", + "size": "704959776" + }, + "linux-ppc64le": { + "relative_path": "nsight_compute/linux-ppc64le/nsight_compute-linux-ppc64le-2022.4.1.6-archive.tar.xz", + "sha256": "ee5573bacb6b9f62a4d72cfaa206e932b47104a92e5ecb5b66f477f2b246aef3", + "md5": "3e6d3d24244026f434aec56561f22511", + "size": "181949792" + }, + "linux-sbsa": { + "relative_path": "nsight_compute/linux-sbsa/nsight_compute-linux-sbsa-2022.4.1.6-archive.tar.xz", + "sha256": "ffe9a0ab066d507b6842eadb6742cf96809d040b94cc8290b5d385622b0e1a44", + "md5": "ffbcb1f275e8d2015205334f46661e08", + "size": "341205496" + }, + "windows-x86_64": { + "relative_path": "nsight_compute/windows-x86_64/nsight_compute-windows-x86_64-2022.4.1.6-archive.zip", + "sha256": "28c5bd4fd1feb9bcc8d172c7de9892443d0b58ff805780d7d73a69e641f4e542", + "md5": "0592d427662087dc120bc5c1a50b24fb", + "size": "634500519" + }, + "linux-aarch64": { + "relative_path": "nsight_compute/linux-aarch64/nsight_compute-linux-aarch64-2022.4.1.6-archive.tar.xz", + "sha256": "aa2c3b2ed5876ae456f2a18b2c7ad1ef7a9513045fd5265080d499db6a3c7c98", + "md5": "5ee36f325cffd6668b30ecbad5916ac3", + "size": "704427344" + } + }, + "nsight_systems": { + "name": "Nsight Systems", + "license": "NVIDIA SLA", + "version": "2022.4.2.50", + "linux-x86_64": { + "relative_path": "nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2022.4.2.50-archive.tar.xz", + "sha256": "3bc4e45b902769e3863f2666d494702646f94c45879a4bcfbc95d75ca752e53a", + "md5": "8222d8bb9c59ce9c6533ba00dd6990b8", + "size": "197298716" + }, + "linux-ppc64le": { + "relative_path": "nsight_systems/linux-ppc64le/nsight_systems-linux-ppc64le-2022.4.2.50-archive.tar.xz", + "sha256": "b5697fbc0ca527bbcfe9843618726b902c37505e74b87bfa29a7f7c5fe8a2dff", + "md5": "1b25cc578badf50022f88ef910fdb4ad", + "size": "53269504" + }, + "linux-sbsa": { + "relative_path": "nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2022.4.2.50-archive.tar.xz", + "sha256": "4a4fa9fb31e4d4761c0f37b5cf8f40bb8410896fea5339c089ffe9424284a891", + "md5": "048181e9705e7118e0d18c99fcdb9d93", + "size": "189113176" + }, + "windows-x86_64": { + "relative_path": "nsight_systems/windows-x86_64/nsight_systems-windows-x86_64-2022.4.2.50-archive.zip", + "sha256": "b3a6e73159059330c69c6e31cef9a01b30516af0d6ce2e00b2335fef16a9c7ba", + "md5": "a6521a96e888f93f575e65dbe711c183", + "size": "729036951" + } + }, + "nsight_vse": { + "name": "Nsight Visual Studio Edition (VSE)", + "license": "NVIDIA SLA", + "version": "2022.4.1.23005", + "windows-x86_64": { + "relative_path": "nsight_vse/windows-x86_64/nsight_vse-windows-x86_64-2022.4.1.23005-archive.zip", + "sha256": "4097057929dff3f868bc564ba2b6892118b902c8629acc2433e7ae0a7adffb92", + "md5": "fe5e9856cfa1a77a1977dbebea40d7b3", + "size": "536311869" + } + }, + "nvidia_driver": { + "name": "NVIDIA Linux Driver", + "license": "NVIDIA Driver", + "version": "525.85.12", + "linux-x86_64": { + "relative_path": "nvidia_driver/linux-x86_64/nvidia_driver-linux-x86_64-525.85.12-archive.tar.xz", + "sha256": "65583fc002a79e0ea71fd8dc2aaf47a605f49a9d037becf1591f698c392d7f1d", + "md5": "7df3732c5e635b3f9da5cbc5fde57069", + "size": "418377088" + }, + "linux-ppc64le": { + "relative_path": "nvidia_driver/linux-ppc64le/nvidia_driver-linux-ppc64le-525.85.12-archive.tar.xz", + "sha256": "043fe51133095d886e615d9517cfab5314768581c203497dfd7f947d153b3be0", + "md5": "26b7254d5cf55d04818defa011269247", + "size": "98002240" + }, + "linux-sbsa": { + "relative_path": "nvidia_driver/linux-sbsa/nvidia_driver-linux-sbsa-525.85.12-archive.tar.xz", + "sha256": "9367b72119fe1fd62bafe80107a576a0c8aafc0b3b53f4f35dd9cf0c5ff5b201", + "md5": "328c5d3992ba97a9a7355174ac624013", + "size": "269356144" + } + }, + "nvidia_fs": { + "name": "NVIDIA filesystem", + "license": "CUDA Toolkit", + "version": "2.14.14", + "linux-x86_64": { + "relative_path": "nvidia_fs/linux-x86_64/nvidia_fs-linux-x86_64-2.14.14-archive.tar.xz", + "sha256": "e60b3ee35d1e18350fe3efa5de126db241d03cf31bf4ba7cde7452496951b6d0", + "md5": "c8f5b97b446c7c5bba00133567399ed4", + "size": "57120" + }, + "linux-aarch64": { + "relative_path": "nvidia_fs/linux-aarch64/nvidia_fs-linux-aarch64-2.14.14-archive.tar.xz", + "sha256": "04277985c736a905d7de7fcbc3be28181c8dcbea4860a6a7c41568a879305bf4", + "md5": "cf75db54f806ccde883205de966b768d", + "size": "57132" + } + }, + "visual_studio_integration": { + "name": "CUDA Visual Studio Integration", + "license": "CUDA Toolkit", + "version": "12.0.140", + "windows-x86_64": { + "relative_path": "visual_studio_integration/windows-x86_64/visual_studio_integration-windows-x86_64-12.0.140-archive.zip", + "sha256": "7e767ba60251d7d4c524b5874121ddc3a5aeccb26cc594fb2e5506dc56131f66", + "md5": "8032bbb001599e6758fb71ec07cddb11", + "size": "545134" + } + } +} + diff --git a/pkgs/development/compilers/cudatoolkit/versions.toml b/pkgs/development/compilers/cudatoolkit/versions.toml index 8f1a3d625d40..7e9fcae3271a 100644 --- a/pkgs/development/compilers/cudatoolkit/versions.toml +++ b/pkgs/development/compilers/cudatoolkit/versions.toml @@ -73,9 +73,9 @@ sha256 = "sha256-kiPErzrr5Ke77Zq9mxY7A6GzS4VfvCtKDRtwasCaWhY=" gcc = "gcc11" ["12.0"] -version = "12.0.0" -url = "https://developer.download.nvidia.com/compute/cuda/12.0.0/local_installers/cuda_12.0.0_525.60.13_linux.run" -sha256 = "sha256-kF6blRaQCDn7dgZHGdt1JDnzi4y3MLSTNdi9U93605I=" +version = "12.0.1" +url = "https://developer.download.nvidia.com/compute/cuda/12.0.1/local_installers/cuda_12.0.1_525.85.12_linux.run" +sha256 = "sha256-GyBaBicvFGP0dydv2rkD8/ZmkXwGjlIHOAAeacehh1s=" # CUDA 12 is compatible with gcc12, but nixpkgs default gcc is still on gcc11 as # of 2023-01-08. See https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#system-requirements. # This should be upgraded to gcc12 once nixpkgs default gcc is upgraded. Other diff --git a/pkgs/test/cuda/cuda-samples/extension.nix b/pkgs/test/cuda/cuda-samples/extension.nix index b598f0202f9d..05861ee5e0eb 100644 --- a/pkgs/test/cuda/cuda-samples/extension.nix +++ b/pkgs/test/cuda/cuda-samples/extension.nix @@ -13,6 +13,7 @@ final: prev: let "11.6" = "sha256-AsLNmAplfuQbXg9zt09tXAuFJ524EtTYsQuUlV1tPkE="; "11.7" = throw "The tag 11.7 of cuda-samples does not exist"; "11.8" = "sha256-7+1P8+wqTKUGbCUBXGMDO9PkxYr2+PLDx9W2hXtXbuc="; + "12.0" = "sha256-Lj2kbdVFrJo5xPYPMiE4BS7Z8gpU5JLKXVJhZABUe/g="; }.${prev.cudaVersion}; in { From d0c43b82f91b83aa4e294e4788916b2a38007e64 Mon Sep 17 00:00:00 2001 From: Zhong Jianxin Date: Wed, 22 Feb 2023 16:38:06 +0800 Subject: [PATCH 168/178] helmfile: Fix version string --- pkgs/applications/networking/cluster/helmfile/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/helmfile/default.nix b/pkgs/applications/networking/cluster/helmfile/default.nix index fba5d36a4256..7ae583727550 100644 --- a/pkgs/applications/networking/cluster/helmfile/default.nix +++ b/pkgs/applications/networking/cluster/helmfile/default.nix @@ -17,7 +17,7 @@ buildGoModule rec { subPackages = [ "." ]; - ldflags = [ "-s" "-w" "-X github.com/helmfile/helmfile/pkg/app/version.Version=${version}" ]; + ldflags = [ "-s" "-w" "-X go.szostok.io/version.version=v${version}" ]; nativeBuildInputs = [ installShellFiles ]; From 002222043df81187fa5a4629f6a821e98bf6c057 Mon Sep 17 00:00:00 2001 From: Alexis Hildebrandt Date: Wed, 22 Feb 2023 17:15:59 +0100 Subject: [PATCH 169/178] musikcube: Fix build on macOS --- pkgs/applications/audio/musikcube/default.nix | 8 +++++--- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/musikcube/default.nix b/pkgs/applications/audio/musikcube/default.nix index a8754cc93154..c9e1bed1db25 100644 --- a/pkgs/applications/audio/musikcube/default.nix +++ b/pkgs/applications/audio/musikcube/default.nix @@ -19,7 +19,7 @@ , taglib # Linux Dependencies , alsa-lib -, pipewireSupport ? true, pipewire +, pipewireSupport ? !stdenv.hostPlatform.isDarwin, pipewire , pulseaudio , sndioSupport ? true, sndio , systemd @@ -27,7 +27,7 @@ # Darwin Dependencies , Cocoa , SystemConfiguration -, coreaudioSupport ? stdenv.hostPlatform.isDarwin +, coreaudioSupport ? stdenv.hostPlatform.isDarwin, CoreAudio }: stdenv.mkDerivation rec { @@ -67,7 +67,9 @@ stdenv.mkDerivation rec { ] ++ lib.optionals stdenv.isLinux [ alsa-lib pulseaudio ] ++ lib.optionals stdenv.isDarwin [ - Cocoa coreaudioSupport SystemConfiguration + Cocoa SystemConfiguration + ] ++ lib.optionals coreaudioSupport [ + CoreAudio ] ++ lib.optional sndioSupport [ sndio ] ++ lib.optional pipewireSupport [ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6dd897ccdd49..24b2cdd29545 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -30276,7 +30276,7 @@ with pkgs; meerk40t-camera = callPackage ../applications/misc/meerk40t/camera.nix { }; musikcube = callPackage ../applications/audio/musikcube { - inherit (darwin.apple_sdk.frameworks) Cocoa SystemConfiguration; + inherit (darwin.apple_sdk.frameworks) Cocoa CoreAudio SystemConfiguration; }; libmt32emu = callPackage ../applications/audio/munt/libmt32emu.nix { }; From df9930290b9a2093d8b031f13167e9a3cad5ab2e Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 13 Feb 2023 10:51:43 +0000 Subject: [PATCH 170/178] python3.pkgs.cmsis-pack-manager: 0.4.0 -> 0.5.2 Upstream has switched from milksnake to maturin, and dropped the mock test dependency. Adds Python 3.11 support. --- .../cmsis-pack-manager/Cargo.lock | 2047 ----------------- .../cmsis-pack-manager/default.nix | 72 +- pkgs/top-level/python-packages.nix | 4 +- 3 files changed, 27 insertions(+), 2096 deletions(-) delete mode 100644 pkgs/development/python-modules/cmsis-pack-manager/Cargo.lock diff --git a/pkgs/development/python-modules/cmsis-pack-manager/Cargo.lock b/pkgs/development/python-modules/cmsis-pack-manager/Cargo.lock deleted file mode 100644 index 2d6cb8fd9934..000000000000 --- a/pkgs/development/python-modules/cmsis-pack-manager/Cargo.lock +++ /dev/null @@ -1,2047 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 3 - -[[package]] -name = "addr2line" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b" -dependencies = [ - "gimli", -] - -[[package]] -name = "adler" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" - -[[package]] -name = "ansi_term" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2" -dependencies = [ - "winapi 0.3.9", -] - -[[package]] -name = "app_dirs" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d" -dependencies = [ - "ole32-sys", - "shell32-sys", - "winapi 0.2.8", - "xdg", -] - -[[package]] -name = "atty" -version = "0.2.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" -dependencies = [ - "hermit-abi", - "libc", - "winapi 0.3.9", -] - -[[package]] -name = "autocfg" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0dde43e75fd43e8a1bf86103336bc699aa8d17ad1be60c76c0bdfd4828e19b78" -dependencies = [ - "autocfg 1.1.0", -] - -[[package]] -name = "autocfg" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" - -[[package]] -name = "backtrace" -version = "0.3.66" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" -dependencies = [ - "addr2line", - "cc", - "cfg-if 1.0.0", - "libc", - "miniz_oxide", - "object", - "rustc-demangle", -] - -[[package]] -name = "base-x" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" - -[[package]] -name = "base64" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" -dependencies = [ - "byteorder", -] - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bumpalo" -version = "3.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3" - -[[package]] -name = "byteorder" -version = "1.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" - -[[package]] -name = "bytes" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" -dependencies = [ - "byteorder", - "either", - "iovec", -] - -[[package]] -name = "cc" -version = "1.0.73" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11" - -[[package]] -name = "cfg-if" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "chrono" -version = "0.4.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" -dependencies = [ - "libc", - "num-integer", - "num-traits", - "time 0.1.44", - "winapi 0.3.9", -] - -[[package]] -name = "clap" -version = "2.34.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c" -dependencies = [ - "ansi_term", - "atty", - "bitflags", - "strsim", - "textwrap", - "unicode-width", - "vec_map", -] - -[[package]] -name = "cloudabi" -version = "0.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -dependencies = [ - "bitflags", -] - -[[package]] -name = "cmsis-cffi" -version = "0.3.0" -dependencies = [ - "cmsis-pack", - "ctor", - "failure", - "log", - "simplelog", -] - -[[package]] -name = "cmsis-cli" -version = "0.3.0" -dependencies = [ - "app_dirs", - "clap", - "cmsis-pack", - "failure", - "log", - "pbr", - "simplelog", -] - -[[package]] -name = "cmsis-pack" -version = "0.3.0" -dependencies = [ - "failure", - "futures", - "log", - "minidom", - "quick-xml", - "reqwest", - "rustc-demangle", - "serde", - "serde_derive", - "serde_json", - "time 0.2.27", - "tokio-core", -] - -[[package]] -name = "const_fn" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" - -[[package]] -name = "cookie" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "888604f00b3db336d2af898ec3c1d5d0ddf5e6d462220f2ededc33a87ac4bbd5" -dependencies = [ - "time 0.1.44", - "url 1.7.2", -] - -[[package]] -name = "cookie_store" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46750b3f362965f197996c4448e4a0935e791bf7d6631bfce9ee0af3d24c919c" -dependencies = [ - "cookie", - "failure", - "idna 0.1.5", - "log", - "publicsuffix", - "serde", - "serde_json", - "time 0.1.44", - "try_from", - "url 1.7.2", -] - -[[package]] -name = "crc32fast" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" -dependencies = [ - "cfg-if 1.0.0", -] - -[[package]] -name = "crossbeam-channel" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" -dependencies = [ - "cfg-if 1.0.0", - "crossbeam-utils 0.8.11", -] - -[[package]] -name = "crossbeam-deque" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20ff29ded3204c5106278a81a38f4b482636ed4fa1e6cfbeef193291beb29ed" -dependencies = [ - "crossbeam-epoch", - "crossbeam-utils 0.7.2", - "maybe-uninit", -] - -[[package]] -name = "crossbeam-epoch" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" -dependencies = [ - "autocfg 1.1.0", - "cfg-if 0.1.10", - "crossbeam-utils 0.7.2", - "lazy_static", - "maybe-uninit", - "memoffset", - "scopeguard", -] - -[[package]] -name = "crossbeam-queue" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570" -dependencies = [ - "cfg-if 0.1.10", - "crossbeam-utils 0.7.2", - "maybe-uninit", -] - -[[package]] -name = "crossbeam-utils" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" -dependencies = [ - "autocfg 1.1.0", - "cfg-if 0.1.10", - "lazy_static", -] - -[[package]] -name = "crossbeam-utils" -version = "0.8.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc" -dependencies = [ - "cfg-if 1.0.0", - "once_cell", -] - -[[package]] -name = "ct-logs" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d3686f5fa27dbc1d76c751300376e167c5a43387f44bb451fd1c24776e49113" -dependencies = [ - "sct", -] - -[[package]] -name = "ctor" -version = "0.1.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f877be4f7c9f246b183111634f75baa039715e3f46ce860677d3b19a69fb229c" -dependencies = [ - "quote", - "syn", -] - -[[package]] -name = "dirs" -version = "4.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" -dependencies = [ - "dirs-sys", -] - -[[package]] -name = "dirs-sys" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" -dependencies = [ - "libc", - "redox_users", - "winapi 0.3.9", -] - -[[package]] -name = "discard" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" - -[[package]] -name = "dtoa" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0" - -[[package]] -name = "either" -version = "1.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be" - -[[package]] -name = "encoding_rs" -version = "0.8.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b" -dependencies = [ - "cfg-if 1.0.0", -] - -[[package]] -name = "failure" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86" -dependencies = [ - "backtrace", - "failure_derive", -] - -[[package]] -name = "failure_derive" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "synstructure", -] - -[[package]] -name = "flate2" -version = "1.0.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6" -dependencies = [ - "crc32fast", - "miniz_oxide", -] - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "form_urlencoded" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191" -dependencies = [ - "matches", - "percent-encoding 2.1.0", -] - -[[package]] -name = "fuchsia-cprng" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" - -[[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -dependencies = [ - "bitflags", - "fuchsia-zircon-sys", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" - -[[package]] -name = "futures" -version = "0.1.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678" - -[[package]] -name = "futures-cpupool" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" -dependencies = [ - "futures", - "num_cpus", -] - -[[package]] -name = "getrandom" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6" -dependencies = [ - "cfg-if 1.0.0", - "libc", - "wasi 0.11.0+wasi-snapshot-preview1", -] - -[[package]] -name = "gimli" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d" - -[[package]] -name = "h2" -version = "0.1.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a5b34c246847f938a410a03c5458c7fee2274436675e76d8b903c08efc29c462" -dependencies = [ - "byteorder", - "bytes", - "fnv", - "futures", - "http", - "indexmap", - "log", - "slab", - "string", - "tokio-io", -] - -[[package]] -name = "hashbrown" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" - -[[package]] -name = "hermit-abi" -version = "0.1.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" -dependencies = [ - "libc", -] - -[[package]] -name = "http" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0" -dependencies = [ - "bytes", - "fnv", - "itoa 0.4.8", -] - -[[package]] -name = "http-body" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d" -dependencies = [ - "bytes", - "futures", - "http", - "tokio-buf", -] - -[[package]] -name = "httparse" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "496ce29bb5a52785b44e0f7ca2847ae0bb839c9bd28f69acac9b99d461c0c04c" - -[[package]] -name = "hyper" -version = "0.12.36" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c843caf6296fc1f93444735205af9ed4e109a539005abb2564ae1d6fad34c52" -dependencies = [ - "bytes", - "futures", - "futures-cpupool", - "h2", - "http", - "http-body", - "httparse", - "iovec", - "itoa 0.4.8", - "log", - "net2", - "rustc_version", - "time 0.1.44", - "tokio", - "tokio-buf", - "tokio-executor", - "tokio-io", - "tokio-reactor", - "tokio-tcp", - "tokio-threadpool", - "tokio-timer", - "want", -] - -[[package]] -name = "hyper-rustls" -version = "0.17.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719d85c7df4a7f309a77d145340a063ea929dcb2e025bae46a80345cffec2952" -dependencies = [ - "bytes", - "ct-logs", - "futures", - "hyper", - "rustls", - "tokio-io", - "tokio-rustls", - "webpki", - "webpki-roots", -] - -[[package]] -name = "idna" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e" -dependencies = [ - "matches", - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "idna" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" -dependencies = [ - "matches", - "unicode-bidi", - "unicode-normalization", -] - -[[package]] -name = "indexmap" -version = "1.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" -dependencies = [ - "autocfg 1.1.0", - "hashbrown", -] - -[[package]] -name = "iovec" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" -dependencies = [ - "libc", -] - -[[package]] -name = "itoa" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" - -[[package]] -name = "itoa" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d" - -[[package]] -name = "js-sys" -version = "0.3.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2" -dependencies = [ - "wasm-bindgen", -] - -[[package]] -name = "kernel32-sys" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - -[[package]] -name = "lazy_static" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" - -[[package]] -name = "libc" -version = "0.2.126" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" - -[[package]] -name = "lock_api" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75" -dependencies = [ - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -dependencies = [ - "cfg-if 1.0.0", -] - -[[package]] -name = "matches" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" - -[[package]] -name = "maybe-uninit" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" - -[[package]] -name = "memchr" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" - -[[package]] -name = "memoffset" -version = "0.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa" -dependencies = [ - "autocfg 1.1.0", -] - -[[package]] -name = "mime" -version = "0.3.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d" - -[[package]] -name = "mime_guess" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" -dependencies = [ - "mime", - "unicase", -] - -[[package]] -name = "minidom" -version = "0.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe549115a674f5ec64c754d85e37d6f42664bd0ef4ffb62b619489ad99c6cb1a" -dependencies = [ - "quick-xml", -] - -[[package]] -name = "miniz_oxide" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc" -dependencies = [ - "adler", -] - -[[package]] -name = "mio" -version = "0.6.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4afd66f5b91bf2a3bc13fad0e21caedac168ca4c707504e75585648ae80e4cc4" -dependencies = [ - "cfg-if 0.1.10", - "fuchsia-zircon", - "fuchsia-zircon-sys", - "iovec", - "kernel32-sys", - "libc", - "log", - "miow", - "net2", - "slab", - "winapi 0.2.8", -] - -[[package]] -name = "mio-uds" -version = "0.6.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afcb699eb26d4332647cc848492bbc15eafb26f08d0304550d5aa1f612e066f0" -dependencies = [ - "iovec", - "libc", - "mio", -] - -[[package]] -name = "miow" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebd808424166322d4a38da87083bfddd3ac4c131334ed55856112eb06d46944d" -dependencies = [ - "kernel32-sys", - "net2", - "winapi 0.2.8", - "ws2_32-sys", -] - -[[package]] -name = "net2" -version = "0.2.37" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "391630d12b68002ae1e25e8f974306474966550ad82dac6886fb8910c19568ae" -dependencies = [ - "cfg-if 0.1.10", - "libc", - "winapi 0.3.9", -] - -[[package]] -name = "num-integer" -version = "0.1.45" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" -dependencies = [ - "autocfg 1.1.0", - "num-traits", -] - -[[package]] -name = "num-traits" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" -dependencies = [ - "autocfg 1.1.0", -] - -[[package]] -name = "num_cpus" -version = "1.13.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1" -dependencies = [ - "hermit-abi", - "libc", -] - -[[package]] -name = "object" -version = "0.29.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" -dependencies = [ - "memchr", -] - -[[package]] -name = "ole32-sys" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - -[[package]] -name = "once_cell" -version = "1.13.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1" - -[[package]] -name = "parking_lot" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f842b1982eb6c2fe34036a4fbfb06dd185a3f5c8edfaacdf7d1ea10b07de6252" -dependencies = [ - "lock_api", - "parking_lot_core", - "rustc_version", -] - -[[package]] -name = "parking_lot_core" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b876b1b9e7ac6e1a74a6da34d25c42e17e8862aa409cbbbdcfc8d86c6f3bc62b" -dependencies = [ - "cfg-if 0.1.10", - "cloudabi", - "libc", - "redox_syscall 0.1.57", - "rustc_version", - "smallvec", - "winapi 0.3.9", -] - -[[package]] -name = "pbr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff5751d87f7c00ae6403eb1fcbba229b9c76c9a30de8c1cf87182177b168cea2" -dependencies = [ - "crossbeam-channel", - "libc", - "time 0.1.44", - "winapi 0.3.9", -] - -[[package]] -name = "percent-encoding" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31010dd2e1ac33d5b46a5b413495239882813e0369f8ed8a5e266f173602f831" - -[[package]] -name = "percent-encoding" -version = "2.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" - -[[package]] -name = "proc-macro-hack" -version = "0.5.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" - -[[package]] -name = "proc-macro2" -version = "1.0.42" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c278e965f1d8cf32d6e0e96de3d3e79712178ae67986d9cf9151f51e95aac89b" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "publicsuffix" -version = "1.5.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95b4ce31ff0a27d93c8de1849cf58162283752f065a90d508f1105fa6c9a213f" -dependencies = [ - "idna 0.2.3", - "url 2.2.2", -] - -[[package]] -name = "quick-xml" -version = "0.17.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fe1e430bdcf30c9fdc25053b9c459bb1a4672af4617b6c783d7d91dc17c6bbb0" -dependencies = [ - "memchr", -] - -[[package]] -name = "quote" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "rand" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" -dependencies = [ - "autocfg 0.1.8", - "libc", - "rand_chacha", - "rand_core 0.4.2", - "rand_hc", - "rand_isaac", - "rand_jitter", - "rand_os", - "rand_pcg", - "rand_xorshift", - "winapi 0.3.9", -] - -[[package]] -name = "rand_chacha" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" -dependencies = [ - "autocfg 0.1.8", - "rand_core 0.3.1", -] - -[[package]] -name = "rand_core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" -dependencies = [ - "rand_core 0.4.2", -] - -[[package]] -name = "rand_core" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" - -[[package]] -name = "rand_hc" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "rand_isaac" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "rand_jitter" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" -dependencies = [ - "libc", - "rand_core 0.4.2", - "winapi 0.3.9", -] - -[[package]] -name = "rand_os" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" -dependencies = [ - "cloudabi", - "fuchsia-cprng", - "libc", - "rand_core 0.4.2", - "rdrand", - "winapi 0.3.9", -] - -[[package]] -name = "rand_pcg" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" -dependencies = [ - "autocfg 0.1.8", - "rand_core 0.4.2", -] - -[[package]] -name = "rand_xorshift" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "rdrand" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" -dependencies = [ - "rand_core 0.3.1", -] - -[[package]] -name = "redox_syscall" -version = "0.1.57" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "41cc0f7e4d5d4544e8861606a285bb08d3e70712ccc7d2b84d7c0ccfaf4b05ce" - -[[package]] -name = "redox_syscall" -version = "0.2.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "534cfe58d6a18cc17120fbf4635d53d14691c1fe4d951064df9bd326178d7d5a" -dependencies = [ - "bitflags", -] - -[[package]] -name = "redox_users" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" -dependencies = [ - "getrandom", - "redox_syscall 0.2.15", - "thiserror", -] - -[[package]] -name = "reqwest" -version = "0.9.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f88643aea3c1343c804950d7bf983bd2067f5ab59db6d613a08e05572f2714ab" -dependencies = [ - "base64", - "bytes", - "cookie", - "cookie_store", - "encoding_rs", - "flate2", - "futures", - "http", - "hyper", - "hyper-rustls", - "log", - "mime", - "mime_guess", - "rustls", - "serde", - "serde_json", - "serde_urlencoded", - "time 0.1.44", - "tokio", - "tokio-executor", - "tokio-io", - "tokio-rustls", - "tokio-threadpool", - "tokio-timer", - "url 1.7.2", - "uuid", - "webpki-roots", - "winreg", -] - -[[package]] -name = "ring" -version = "0.16.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" -dependencies = [ - "cc", - "libc", - "once_cell", - "spin", - "untrusted", - "web-sys", - "winapi 0.3.9", -] - -[[package]] -name = "rustc-demangle" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342" - -[[package]] -name = "rustc_version" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" -dependencies = [ - "semver", -] - -[[package]] -name = "rustls" -version = "0.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b25a18b1bf7387f0145e7f8324e700805aade3842dd3db2e74e4cdeb4677c09e" -dependencies = [ - "base64", - "log", - "ring", - "sct", - "webpki", -] - -[[package]] -name = "ryu" -version = "1.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695" - -[[package]] -name = "scoped-tls" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28" - -[[package]] -name = "scopeguard" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" - -[[package]] -name = "sct" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b362b83898e0e69f38515b82ee15aa80636befe47c3b6d3d89a911e78fc228ce" -dependencies = [ - "ring", - "untrusted", -] - -[[package]] -name = "semver" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" -dependencies = [ - "semver-parser", -] - -[[package]] -name = "semver-parser" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" - -[[package]] -name = "serde" -version = "1.0.140" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc855a42c7967b7c369eb5860f7164ef1f6f81c20c7cc1141f2a604e18723b03" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde_derive" -version = "1.0.140" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f2122636b9fe3b81f1cb25099fcf2d3f542cdb1d45940d56c713158884a05da" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "serde_json" -version = "1.0.82" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7" -dependencies = [ - "itoa 1.0.2", - "ryu", - "serde", -] - -[[package]] -name = "serde_urlencoded" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a" -dependencies = [ - "dtoa", - "itoa 0.4.8", - "serde", - "url 1.7.2", -] - -[[package]] -name = "sha1" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" -dependencies = [ - "sha1_smol", -] - -[[package]] -name = "sha1_smol" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" - -[[package]] -name = "shell32-sys" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - -[[package]] -name = "simplelog" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b2736f58087298a448859961d3f4a0850b832e72619d75adc69da7993c2cd3c" -dependencies = [ - "chrono", - "log", - "termcolor", -] - -[[package]] -name = "slab" -version = "0.4.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef" -dependencies = [ - "autocfg 1.1.0", -] - -[[package]] -name = "smallvec" -version = "0.6.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" -dependencies = [ - "maybe-uninit", -] - -[[package]] -name = "spin" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" - -[[package]] -name = "standback" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" -dependencies = [ - "version_check", -] - -[[package]] -name = "stdweb" -version = "0.4.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" -dependencies = [ - "discard", - "rustc_version", - "stdweb-derive", - "stdweb-internal-macros", - "stdweb-internal-runtime", - "wasm-bindgen", -] - -[[package]] -name = "stdweb-derive" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" -dependencies = [ - "proc-macro2", - "quote", - "serde", - "serde_derive", - "syn", -] - -[[package]] -name = "stdweb-internal-macros" -version = "0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" -dependencies = [ - "base-x", - "proc-macro2", - "quote", - "serde", - "serde_derive", - "serde_json", - "sha1", - "syn", -] - -[[package]] -name = "stdweb-internal-runtime" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" - -[[package]] -name = "string" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d24114bfcceb867ca7f71a0d3fe45d45619ec47a6fbfa98cb14e14250bfa5d6d" -dependencies = [ - "bytes", -] - -[[package]] -name = "strsim" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a" - -[[package]] -name = "syn" -version = "1.0.98" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "synstructure" -version = "0.12.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "unicode-xid", -] - -[[package]] -name = "termcolor" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "textwrap" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060" -dependencies = [ - "unicode-width", -] - -[[package]] -name = "thiserror" -version = "1.0.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a" -dependencies = [ - "thiserror-impl", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "time" -version = "0.1.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255" -dependencies = [ - "libc", - "wasi 0.10.0+wasi-snapshot-preview1", - "winapi 0.3.9", -] - -[[package]] -name = "time" -version = "0.2.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" -dependencies = [ - "const_fn", - "libc", - "standback", - "stdweb", - "time-macros", - "version_check", - "winapi 0.3.9", -] - -[[package]] -name = "time-macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" -dependencies = [ - "proc-macro-hack", - "time-macros-impl", -] - -[[package]] -name = "time-macros-impl" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" -dependencies = [ - "proc-macro-hack", - "proc-macro2", - "quote", - "standback", - "syn", -] - -[[package]] -name = "tinyvec" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" -dependencies = [ - "tinyvec_macros", -] - -[[package]] -name = "tinyvec_macros" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" - -[[package]] -name = "tokio" -version = "0.1.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a09c0b5bb588872ab2f09afa13ee6e9dac11e10a0ec9e8e3ba39a5a5d530af6" -dependencies = [ - "bytes", - "futures", - "mio", - "num_cpus", - "tokio-codec", - "tokio-current-thread", - "tokio-executor", - "tokio-fs", - "tokio-io", - "tokio-reactor", - "tokio-sync", - "tokio-tcp", - "tokio-threadpool", - "tokio-timer", - "tokio-udp", - "tokio-uds", -] - -[[package]] -name = "tokio-buf" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46" -dependencies = [ - "bytes", - "either", - "futures", -] - -[[package]] -name = "tokio-codec" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b2998660ba0e70d18684de5d06b70b70a3a747469af9dea7618cc59e75976b" -dependencies = [ - "bytes", - "futures", - "tokio-io", -] - -[[package]] -name = "tokio-core" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87b1395334443abca552f63d4f61d0486f12377c2ba8b368e523f89e828cffd4" -dependencies = [ - "bytes", - "futures", - "iovec", - "log", - "mio", - "scoped-tls", - "tokio", - "tokio-executor", - "tokio-io", - "tokio-reactor", - "tokio-timer", -] - -[[package]] -name = "tokio-current-thread" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1de0e32a83f131e002238d7ccde18211c0a5397f60cbfffcb112868c2e0e20e" -dependencies = [ - "futures", - "tokio-executor", -] - -[[package]] -name = "tokio-executor" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb2d1b8f4548dbf5e1f7818512e9c406860678f29c300cdf0ebac72d1a3a1671" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures", -] - -[[package]] -name = "tokio-fs" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297a1206e0ca6302a0eed35b700d292b275256f596e2f3fea7729d5e629b6ff4" -dependencies = [ - "futures", - "tokio-io", - "tokio-threadpool", -] - -[[package]] -name = "tokio-io" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674" -dependencies = [ - "bytes", - "futures", - "log", -] - -[[package]] -name = "tokio-reactor" -version = "0.1.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09bc590ec4ba8ba87652da2068d150dcada2cfa2e07faae270a5e0409aa51351" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures", - "lazy_static", - "log", - "mio", - "num_cpus", - "parking_lot", - "slab", - "tokio-executor", - "tokio-io", - "tokio-sync", -] - -[[package]] -name = "tokio-rustls" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d7cf08f990090abd6c6a73cab46fed62f85e8aef8b99e4b918a9f4a637f0676" -dependencies = [ - "bytes", - "futures", - "iovec", - "rustls", - "tokio-io", - "webpki", -] - -[[package]] -name = "tokio-sync" -version = "0.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edfe50152bc8164fcc456dab7891fa9bf8beaf01c5ee7e1dd43a397c3cf87dee" -dependencies = [ - "fnv", - "futures", -] - -[[package]] -name = "tokio-tcp" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98df18ed66e3b72e742f185882a9e201892407957e45fbff8da17ae7a7c51f72" -dependencies = [ - "bytes", - "futures", - "iovec", - "mio", - "tokio-io", - "tokio-reactor", -] - -[[package]] -name = "tokio-threadpool" -version = "0.1.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df720b6581784c118f0eb4310796b12b1d242a7eb95f716a8367855325c25f89" -dependencies = [ - "crossbeam-deque", - "crossbeam-queue", - "crossbeam-utils 0.7.2", - "futures", - "lazy_static", - "log", - "num_cpus", - "slab", - "tokio-executor", -] - -[[package]] -name = "tokio-timer" -version = "0.2.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93044f2d313c95ff1cb7809ce9a7a05735b012288a888b62d4434fd58c94f296" -dependencies = [ - "crossbeam-utils 0.7.2", - "futures", - "slab", - "tokio-executor", -] - -[[package]] -name = "tokio-udp" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2a0b10e610b39c38b031a2fcab08e4b82f16ece36504988dcbd81dbba650d82" -dependencies = [ - "bytes", - "futures", - "log", - "mio", - "tokio-codec", - "tokio-io", - "tokio-reactor", -] - -[[package]] -name = "tokio-uds" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab57a4ac4111c8c9dbcf70779f6fc8bc35ae4b2454809febac840ad19bd7e4e0" -dependencies = [ - "bytes", - "futures", - "iovec", - "libc", - "log", - "mio", - "mio-uds", - "tokio-codec", - "tokio-io", - "tokio-reactor", -] - -[[package]] -name = "try-lock" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642" - -[[package]] -name = "try_from" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "283d3b89e1368717881a9d51dad843cc435380d8109c9e47d38780a324698d8b" -dependencies = [ - "cfg-if 0.1.10", -] - -[[package]] -name = "unicase" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6" -dependencies = [ - "version_check", -] - -[[package]] -name = "unicode-bidi" -version = "0.3.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992" - -[[package]] -name = "unicode-ident" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15c61ba63f9235225a22310255a29b806b907c9b8c964bcbd0a2c70f3f2deea7" - -[[package]] -name = "unicode-normalization" -version = "0.1.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6" -dependencies = [ - "tinyvec", -] - -[[package]] -name = "unicode-width" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973" - -[[package]] -name = "unicode-xid" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" - -[[package]] -name = "untrusted" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" - -[[package]] -name = "url" -version = "1.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd4e7c0d531266369519a4aa4f399d748bd37043b00bde1e4ff1f60a120b355a" -dependencies = [ - "idna 0.1.5", - "matches", - "percent-encoding 1.0.1", -] - -[[package]] -name = "url" -version = "2.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c" -dependencies = [ - "form_urlencoded", - "idna 0.2.3", - "matches", - "percent-encoding 2.1.0", -] - -[[package]] -name = "uuid" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a" -dependencies = [ - "rand", -] - -[[package]] -name = "vec_map" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191" - -[[package]] -name = "version_check" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" - -[[package]] -name = "want" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6395efa4784b027708f7451087e647ec73cc74f5d9bc2e418404248d679a230" -dependencies = [ - "futures", - "log", - "try-lock", -] - -[[package]] -name = "wasi" -version = "0.10.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" - -[[package]] -name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" - -[[package]] -name = "wasm-bindgen" -version = "0.2.82" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d" -dependencies = [ - "cfg-if 1.0.0", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.82" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f" -dependencies = [ - "bumpalo", - "log", - "once_cell", - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.82" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.82" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da" -dependencies = [ - "proc-macro2", - "quote", - "syn", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.82" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a" - -[[package]] -name = "web-sys" -version = "0.3.59" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "webpki" -version = "0.21.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b8e38c0608262c46d4a56202ebabdeb094cef7e560ca7a226c6bf055188aa4ea" -dependencies = [ - "ring", - "untrusted", -] - -[[package]] -name = "webpki-roots" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a262ae37dd9d60f60dd473d1158f9fbebf110ba7b6a5051c8160460f6043718b" -dependencies = [ - "webpki", -] - -[[package]] -name = "winapi" -version = "0.2.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-build" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-util" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" -dependencies = [ - "winapi 0.3.9", -] - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "winreg" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2986deb581c4fe11b621998a5e53361efe6b48a151178d0cd9eeffa4dc6acc9" -dependencies = [ - "winapi 0.3.9", -] - -[[package]] -name = "ws2_32-sys" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" -dependencies = [ - "winapi 0.2.8", - "winapi-build", -] - -[[package]] -name = "xdg" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c4583db5cbd4c4c0303df2d15af80f0539db703fa1c68802d4cbbd2dd0f88f6" -dependencies = [ - "dirs", -] diff --git a/pkgs/development/python-modules/cmsis-pack-manager/default.nix b/pkgs/development/python-modules/cmsis-pack-manager/default.nix index 92ed4362ece8..646fef8f47fa 100644 --- a/pkgs/development/python-modules/cmsis-pack-manager/default.nix +++ b/pkgs/development/python-modules/cmsis-pack-manager/default.nix @@ -1,78 +1,58 @@ { lib , fetchPypi , rustPlatform +, cffi +, libiconv , stdenv -, Security -, writeShellScriptBin +, darwin , buildPythonPackage -, setuptools-scm , appdirs -, milksnake , pyyaml , hypothesis , jinja2 -, mock , pytestCheckHook +, unzip }: -let - pname = "cmsis-pack-manager"; - version = "0.4.0"; + +buildPythonPackage rec { + pname = "cmsis_pack_manager"; + version = "0.5.2"; src = fetchPypi { inherit pname version; - hash = "sha256-NeUG6PFI2eTwq5SNtAB6ZMA1M3z1JmMND29V9/O5sgw="; + hash = "sha256-sVfyz9D7/0anIp0bEPp1EJkERDbNJ3dCcydLbty1KsQ="; }; - native = rustPlatform.buildRustPackage { - name = "${pname}-${version}-native"; - + cargoDeps = rustPlatform.fetchCargoTarball { inherit src; - - buildInputs = lib.optionals stdenv.isDarwin [ - Security - ]; - - sourceRoot = "${pname}-${version}/rust"; - cargoLock.lockFile = ./Cargo.lock; - - postPatch = '' - cp ${./Cargo.lock} Cargo.lock - ''; - - cargoBuildFlags = [ "--lib" ]; + sha256 = "dO4qw5Jx0exwb4RuOhu6qvGxQZ+LayHtXDHZKADLTEI="; }; -in -buildPythonPackage rec { - inherit pname version src; - # The cargo build is already run in a separate derivation - postPatch = '' - substituteInPlace setup.py \ - --replace "'cargo', 'build'," "'true'," - ''; + nativeBuildInputs = [ rustPlatform.cargoSetupHook rustPlatform.maturinBuildHook ]; + propagatedNativeBuildInputs = [ cffi ]; + buildInputs = [ libiconv ] + ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security; + propagatedBuildInputs = [ appdirs pyyaml ]; + nativeCheckInputs = [ hypothesis jinja2 pytestCheckHook unzip ]; - nativeBuildInputs = [ setuptools-scm ]; - propagatedBuildInputs = [ appdirs milksnake pyyaml ]; - - nativeCheckInputs = [ hypothesis jinja2 mock pytestCheckHook ]; - - preBuild = '' - mkdir -p rust/target/release/deps - ln -s ${native}/lib/libcmsis_cffi${stdenv.hostPlatform.extensions.sharedLibrary} rust/target/release/deps/ - ''; + format = "pyproject"; preCheck = '' - # Otherwise the test uses a dummy library (missing all symbols) - ln -sf ../build/lib/cmsis_pack_manager/_native__lib${stdenv.hostPlatform.extensions.sharedLibrary} cmsis_pack_manager/_native__lib${stdenv.hostPlatform.extensions.sharedLibrary} + unzip $dist/*.whl cmsis_pack_manager/cmsis_pack_manager/native.so ''; - pythonImportsCheck = [ "cmsis_pack_manager" ]; + disabledTests = [ + # All require DNS. + "test_pull_pdscs" + "test_install_pack" + "test_pull_pdscs_cli" + "test_dump_parts_cli" + ]; meta = with lib; { description = "A Rust and Python module for handling CMSIS Pack files"; homepage = "https://github.com/pyocd/cmsis-pack-manager"; license = licenses.asl20; maintainers = with maintainers; [ frogamic sbruder ]; - broken = stdenv.isDarwin; }; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 63deb5a1a184..c41bf30acb8c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1885,9 +1885,7 @@ self: super: with self; { inherit (pkgs) cmigemo; }; - cmsis-pack-manager = callPackage ../development/python-modules/cmsis-pack-manager { - inherit (pkgs.darwin.apple_sdk.frameworks) Security; - }; + cmsis-pack-manager = callPackage ../development/python-modules/cmsis-pack-manager { }; cmsis-svd = callPackage ../development/python-modules/cmsis-svd { }; From e33e3f03f1174c6da3e6d1b55a2ffcce3fbff639 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 13 Feb 2023 11:03:25 +0000 Subject: [PATCH 171/178] python3.pkgs.pyocd: relax pylink-square constraint 1.0 seems to be very minor changes[1]. The flash() method is not used anywhere in pyocd as far as I can tell, the tests all pass, and it doesn't build at all otherwise. [1]: https://github.com/square/pylink/blob/master/CHANGELOG.md#100 --- pkgs/development/python-modules/pyocd/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pyocd/default.nix b/pkgs/development/python-modules/pyocd/default.nix index aebab128cb1e..25583aea55fc 100644 --- a/pkgs/development/python-modules/pyocd/default.nix +++ b/pkgs/development/python-modules/pyocd/default.nix @@ -60,7 +60,8 @@ buildPythonPackage rec { postPatch = '' substituteInPlace setup.cfg \ - --replace "libusb-package>=1.0,<2.0" "" + --replace "libusb-package>=1.0,<2.0" "" \ + --replace "pylink-square>=0.11.1,<1.0" "pylink-square>=0.11.1,<2.0" ''; meta = with lib; { From 386d97f587dbebfbf7466134e74fe57192449313 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Mon, 13 Feb 2023 11:04:56 +0000 Subject: [PATCH 172/178] python3.pkgs.pyocd: 0.34.1 -> 0.34.3 --- pkgs/development/python-modules/pyocd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyocd/default.nix b/pkgs/development/python-modules/pyocd/default.nix index 25583aea55fc..d6bd079a04a1 100644 --- a/pkgs/development/python-modules/pyocd/default.nix +++ b/pkgs/development/python-modules/pyocd/default.nix @@ -21,11 +21,11 @@ buildPythonPackage rec { pname = "pyocd"; - version = "0.34.1"; + version = "0.34.3"; src = fetchPypi { inherit pname version; - sha256 = "sha256-Fpa2IEsLOQ8ylGI/5D6h+22j1pvrvE9IMIyhCtyM6qU="; + sha256 = "2zDr6fnA2MCTT/hNVvk7u3gugMo+nUF2E2VsOPhJXH4="; }; patches = [ From 65fe5aba2ebe8249ccc7a8e44f12cd73cc60e8ea Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Wed, 22 Feb 2023 12:22:36 -0800 Subject: [PATCH 173/178] nix-your-shell: 1.1.0 -> 1.1.1 --- pkgs/shells/nix-your-shell/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/nix-your-shell/default.nix b/pkgs/shells/nix-your-shell/default.nix index e957fdba7525..345f917ddcd0 100644 --- a/pkgs/shells/nix-your-shell/default.nix +++ b/pkgs/shells/nix-your-shell/default.nix @@ -5,16 +5,16 @@ }: rustPlatform.buildRustPackage rec { pname = "nix-your-shell"; - version = "1.1.0"; + version = "1.1.1"; src = fetchFromGitHub { owner = "MercuryTechnologies"; repo = pname; rev = "v${version}"; - sha256 = "sha256-MXshCRgGL2V51Pd1ms6D0Sn0mtRcxd0pWUz+zghBTdI="; + sha256 = "sha256-g5TC+4DGbTAlG39R8QIM5cB3/mtkp/vz8puB0Kr6aag="; }; - cargoSha256 = "sha256-f1igCSdv6iMUDeCDGSxDIecjVcJQN2jbdALGMpDVepQ="; + cargoSha256 = "sha256-AiWKSWwMh6KWCTTRRCBxekv2rukz+ijnRit11K/AnhU="; meta = with lib; { description = "A `nix` and `nix-shell` wrapper for shells other than `bash`"; From bfef542b67ccfff0cfdc6f827db72910c965092e Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 21 Feb 2023 23:41:34 +0000 Subject: [PATCH 174/178] linux_5_4_hardened: use meta.broken, not assert Respects NIXPKGS_ALLOW_BROKEN and allows attributes to be accessed. --- pkgs/os-specific/linux/kernel/hardened/config.nix | 1 - pkgs/top-level/linux-kernels.nix | 3 +++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/hardened/config.nix b/pkgs/os-specific/linux/kernel/hardened/config.nix index efc64e81af55..5a1a710ba3b7 100644 --- a/pkgs/os-specific/linux/kernel/hardened/config.nix +++ b/pkgs/os-specific/linux/kernel/hardened/config.nix @@ -15,7 +15,6 @@ with lib.kernel; with (lib.kernel.whenHelpers version); assert (versionAtLeast version "4.9"); -assert (stdenv.hostPlatform.isx86_64 -> versions.majorMinor version != "5.4"); { # Report BUG() conditions and kill the offending process. diff --git a/pkgs/top-level/linux-kernels.nix b/pkgs/top-level/linux-kernels.nix index 013a252a2073..8feb3c41c2e1 100644 --- a/pkgs/top-level/linux-kernels.nix +++ b/pkgs/top-level/linux-kernels.nix @@ -45,6 +45,9 @@ let url = "mirror://kernel/linux/kernel/v${major}.x/linux-${version}.tar.xz"; inherit sha256; }; + extraMeta = { + broken = kernel.meta.broken || (stdenv.isx86_64 && lib.versions.majorMinor version == "5.4"); + }; }; kernelPatches = kernel.kernelPatches ++ [ kernelPatches.hardened.${kernel.meta.branch} From 807ac7dcbea8dec402f71f24f868e691f2e7fe95 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 21 Feb 2023 23:45:54 +0000 Subject: [PATCH 175/178] linuxKernel: respect config.allowAliases In Nixpkgs, we generally gate throws for package removals behind config.allowAliases (as seen elsewhere in this very file already!), which has nice properties like making it possible to test evaluation of all the packages in an attrset that are expected to evaluate by disabling aliases. --- pkgs/top-level/linux-kernels.nix | 37 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 18 deletions(-) diff --git a/pkgs/top-level/linux-kernels.nix b/pkgs/top-level/linux-kernels.nix index 8feb3c41c2e1..a00dd9f0acb9 100644 --- a/pkgs/top-level/linux-kernels.nix +++ b/pkgs/top-level/linux-kernels.nix @@ -96,8 +96,6 @@ in { rpiVersion = 4; }; - linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; - linux_4_14 = callPackage ../os-specific/linux/kernel/linux-4.14.nix { kernelPatches = [ kernelPatches.bridge_stp_helper @@ -163,12 +161,6 @@ in { ]; }; - linux_5_18 = throw "linux 5.18 was removed because it has reached its end of life upstream"; - - linux_5_19 = throw "linux 5.19 was removed because it has reached its end of life upstream"; - - linux_6_0 = throw "linux 6.0 was removed because it has reached its end of life upstream"; - linux_6_1 = callPackage ../os-specific/linux/kernel/linux-6.1.nix { kernelPatches = [ kernelPatches.bridge_stp_helper @@ -248,7 +240,6 @@ in { linux_xanmod = xanmodKernels.lts; linux_xanmod_stable = xanmodKernels.main; linux_xanmod_latest = xanmodKernels.main; - linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option"; linux_libre = deblobKernel packageAliases.linux_default.kernel; @@ -261,11 +252,19 @@ in { linux_5_4_hardened = hardenedKernelFor kernels.linux_5_4 { }; linux_5_10_hardened = hardenedKernelFor kernels.linux_5_10 { }; linux_5_15_hardened = hardenedKernelFor kernels.linux_5_15 { }; + linux_6_1_hardened = hardenedKernelFor kernels.linux_6_1 { }; + + } // lib.optionalAttrs config.allowAliases { + linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; + linux_5_18 = throw "linux 5.18 was removed because it has reached its end of life upstream"; + linux_5_19 = throw "linux 5.19 was removed because it has reached its end of life upstream"; + linux_6_0 = throw "linux 6.0 was removed because it has reached its end of life upstream"; + + linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option"; + linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream"; linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream"; linux_6_0_hardened = throw "linux 6.0 was removed because it has reached its end of life upstream"; - linux_6_1_hardened = hardenedKernelFor kernels.linux_6_1 { }; - })); /* Linux kernel modules are inherently tied to a specific kernel. So rather than provide specific instances of those packages for a @@ -541,17 +540,18 @@ in { vanillaPackages = { # recurse to build modules for the kernels - linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; # Added 2022-11-08 linux_4_14 = recurseIntoAttrs (packagesFor kernels.linux_4_14); linux_4_19 = recurseIntoAttrs (packagesFor kernels.linux_4_19); linux_5_4 = recurseIntoAttrs (packagesFor kernels.linux_5_4); linux_5_10 = recurseIntoAttrs (packagesFor kernels.linux_5_10); linux_5_15 = recurseIntoAttrs (packagesFor kernels.linux_5_15); + linux_6_1 = recurseIntoAttrs (packagesFor kernels.linux_6_1); + linux_6_2 = recurseIntoAttrs (packagesFor kernels.linux_6_2); + } // lib.optionalAttrs config.allowAliases { + linux_4_9 = throw "linux 4.9 was removed because it will reach its end of life within 22.11"; # Added 2022-11-08 linux_5_18 = throw "linux 5.18 was removed because it reached its end of life upstream"; # Added 2022-09-17 linux_5_19 = throw "linux 5.19 was removed because it reached its end of life upstream"; # Added 2022-11-01 linux_6_0 = throw "linux 6.0 was removed because it reached its end of life upstream"; # Added 2023-01-20 - linux_6_1 = recurseIntoAttrs (packagesFor kernels.linux_6_1); - linux_6_2 = recurseIntoAttrs (packagesFor kernels.linux_6_2); }; rtPackages = { @@ -590,9 +590,6 @@ in { }); linux_5_10_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_10 { }); linux_5_15_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_5_15 { }); - linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream"; - linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream"; - linux_6_0_hardened = throw "linux 6.0 was removed because it has reached its end of life upstream"; linux_6_1_hardened = recurseIntoAttrs (hardenedPackagesFor kernels.linux_6_1 { }); linux_zen = recurseIntoAttrs (packagesFor kernels.linux_zen); @@ -600,13 +597,17 @@ in { linux_xanmod = recurseIntoAttrs (packagesFor kernels.linux_xanmod); linux_xanmod_stable = recurseIntoAttrs (packagesFor kernels.linux_xanmod_stable); linux_xanmod_latest = recurseIntoAttrs (packagesFor kernels.linux_xanmod_latest); - linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option"; hardkernel_4_14 = recurseIntoAttrs (packagesFor kernels.linux_hardkernel_4_14); linux_libre = recurseIntoAttrs (packagesFor kernels.linux_libre); linux_latest_libre = recurseIntoAttrs (packagesFor kernels.linux_latest_libre); + } // lib.optionalAttrs config.allowAliases { + linux_5_18_hardened = throw "linux 5.18 was removed because it has reached its end of life upstream"; + linux_5_19_hardened = throw "linux 5.19 was removed because it has reached its end of life upstream"; + linux_6_0_hardened = throw "linux 6.0 was removed because it has reached its end of life upstream"; + linux_xanmod_tt = throw "linux_xanmod_tt was removed because upstream no longer offers this option"; }); packageAliases = { From 7560f8eea5fb2092e1c93ca0e5f1f8c421e06830 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 21 Feb 2023 23:45:59 +0000 Subject: [PATCH 176/178] linuxPackages.exfat-nofuse: set to null when unsupported This is the same thing every other obsolete kernel module does, and it's better than an assertion because an assertion prevents testing evaluation of all the modules for a particular kernel. --- pkgs/os-specific/linux/exfat/default.nix | 5 ----- pkgs/top-level/linux-kernels.nix | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/exfat/default.nix b/pkgs/os-specific/linux/exfat/default.nix index ee6f448112d8..3d2445df4980 100644 --- a/pkgs/os-specific/linux/exfat/default.nix +++ b/pkgs/os-specific/linux/exfat/default.nix @@ -1,11 +1,6 @@ { stdenv, lib, fetchFromGitHub, fetchpatch, kernel }: stdenv.mkDerivation rec { - # linux kernel above 5.7 comes with its own exfat implementation https://github.com/arter97/exfat-linux/issues/27 - # Assertion moved here due to some tests unintenionally triggering it, - # e.g. nixosTests.kernel-latest; it's unclear how/why so far. - assertion = assert lib.versionOlder kernel.version "5.8"; null; - name = "exfat-nofuse-${version}-${kernel.version}"; version = "2020-04-15"; diff --git a/pkgs/top-level/linux-kernels.nix b/pkgs/top-level/linux-kernels.nix index a00dd9f0acb9..fa83d6c925fc 100644 --- a/pkgs/top-level/linux-kernels.nix +++ b/pkgs/top-level/linux-kernels.nix @@ -327,7 +327,7 @@ in { dpdk = pkgs.dpdk.override { inherit kernel; }; - exfat-nofuse = callPackage ../os-specific/linux/exfat { }; + exfat-nofuse = if lib.versionOlder kernel.version "5.8" then callPackage ../os-specific/linux/exfat { } else null; evdi = callPackage ../os-specific/linux/evdi { }; From 4145f63bce85f6a871c689e8f39ae7beff1bcc44 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Tue, 31 Jan 2023 20:55:58 +0000 Subject: [PATCH 177/178] python310Packages.pyct: 0.4.8 -> 0.5.0 --- pkgs/development/python-modules/pyct/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyct/default.nix b/pkgs/development/python-modules/pyct/default.nix index b1e5ec095f13..9dedd84349bb 100644 --- a/pkgs/development/python-modules/pyct/default.nix +++ b/pkgs/development/python-modules/pyct/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "pyct"; - version = "0.4.8"; + version = "0.5.0"; src = fetchPypi { inherit pname version; - sha256 = "23d7525b5a1567535c093aea4b9c33809415aa5f018dd77f6eb738b1226df6f7"; + sha256 = "sha256-3Z9KxcvY43w1LAQDYGLTxfZ+/sdtQEdh7xawy/JqpqA="; }; propagatedBuildInputs = [ From 3eb6081abe0f666455cbee1c0af832b5f89c7eb2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 1 Feb 2023 08:24:25 +0100 Subject: [PATCH 178/178] python310Packages.pyct: add changelog to meta - disable on unsupported Python releases --- pkgs/development/python-modules/pyct/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pyct/default.nix b/pkgs/development/python-modules/pyct/default.nix index 9dedd84349bb..3a00c7819881 100644 --- a/pkgs/development/python-modules/pyct/default.nix +++ b/pkgs/development/python-modules/pyct/default.nix @@ -1,9 +1,9 @@ { lib , buildPythonPackage , fetchPypi -, isPy27 , param , pytestCheckHook +, pythonOlder , pyyaml , requests }: @@ -11,10 +11,13 @@ buildPythonPackage rec { pname = "pyct"; version = "0.5.0"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "sha256-3Z9KxcvY43w1LAQDYGLTxfZ+/sdtQEdh7xawy/JqpqA="; + hash = "sha256-3Z9KxcvY43w1LAQDYGLTxfZ+/sdtQEdh7xawy/JqpqA="; }; propagatedBuildInputs = [ @@ -27,8 +30,6 @@ buildPythonPackage rec { pytestCheckHook ]; - doCheck = !isPy27; - pythonImportsCheck = [ "pyct" ]; @@ -36,6 +37,7 @@ buildPythonPackage rec { meta = with lib; { description = "ClI for Python common tasks for users"; homepage = "https://github.com/pyviz/pyct"; + changelog = "https://github.com/pyviz-dev/pyct/releases/tag/v${version}"; license = licenses.bsd3; maintainers = with maintainers; [ costrouc ]; };