-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.el
1176 lines (1176 loc) · 76.3 KB
/
package-lock.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
((elpaca :source "lockfile" :date
(25742 14771 587587 95000)
:recipe
(:protocol https :inherit t :depth 1 :repo "https://github.com/progfolio/elpaca.git" :ref "798351f21bf91c96dea5abaf274e0f9946024fc8" :files
(:defaults
(:exclude "extensions"))
:build
(:not elpaca--activate-package)
:package "elpaca"))
(elpaca-use-package :source "lockfile" :date
(25742 14771 586577 799000)
:recipe
(:package "elpaca-use-package" :repo "https://github.com/progfolio/elpaca.git" :files
("extensions/elpaca-use-package.el")
:main "extensions/elpaca-use-package.el" :build
(:not elpaca--compile-info)
:protocol https :inherit t :depth 1 :ref "798351f21bf91c96dea5abaf274e0f9946024fc8"))
(use-package :source "lockfile" :date
(25742 14771 585572 881000)
:recipe
(:package "use-package" :fetcher github :repo "jwiegley/use-package" :files
(:defaults
(:exclude "bind-key.el" "bind-chord.el" "use-package-chords.el" "use-package-ensure-system-package.el"))
:protocol https :inherit t :depth 1 :ref "a6e856418d2ebd053b34e0ab2fda328abeba731c"))
(general :source "lockfile" :date
(25742 14771 584609 639000)
:recipe
(:package "general" :fetcher github :repo "noctuid/general.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "9651024e7f40a8ac5c3f31f8675d3ebe2b667344"))
(bind-key :source "lockfile" :date
(25742 14771 583438 837000)
:recipe
(:package "bind-key" :fetcher github :repo "jwiegley/use-package" :files
("bind-key.el")
:protocol https :inherit t :depth 1 :ref "a6e856418d2ebd053b34e0ab2fda328abeba731c"))
(org :source "lockfile" :date
(25742 14771 580776 288000)
:recipe
(:package "org" :local-repo "org" :repo "https://git.savannah.gnu.org/git/emacs/org-mode.git" :pre-build
(progn
(require 'elpaca-menu-org)
(elpaca-menu-org--build))
:build
(:not elpaca--generate-autoloads-async)
:files
(:defaults
("etc/styles/" "etc/styles/*" "doc/*.texi"))
:protocol https :inherit t :depth 1 :ref "0f1184a850737d22bf78ee6d7621f65fd2679d4f"))
(evil :source "lockfile" :date
(25742 14771 579753 744000)
:recipe
(:package "evil" :repo "emacs-evil/evil" :fetcher github :files
(:defaults "doc/build/texinfo/evil.texi"
(:exclude "evil-test-helpers.el"))
:protocol https :inherit t :depth 1 :ref "2e8576188b1d0768fbf92c6bea2fb3fbed9f019f"))
(evil-collection :source "lockfile" :date
(25742 14771 578710 495000)
:recipe
(:package "evil-collection" :fetcher github :repo "emacs-evil/evil-collection" :files
(:defaults "modes")
:protocol https :inherit t :depth 1 :ref "b7a75062a600b1b1d2ba51a1e3ac1ec331d19fff"))
(magit :source "lockfile" :date
(25742 14771 577539 263000)
:recipe
(:package "magit" :fetcher github :repo "magit/magit" :files
("lisp/magit*.el" "lisp/git-rebase.el" "docs/magit.texi" "docs/AUTHORS.md" "LICENSE" "Documentation/magit.texi" "Documentation/AUTHORS.md"
(:exclude "lisp/magit-libgit.el" "lisp/magit-libgit-pkg.el" "lisp/magit-section.el" "lisp/magit-section-pkg.el"))
:protocol https :inherit t :depth 1 :host github :ref "9007bcfdb520f32befd48f8bf8c228e2a065f9e4"))
(undo-fu :source "lockfile" :date
(25742 14771 576716 44000)
:recipe
(:package "undo-fu" :fetcher codeberg :repo "emacsmirror/undo-fu" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :host github :ref "0e22308de8337a9291ddd589edae167d458fbe77"))
(dash :source "lockfile" :date
(25742 14771 575666 873000)
:recipe
(:package "dash" :fetcher github :repo "magnars/dash.el" :files
("dash.el" "dash.texi")
:protocol https :inherit t :depth 1 :ref "3df46d7d9fe74f52a661565888e4d31fd760f0df"))
(f :source "lockfile" :date
(25742 14771 574586 481000)
:recipe
(:package "f" :fetcher github :repo "rejeep/f.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "d50dca48929575642912bb5bbb2585709ba38f82"))
(plz :source "lockfile" :date
(25742 14771 573453 869000)
:recipe
(:package "plz" :host github :files
(:defaults)
:repo "alphapapa/plz.el" :protocol https :inherit t :depth 1 :ref "b6072edeec1f0e2465d273db74a8f2f7726e6bce" :fetcher github))
(posframe :source "lockfile" :date
(25742 14771 572582 810000)
:recipe
(:package "posframe" :fetcher github :repo "tumashu/posframe" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "aa88860a16e28a311f81e18f1d9ed2e7d9e33991"))
(promise :source "lockfile" :date
(25742 14771 571754 77000)
:recipe
(:package "promise" :repo "chuntaro/emacs-promise" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "cec51feb5f957e8febe6325335cf57dc2db6be30"))
(request :source "lockfile" :date
(25742 14771 570681 604000)
:recipe
(:package "request" :repo "tkf/emacs-request" :fetcher github :files
("request.el")
:protocol https :inherit t :depth 1 :ref "fe567ec0222a1ba658866697a9e7fb6b63d71ff7"))
(s :source "lockfile" :date
(25742 14771 569480 56000)
:recipe
(:package "s" :fetcher github :repo "magnars/s.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "e957dcb0677da18b2bb60ad867db5df5c35b5616"))
(graphql :source "lockfile" :date
(25742 14771 568603 144000)
:recipe
(:package "graphql" :fetcher github :repo "vermiculus/graphql.el" :files
(:defaults)
:protocol https :inherit t :depth 1 :ref "67237f284f2dfb94f3cfba672ff64a37e1cb860f"))
(shrink-path :source "lockfile" :date
(25742 14771 567758 596000)
:recipe
(:package "shrink-path" :fetcher gitlab :repo "bennya/shrink-path.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "c14882c8599aec79a6e8ef2d06454254bb3e1e41"))
(ts :source "lockfile" :date
(25742 14771 566689 841000)
:recipe
(:package "ts" :fetcher github :repo "alphapapa/ts.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "552936017cfdec89f7fc20c254ae6b37c3f22c5b"))
(consult :source "lockfile" :date
(25742 14771 565506 224000)
:recipe
(:package "consult" :repo "minad/consult" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "7c7658ba7b1389fba1eff9dbc8962409f99343b7"))
(corfu :source "lockfile" :date
(25742 14771 564634 909000)
:recipe
(:package "corfu" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/corfu" :protocol https :inherit t :depth 1 :ref "7bf3ec4622372ed23e83a0778ded53222c4e1187"))
(embark :source "lockfile" :date
(25742 14771 563769 596000)
:recipe
(:package "embark" :repo "oantolin/embark" :fetcher github :files
("embark.el" "embark-org.el" "embark-consult.el")
:protocol https :inherit t :depth 1 :ref "ee014d5f3c86eafae673a947b492fa03ffbacb4e"))
(orderless :source "lockfile" :date
(25742 14771 562684 212000)
:recipe
(:package "orderless" :repo "oantolin/orderless" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "e3062280f924933e9c6f5dd1a71729ed98c8493a"))
(vertico :source "lockfile" :date
(25742 14771 561538 356000)
:recipe
(:package "vertico" :host github :files
("*.el" "extensions/*.el")
:repo "emacs-straight/vertico" :protocol https :inherit t :depth 1 :ref "4d2bde64e7c4a07e4c4447283af19382ead37d48"))
(all-the-icons :source "lockfile" :date
(25742 14771 560700 114000)
:recipe
(:package "all-the-icons" :repo "domtronn/all-the-icons.el" :fetcher github :files
(:defaults "data")
:protocol https :inherit t :depth 1 :ref "51bf77da1ebc3c199dfc11f54c0dce67559f5f40"))
(all-the-icons-dired :source "lockfile" :date
(25742 14771 559634 427000)
:recipe
(:package "all-the-icons-dired" :repo "wyuenho/all-the-icons-dired" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "4564bec6bd3fd02dd870e6d2cfed37fe38bbc93a"))
(anzu :source "lockfile" :date
(25742 14771 558498 644000)
:recipe
(:package "anzu" :fetcher github :repo "emacsorphanage/anzu" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "5abb37455ea44fa401d5f4c1bdc58adb2448db67"))
(ctrlf :source "lockfile" :date
(25742 14771 557638 31000)
:recipe
(:package "ctrlf" :fetcher github :repo "radian-software/ctrlf" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "9b4cf6c79a961f2bfbb949805aa300fcf1eb40a6"))
(dimmer :source "lockfile" :date
(25742 14771 556789 634000)
:recipe
(:package "dimmer" :fetcher github :repo "gonewest818/dimmer.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "a5b697580e5aed6168b571ae3d925753428284f8"))
(diredfl :source "lockfile" :date
(25742 14771 555893 315000)
:recipe
(:package "diredfl" :fetcher github :repo "purcell/diredfl" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "94bd99eeced6d52a5a7b9db3745239feafd633e2"))
(doom-modeline :source "lockfile" :date
(25742 14771 554854 471000)
:recipe
(:package "doom-modeline" :repo "seagle0128/doom-modeline" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "fe9ee5a2a950f9ded10261a05a12adc577ae9e36"))
(doom-themes :source "lockfile" :date
(25742 14771 553755 514000)
:recipe
(:package "doom-themes" :fetcher github :repo "doomemacs/themes" :files
(:defaults "themes/*.el" "themes/*/*.el" "extensions/*.el")
:protocol https :inherit t :depth 1 :ref "b5ff201f4bea4286e9ed015a2043cf2394182232"))
(eros :source "lockfile" :date
(25742 14771 552859 993000)
:recipe
(:package "eros" :fetcher github :repo "xiongtx/eros" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "dd8910279226259e100dab798b073a52f9b4233a"))
(helpful :source "lockfile" :date
(25742 14771 551843 5000)
:recipe
(:package "helpful" :repo "Wilfred/helpful" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "94c25337b2de2f9da60914a7c0c6cca9584c0231"))
(hide-mode-line :source "lockfile" :date
(25742 14771 550803 597000)
:recipe
(:package "hide-mode-line" :repo "hlissner/emacs-hide-mode-line" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "bc5d293576c5e08c29e694078b96a5ed85631942"))
(highlight-parentheses :source "lockfile" :date
(25742 14771 549914 132000)
:recipe
(:package "highlight-parentheses" :fetcher sourcehut :repo "tsdh/highlight-parentheses.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "438a1cb2563e2a2496be4678cc0df8d5b22caf5d"))
(idle-highlight-mode :source "lockfile" :date
(25742 14771 548882 60000)
:recipe
(:package "idle-highlight-mode" :fetcher codeberg :repo "ideasman42/emacs-idle-highlight-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :host codeberg :ref "f9091c907d41e7b12d99d108a194229b8dbfc5ae"))
(kind-icon :source "lockfile" :date
(25742 14771 547806 822000)
:recipe
(:package "kind-icon" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/kind-icon" :protocol https :inherit t :depth 1 :ref "42d2a41874d5a61731556e53ba57547b4ef95342"))
(marginalia :source "lockfile" :date
(25742 14771 546774 442000)
:recipe
(:package "marginalia" :repo "minad/marginalia" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "c1365bf0c7b5d32e7531fa8f1a9a3b64a155cec0"))
(page-break-lines :source "lockfile" :date
(25742 14771 545675 968000)
:recipe
(:package "page-break-lines" :fetcher github :repo "purcell/page-break-lines" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "79eca86e0634ac68af862e15c8a236c37f446dcd"))
(paren-face :source "lockfile" :date
(25742 14771 544530 441000)
:recipe
(:package "paren-face" :repo "tarsius/paren-face" :fetcher github :old-names
(parenface)
:files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "bf741a6038a2554abf98d31e658421c33f8bf7a4"))
(pulsar :source "lockfile" :date
(25742 14771 543680 170000)
:recipe
(:package "pulsar" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/pulsar" :protocol https :inherit t :depth 1 :ref "57010e2c6cdee14acfd87b4c2bd75c796f04a75e"))
(xterm-color :source "lockfile" :date
(25742 14771 542499 55000)
:recipe
(:package "xterm-color" :repo "atomontage/xterm-color" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "1a4012854c69a5cdaeb5a73d2ad705011892fca3"))
(aggressive-indent :source "lockfile" :date
(25742 14771 541360 802000)
:recipe
(:package "aggressive-indent" :repo "Malabarba/aggressive-indent-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "f376cdc25de5c0f8c330f1e053557d95ca47a540"))
(apheleia :source "lockfile" :date
(25742 14771 540446 81000)
:recipe
(:package "apheleia" :fetcher github :repo "radian-software/apheleia" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "5ebd6bf5819fbf2adfa18162f270825e6ca4379c"))
(drag-stuff :source "lockfile" :date
(25742 14771 539327 872000)
:recipe
(:package "drag-stuff" :repo "rejeep/drag-stuff.el" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "6d06d846cd37c052d79acd0f372c13006aa7e7c8"))
(emmet-mode :source "lockfile" :date
(25742 14771 538402 723000)
:recipe
(:package "emmet-mode" :fetcher github :repo "smihica/emmet-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "63b6932603184956b5ea8919036d2b307b48d7fd"))
(evil-cleverparens :source "lockfile" :date
(25742 14771 537278 816000)
:recipe
(:package "evil-cleverparens" :fetcher github :repo "emacs-evil/evil-cleverparens" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "22aa03d0f50aa70ae08fbe8765a88f5020afa635"))
(evil-matchit :source "lockfile" :date
(25742 14771 536352 452000)
:recipe
(:package "evil-matchit" :fetcher github :repo "redguardtoo/evil-matchit" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "ec3dd819983b2d824142efddd46ef29b46a7c454"))
(evil-nerd-commenter :source "lockfile" :date
(25742 14771 535220 194000)
:recipe
(:package "evil-nerd-commenter" :fetcher github :repo "redguardtoo/evil-nerd-commenter" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "8c0f23d46a3927b9f83c1c2c4590be53d0b740db"))
(evil-smartparens :source "lockfile" :date
(25742 14771 534265 175000)
:recipe
(:package "evil-smartparens" :fetcher github :repo "expez/evil-smartparens" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "026d4a3cfce415a4dfae1457f871b385386e61d3"))
(evil-surround :source "lockfile" :date
(25742 14771 533137 170000)
:recipe
(:package "evil-surround" :repo "emacs-evil/evil-surround" :fetcher github :old-names
(surround)
:files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "c9e1449bf3f740b5e9b99e7820df4eca7fc7cf02"))
(flycheck :source "lockfile" :date
(25742 14771 532001 601000)
:recipe
(:package "flycheck" :repo "flycheck/flycheck" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "15f0759602f9a31aff134c44d001ab058fbe747c"))
(flyspell-correct :source "lockfile" :date
(25742 14771 531096 413000)
:recipe
(:package "flyspell-correct" :repo "d12frosted/flyspell-correct" :fetcher github :files
("flyspell-correct.el" "flyspell-correct-ido.el")
:protocol https :inherit t :depth 1 :ref "7d7b6b01188bd28e20a13736ac9f36c3367bd16e"))
(quickrun :source "lockfile" :date
(25742 14771 530000 844000)
:recipe
(:package "quickrun" :repo "emacsorphanage/quickrun" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "7a89313c07a21eae9cd69a1a98e2a134d559e04f"))
(paredit :source "lockfile" :date
(25742 14771 528907 916000)
:recipe
(:package "paredit" :fetcher git :url "https://mumble.net/~campbell/git/paredit.git" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :host github :repo "emacsmirror/paredit" :ref "009c95980e52cc4d736fa1404cf17c86fe97fd7d"))
(smartparens :source "lockfile" :date
(25742 14771 527822 510000)
:recipe
(:package "smartparens" :fetcher github :repo "Fuco1/smartparens" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "0a23136dd6b1f326419c5828f4197ecfd820b204"))
(cargo :source "lockfile" :date
(25742 14771 526916 362000)
:recipe
(:package "cargo" :repo "kwrooijen/cargo.el" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "d2720c8dc7ac3b18ce112a886d3b8696797d01cb"))
(cider :source "lockfile" :date
(25742 14771 525871 10000)
:recipe
(:package "cider" :fetcher github :repo "clojure-emacs/cider" :files
("*.el"
(:exclude ".dir-locals.el"))
:old-names
(nrepl)
:protocol https :inherit t :depth 1 :ref "17743001467e0045ecd6639aad45d21e89d6b9a2"))
(clj-refactor :source "lockfile" :date
(25742 14771 524847 738000)
:recipe
(:package "clj-refactor" :fetcher github :repo "clojure-emacs/clj-refactor.el" :files
(:defaults "CHANGELOG.md")
:protocol https :inherit t :depth 1 :ref "8300d5cab861668f313fbbbb3e2926e3e5130e86"))
(clojure-mode :source "lockfile" :date
(25742 14771 523708 507000)
:recipe
(:package "clojure-mode" :repo "clojure-emacs/clojure-mode" :fetcher github :files
("clojure-mode.el")
:protocol https :inherit t :depth 1 :ref "3453cd229b412227aaffd1dc2870fa8fa213c5b1"))
(csv-mode :source "lockfile" :date
(25742 14771 522809 835000)
:recipe
(:package "csv-mode" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/csv-mode" :protocol https :inherit t :depth 1 :ref "58d1b74e5ecdff748f314bf701f5048ad35984b3"))
(dockerfile-mode :source "lockfile" :date
(25742 14771 521748 910000)
:recipe
(:package "dockerfile-mode" :fetcher github :repo "spotify/dockerfile-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "52c6c00da1d31c0b6c29c74335b3af63ed6bf06c"))
(flycheck-clj-kondo :source "lockfile" :date
(25742 14771 520688 661000)
:recipe
(:package "flycheck-clj-kondo" :fetcher github :repo "borkdude/flycheck-clj-kondo" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "ff7bed2315755cfe02ef471edf522e27b78cd5ca"))
(flycheck-ledger :source "lockfile" :date
(25742 14771 519538 10000)
:recipe
(:package "flycheck-ledger" :fetcher github :repo "purcell/flycheck-ledger" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "628e25ba66604946085571652a94a54f4d1ad96f"))
(flycheck-rust :source "lockfile" :date
(25742 14771 518708 173000)
:recipe
(:package "flycheck-rust" :repo "flycheck/flycheck-rust" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "a139cd53c5062697e9ed94ad80b803c37d999600"))
(geiser :source "lockfile" :date
(25742 14771 517562 46000)
:recipe
(:package "geiser" :fetcher gitlab :repo "emacs-geiser/geiser" :files
("elisp/*.el" "doc/dir" "doc/geiser.texi")
:protocol https :inherit t :depth 1 :ref "bfc9cce54b7ac1cb036911965198b5cbe2f43f4c"))
(git-modes :source "lockfile" :date
(25742 14771 516675 498000)
:recipe
(:package "git-modes" :fetcher github :repo "magit/git-modes" :old-names
(gitattributes-mode gitconfig-mode gitignore-mode)
:files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "be96ef14fab6a2d76cca3ebf9a15b462a695923d"))
(gnuplot :source "lockfile" :date
(25742 14771 515653 724000)
:recipe
(:package "gnuplot" :repo "emacs-gnuplot/gnuplot" :fetcher github :files
("gnuplot.el" "gnuplot-gui.el" "gnuplot-context.el")
:protocol https :inherit t :depth 1 :ref "fe7ce76d797b34214178ac8e470f2fa9a63b2520"))
(go-mode :source "lockfile" :date
(25742 14771 514505 581000)
:recipe
(:package "go-mode" :repo "dominikh/go-mode.el" :fetcher github :files
("go-mode.el")
:protocol https :inherit t :depth 1 :ref "166dfb1e090233c4609a50c2ec9f57f113c1da72"))
(gotest :source "lockfile" :date
(25742 14771 513668 210000)
:recipe
(:package "gotest" :fetcher github :repo "nlamirault/gotest.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "2ec82dcc70d5f6aa22f66b44f8b537be33bd7903"))
(graphql-mode :source "lockfile" :date
(25742 14771 512503 411000)
:recipe
(:package "graphql-mode" :repo "davazp/graphql-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "1437b790060f6ce4a8dc57df2023443645b899e5"))
(groovy-mode :source "lockfile" :date
(25742 14771 511653 471000)
:recipe
(:package "groovy-mode" :fetcher github :repo "Groovy-Emacs-Modes/groovy-emacs-modes" :files
("*groovy*.el")
:protocol https :inherit t :depth 1 :ref "c612ac1e9f742856914ad6e8eb9e9dc169f489ab"))
(haskell-mode :source "lockfile" :date
(25742 14771 510492 489000)
:recipe
(:package "haskell-mode" :repo "haskell/haskell-mode" :fetcher github :files
(:defaults "NEWS" "logo.svg")
:protocol https :inherit t :depth 1 :ref "a34ccdc54be15043ff0d253c3c20087524255491"))
(just-mode :source "lockfile" :date
(25742 14771 509546 473000)
:recipe
(:package "just-mode" :repo "leon-barrett/just-mode.el" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "45a221063093f3461816913acdaba898e62b42ce"))
(kbd-mode :source "lockfile" :date
(25742 14771 508493 680000)
:recipe
(:protocol https :inherit t :depth 1 :host github :repo "kmonad/kbd-mode" :ref "96178a43d3c9ea3167362513fe4c3fdeb7074e9f" :package "kbd-mode"))
(kotlin-mode :source "lockfile" :date
(25742 14771 507323 951000)
:recipe
(:package "kotlin-mode" :repo "Emacs-Kotlin-Mode-Maintainers/kotlin-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "55eed95033a59d7448a4b2bc11879e62c05e361b"))
(ledger-mode :source "lockfile" :date
(25742 14771 506317 999000)
:recipe
(:package "ledger-mode" :fetcher github :repo "ledger/ledger-mode" :files
("ledger*.el")
:old-names
(ldg-mode)
:protocol https :inherit t :depth 1 :ref "8bad528d43007e0310b5e72e6e021b502b30495c"))
(lua-mode :source "lockfile" :date
(25742 14771 505150 142000)
:recipe
(:package "lua-mode" :repo "immerrr/lua-mode" :fetcher github :files
(:defaults
(:exclude "init-tryout.el"))
:protocol https :inherit t :depth 1 :ref "ad639c62e38a110d8d822c4f914af3e20b40ccc4"))
(markdown-mode :source "lockfile" :date
(25742 14771 504103 744000)
:recipe
(:package "markdown-mode" :fetcher github :repo "jrblevin/markdown-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "d95107f5b77d6c010e89259e05adfcd79a21f26a"))
(nix-mode :source "lockfile" :date
(25742 14771 503063 799000)
:recipe
(:package "nix-mode" :fetcher github :repo "NixOS/nix-mode" :files
(:defaults
(:exclude "nix-company.el" "nix-mode-mmm.el"))
:protocol https :inherit t :depth 1 :ref "54e5626829168e22126b233e079f04dff3c71b90"))
(php-mode :source "lockfile" :date
(25742 14771 502031 996000)
:recipe
(:package "php-mode" :repo "emacs-php/php-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "d01cfc9cd51706e076bf7e5cbf0cfa7ee885efb4"))
(plantuml-mode :source "lockfile" :date
(25742 14771 500899 380000)
:recipe
(:package "plantuml-mode" :fetcher github :repo "skuro/plantuml-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "ea45a13707abd2a70df183f1aec6447197fc9ccc"))
(protobuf-mode :source "lockfile" :date
(25742 14771 499802 502000)
:recipe
(:package "protobuf-mode" :fetcher github :repo "protocolbuffers/protobuf" :files
("editors/protobuf-mode.el")
:protocol https :inherit t :depth 1 :ref "44ac12471381a0331735c253b2d954fad3f8207c"))
(rust-mode :source "lockfile" :date
(25742 14771 498706 930000)
:recipe
(:package "rust-mode" :repo "rust-lang/rust-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "0431b10d2520918f3f250fdf4dc96e8d2eb7ea76"))
(terraform-mode :source "lockfile" :date
(25742 14771 497567 683000)
:recipe
(:package "terraform-mode" :repo "hcl-emacs/terraform-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "e67459fefc871fdbf20e27be8f85b98b10b97b1b"))
(tree-sitter :source "lockfile" :date
(25742 14771 496602 303000)
:recipe
(:package "tree-sitter" :repo "emacs-tree-sitter/elisp-tree-sitter" :fetcher github :branch "release" :files
(:defaults
(:exclude "lisp/tree-sitter-tests.el"))
:protocol https :inherit t :depth 1 :ref "3cfab8a0e945db9b3df84437f27945746a43cc71"))
(tree-sitter-langs :source "lockfile" :date
(25742 14771 495426 705000)
:recipe
(:package "tree-sitter-langs" :repo "emacs-tree-sitter/tree-sitter-langs" :fetcher github :branch "release" :files
(:defaults "queries")
:protocol https :inherit t :depth 1 :ref "ffe9ab0c8ec9e37e70e31d296df3b85bcfc73c5e"))
(tsi :source "lockfile" :date
(25742 14771 494392 565000)
:recipe
(:protocol https :inherit t :depth 1 :host github :repo "orzechowskid/tsi.el" :package "tsi" :ref "6fba6a4c61125e95c5ff744d1e9cb8ec17d6d4e4"))
(typescript-mode :source "lockfile" :date
(25742 14771 492698 287000)
:recipe
(:package "typescript-mode" :fetcher github :repo "emacs-typescript/typescript.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "4fcb4594819caf472ae42ea068a1c7795cf07f46"))
(vimrc-mode :source "lockfile" :date
(25742 14771 491666 308000)
:recipe
(:package "vimrc-mode" :fetcher github :repo "mcandre/vimrc-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "13bc150a870d5d4a95f1111e4740e2b22813c30e"))
(web-mode :source "lockfile" :date
(25742 14771 490659 536000)
:recipe
(:package "web-mode" :repo "fxbois/web-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "53bed1e6a8554da877c27ffad6bd65113dc758e3"))
(yaml-mode :source "lockfile" :date
(25742 14771 489543 289000)
:recipe
(:package "yaml-mode" :repo "yoshiki/yaml-mode" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "3fcb36d6039bef57e2a0f6e24c51f623c0bf5fb7"))
(eglot :source "lockfile" :date
(25742 14771 488516 378000)
:recipe
(:package "eglot" :host github :files
("*"
(:exclude ".git"))
:repo "joaotavora/eglot" :protocol https :inherit t :depth 1 :ref "8b5532dd32b25276c1857508030b207f765ef9b6"))
(dap-mode :source "lockfile" :date
(25742 14771 487485 943000)
:recipe
(:package "dap-mode" :repo "emacs-lsp/dap-mode" :fetcher github :files
(:defaults "icons")
:protocol https :inherit t :depth 1 :ref "39bfaf1a3400b3ca4e9755f4d15e33abb0dda2c4"))
(lsp-java :source "lockfile" :date
(25742 14771 486469 322000)
:recipe
(:package "lsp-java" :repo "emacs-lsp/lsp-java" :fetcher github :files
(:defaults "icons")
:protocol https :inherit t :depth 1 :ref "de2d89814fecb9bae825baa7028c5cd8b32b9b8f"))
(lsp-mode :source "lockfile" :date
(25742 14771 485446 77000)
:recipe
(:package "lsp-mode" :repo "emacs-lsp/lsp-mode" :fetcher github :files
(:defaults "clients/*.el")
:protocol https :inherit t :depth 1 :ref "7dee0d63fa1b6628be4aaea86b2298244eb3d84e"))
(lsp-ui :source "lockfile" :date
(25742 14771 484258 557000)
:recipe
(:package "lsp-ui" :repo "emacs-lsp/lsp-ui" :fetcher github :files
(:defaults "lsp-ui-doc.html" "resources")
:protocol https :inherit t :depth 1 :ref "fb1073013f745bce056811a38e2b0b8b2a4b5ebc"))
(evil-org :source "lockfile" :date
(25742 14771 483232 285000)
:recipe
(:package "evil-org" :fetcher github :repo "Somelauw/evil-org-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "b1f309726b1326e1a103742524ec331789f2bf94"))
(htmlize :source "lockfile" :date
(25742 14771 482217 588000)
:recipe
(:package "htmlize" :fetcher github :repo "hniksic/emacs-htmlize" :version-regexp "release/\\(.*\\)" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "dd27bc3f26efd728f2b1f01f9e4ac4f61f2ffbf9"))
(ob-async :source "lockfile" :date
(25742 14771 481018 244000)
:recipe
(:package "ob-async" :repo "astahlman/ob-async" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "9aac486073f5c356ada20e716571be33a350a982"))
(org-cliplink :source "lockfile" :date
(25742 14771 479985 797000)
:recipe
(:package "org-cliplink" :repo "rexim/org-cliplink" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "13e0940b65d22bec34e2de4bc8cba1412a7abfbc"))
(org-download :source "lockfile" :date
(25742 14771 478929 521000)
:recipe
(:package "org-download" :repo "abo-abo/org-download" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "19e166f0a8c539b4144cfbc614309d47a9b2a9b7"))
(org-make-toc :source "lockfile" :date
(25742 14771 477877 588000)
:recipe
(:package "org-make-toc" :fetcher github :repo "alphapapa/org-make-toc" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "26fbd6a7e1e7f8e473fe3a5f74faec715c3a05aa"))
(org-modern :source "lockfile" :date
(25742 14771 476761 813000)
:recipe
(:package "org-modern" :repo "minad/org-modern" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :host github :ref "010eade723881ca234a12bd94b791e2000cd2a15"))
(emacsql :source "lockfile" :date
(25742 14771 475630 487000)
:recipe
(:package "emacsql" :fetcher github :repo "skeeto/emacsql" :files
(:defaults "sqlite")
:protocol https :inherit t :depth 1 :host github :ref "64012261f65fcdd7ea137d1973ef051af1dced42"))
(emacsql-sqlite :source "lockfile" :date
(25742 14771 474542 851000)
:recipe
(:package "emacsql-sqlite" :fetcher github :repo "skeeto/emacsql" :files
("emacsql-sqlite.el" "sqlite")
:protocol https :inherit t :depth 1 :host github :ref "64012261f65fcdd7ea137d1973ef051af1dced42"))
(org-roam :source "lockfile" :date
(25742 14771 472827 878000)
:recipe
(:package "org-roam" :fetcher github :repo "org-roam/org-roam" :files
(:defaults "extensions/*")
:protocol https :inherit t :depth 1 :ref "74422df546a515bc984c2f3d3a681c09d6f43916"))
(browse-at-remote :source "lockfile" :date
(25742 14771 471719 405000)
:recipe
(:package "browse-at-remote" :repo "rmuslimov/browse-at-remote" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "d81643c975e77d506fe2eb931229739c162adb5d"))
(command-log-mode :source "lockfile" :date
(25742 14771 470626 853000)
:recipe
(:package "command-log-mode" :fetcher github :repo "lewang/command-log-mode" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "af600e6b4129c8115f464af576505ea8e789db27"))
(consult-dir :source "lockfile" :date
(25742 14771 469318 369000)
:recipe
(:package "consult-dir" :fetcher github :repo "karthink/consult-dir" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "ed8f0874d26f10f5c5b181ab9f2cf4107df8a0eb"))
(daemons :source "lockfile" :date
(25742 14771 468023 22000)
:recipe
(:package "daemons" :fetcher github :repo "cbowdon/daemons.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "e18e84ccc13101f1609c213029cf011ae0ad1178"))
(deadgrep :source "lockfile" :date
(25742 14771 466669 697000)
:recipe
(:package "deadgrep" :repo "Wilfred/deadgrep" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "9da7183e60c75bacefd44025fc5e5335b7c5862a"))
(devdocs-lookup :source "lockfile" :date
(25742 14771 465265 97000)
:recipe
(:protocol https :inherit t :depth 1 :host github :repo "skeeto/devdocs-lookup" :ref "233b9a2bac3c86a7c3d403d85848273086b4c453" :package "devdocs-lookup"))
(dired-du :source "lockfile" :date
(25742 14771 463925 419000)
:recipe
(:package "dired-du" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/dired-du" :protocol https :inherit t :depth 1 :ref "e5a2aa64849aae14fd6d1973919ec7e13ed76dd0"))
(explain-pause-mode :source "lockfile" :date
(25742 14771 462897 752000)
:recipe
(:protocol https :inherit t :depth 1 :host github :repo "lastquestion/explain-pause-mode" :ref "2356c8c3639cbeeb9751744dbe737267849b4b51" :package "explain-pause-mode"))
(golden-ratio :source "lockfile" :date
(25742 14771 461777 150000)
:recipe
(:package "golden-ratio" :repo "roman/golden-ratio.el" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "007911d8a431b72670f5fe5f0e5b4380c2777a31"))
(hnreader :source "lockfile" :date
(25742 14771 460624 635000)
:recipe
(:package "hnreader" :fetcher github :repo "thanhvg/emacs-hnreader" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "8444e177035e236e991f9ea73074c053a45426ad"))
(openwith :source "lockfile" :date
(25742 14771 459486 964000)
:recipe
(:package "openwith" :fetcher github :repo "jpkotta/openwith" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "1dc89670822966fab6e656f6519fdd7f01e8301a"))
(popper :source "lockfile" :date
(25742 14771 458325 341000)
:recipe
(:package "popper" :fetcher github :repo "karthink/popper" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "d7560f18350faaee8362aee16481268de3cc6457"))
(speed-type :source "lockfile" :date
(25742 14771 457322 890000)
:recipe
(:package "speed-type" :fetcher github :repo "dakra/speed-type" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "11a8bd33711711fb5e22d93ac2ed950e4a2e76fc"))
(sudo-edit :source "lockfile" :date
(25742 14771 456136 720000)
:recipe
(:package "sudo-edit" :repo "nflath/sudo-edit" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "74eb1e6986461baed9a9269566ff838530b4379b"))
(svg-clock :source "lockfile" :date
(25742 14771 455119 172000)
:recipe
(:package "svg-clock" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/svg-clock" :protocol https :inherit t :depth 1 :ref "0b92fed41aa65238ae7f9716c59cdec583463933"))
(synosaurus :source "lockfile" :date
(25742 14771 454087 715000)
:recipe
(:package "synosaurus" :repo "hpdeifel/synosaurus" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "14d34fc92a77c3a916b4d58400424c44ae99cd81"))
(timer-revert :source "lockfile" :date
(25742 14771 453039 9000)
:recipe
(:package "timer-revert" :repo "yyr/timer-revert" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "615c91dec8b440d2b9b7c725dd733d7432564e45"))
(trashed :source "lockfile" :date
(25742 14771 451922 399000)
:recipe
(:package "trashed" :repo "shingo256/trashed" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "ddf5830730544435a068f2dc9ac75a81ea69df1d"))
(visual-fill-column :source "lockfile" :date
(25742 14771 450852 554000)
:recipe
(:package "visual-fill-column" :fetcher codeberg :repo "joostkremers/visual-fill-column" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "453d698d7fc243a547665f8ba43c55eee574e0db"))
(vterm :source "lockfile" :date
(25742 14771 449749 158000)
:recipe
(:package "vterm" :fetcher github :repo "akermu/emacs-libvterm" :files
("CMakeLists.txt" "elisp.c" "elisp.h" "emacs-module.h" "etc" "utf8.c" "utf8.h" "vterm.el" "vterm-module.c" "vterm-module.h")
:protocol https :inherit t :depth 1 :ref "f14d113ee4618f052879509ec378feb9766b871b"))
(wgrep :source "lockfile" :date
(25742 14771 448697 425000)
:recipe
(:package "wgrep" :fetcher github :repo "mhayashi1120/Emacs-wgrep" :files
("wgrep.el")
:protocol https :inherit t :depth 1 :ref "f9687c28bbc2e84f87a479b6ce04407bb97cfb23"))
(wordnut :source "lockfile" :date
(25742 14771 447644 815000)
:recipe
(:package "wordnut" :repo "gromnitsky/wordnut" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "feac531404041855312c1a046bde7ea18c674915"))
(zones :source "lockfile" :date
(25742 14771 446523 808000)
:recipe
(:package "zones" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/zones" :protocol https :inherit t :depth 1 :ref "932aa3cd9e1827c0ebe68a4af7899704c4dba495"))
(goto-chg :source "lockfile" :date
(25742 14771 445396 541000)
:recipe
(:package "goto-chg" :repo "emacs-evil/goto-chg" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "278cd3e6d5107693aa2bb33189ca503f22f227d0"))
(annalist :source "lockfile" :date
(25742 14771 443632 873000)
:recipe
(:package "annalist" :fetcher github :repo "noctuid/annalist.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "134fa3f0fb91a636a1c005c483516d4b64905a6d"))
(compat :source "lockfile" :date
(25742 14771 441954 16000)
:recipe
(:package "compat" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/compat" :protocol https :inherit t :depth 1 :ref "e07c0f29d45a73cc0bdf9423780979978c1d9d22"))
(git-commit :source "lockfile" :date
(25742 14771 440822 735000)
:recipe
(:package "git-commit" :fetcher github :repo "magit/magit" :files
("lisp/git-commit.el" "lisp/git-commit-pkg.el")
:old-names
(git-commit-mode)
:protocol https :inherit t :depth 1 :ref "9007bcfdb520f32befd48f8bf8c228e2a065f9e4"))
(magit-section :source "lockfile" :date
(25742 14771 439743 839000)
:recipe
(:package "magit-section" :fetcher github :repo "magit/magit" :files
("lisp/magit-section.el" "lisp/magit-section-pkg.el" "docs/magit-section.texi" "Documentation/magit-section.texi")
:protocol https :inherit t :depth 1 :ref "9007bcfdb520f32befd48f8bf8c228e2a065f9e4"))
(with-editor :source "lockfile" :date
(25742 14771 438626 298000)
:recipe
(:package "with-editor" :fetcher github :repo "magit/with-editor" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "9e437353ee817b8e6a9ffce53e37fe5a6fcb4294"))
(elisp-refs :source "lockfile" :date
(25742 14771 436921 105000)
:recipe
(:package "elisp-refs" :repo "Wilfred/elisp-refs" :fetcher github :files
(:defaults
(:exclude "elisp-refs-bench.el"))
:protocol https :inherit t :depth 1 :ref "bf3cca8f74065b1b31036f461e3a093b162311bd"))
(svg-lib :source "lockfile" :date
(25742 14771 435182 866000)
:recipe
(:package "svg-lib" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/svg-lib" :protocol https :inherit t :depth 1 :ref "31085bbf247f0467e2f6af948085610248fce6c5"))
(pkg-info :source "lockfile" :date
(25742 14771 433519 191000)
:recipe
(:package "pkg-info" :repo "emacsorphanage/pkg-info" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "76ba7415480687d05a4353b27fea2ae02b8d9d61"))
(let-alist :source "lockfile" :date
(25742 14771 431848 876000)
:recipe
(:package "let-alist" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/let-alist" :protocol https :inherit t :depth 1 :ref "021fc10df2e44faba4728d849ee767cf890aa51a"))
(epl :source "lockfile" :date
(25742 14771 430155 599000)
:recipe
(:package "epl" :repo "cask/epl" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "78ab7a85c08222cd15582a298a364774e3282ce6"))
(ht :source "lockfile" :date
(25742 14771 428460 812000)
:recipe
(:package "ht" :fetcher github :repo "Wilfred/ht.el" :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "3c1677f1bf2ded2ab07edffb7d17def5d2b5b6f6"))
(parseedn :source "lockfile" :date
(25742 14771 426801 753000)
:recipe
(:package "parseedn" :repo "clojure-emacs/parseedn" :fetcher github :files
("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" "lisp/*.el"
(:exclude ".dir-locals.el" "test.el" "tests.el" "*-test.el" "*-tests.el" "LICENSE" "README*" "*-pkg.el"))
:protocol https :inherit t :depth 1 :ref "a09686fbb9113b8b1b4f20c9e1dc0d6fea01a64f"))
(queue :source "lockfile" :date
(25742 14771 425154 514000)
:recipe
(:package "queue" :host github :files
("*"
(:exclude ".git"))
:repo "emacs-straight/queue" :protocol https :inherit t :depth 1 :ref "130c2d656cd5d7376552272fab9e50a7c37d0c4a"))
(spinner :source "lockfile" :date