-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapt.bingner.com.Packages
7323 lines (6937 loc) · 248 KB
/
apt.bingner.com.Packages
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
Package: 3proxy
Version: 0.5.3k-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 1456
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/3proxy_0.5.3k-1_iphoneos-arm.deb
Size: 79514
MD5sum: a710126c8201ee7ef6b257fd69226dee
SHA1: d608510f10fbbefc6624ad357cdb44e19456a16f
SHA256: 864c6170797275df202697f65e949f55af882bec700224f1e9ded5c3241867ba
Section: Networking
Priority: optional
Multi-Arch: foreign
Homepage: http://3proxy.ru/download/
Description: tiny free proxy server
Depiction: https://apt.bingner.com/info/3proxy/
Name: 3proxy
Tag: purpose::daemon, role::hacker
Package: adv-cmds
Version: 119-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 736
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: ncurses
Provides: ps
Filename: debs/1443.00/adv-cmds_119-1_iphoneos-arm.deb
Size: 35562
MD5sum: bc10e7711b5b88fba6a949306f2c2cda
SHA1: 7ecf92ff1c4a298866285bce9fe8f86fac1093f3
SHA256: 5ab82ef025abd0bc0984459fd46d87c1e52da225696c40a21d3bb85edd8a2200
Section: Administration
Priority: important
Multi-Arch: foreign
Description: finger, fingerd, last, lsvfs, md, ps
Depiction: https://apt.bingner.com/info/adv-cmds/
Tag: purpose::console, role::hacker
Package: afpfs-ng
Version: 0.8.1-1
Architecture: iphoneos-arm
Installed-Size: 592
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: gcrypt, readline
Filename: debs/1443.00/afpfs-ng_0.8.1-1_iphoneos-arm.deb
Size: 51144
MD5sum: 35e9f56a07624ba2e06290580d194678
SHA1: 664edbbaf53412e7d7e8c8e2e459b50a03018412
SHA256: 70db09bf720350d7337de57189420af5d0107c7563ac24d393ab8b22667aa71c
Section: Networking
Priority: optional
Homepage: http://sites.google.com/site/alexthepuffin/home
Description: an open source client for Apple Filing Protocol
Author: Alex deVries <[email protected]>
Depiction: https://apt.bingner.com/info/afpfs-ng/
Tag: purpose::console, role::hacker
Package: apr
Version: 1.6.3-4
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 1176
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: apr-lib
Filename: debs/1443.00/apr_1.6.3-4_iphoneos-arm.deb
Size: 86462
MD5sum: 3543a02122b359e1f99d05efdc7e1e88
SHA1: bb81214c9b65bf71425cd7d4cd5947eb7b7ae4f5
SHA256: f448ffe65c7d7433c7a0dbfa1eecf9bb4f8a5e5fb10fb08c6159471d3c3558a5
Section: Development
Priority: optional
Multi-Arch: foreign
Homepage: http://apr.apache.org/
Description: platform abstraction library from Apache
Depiction: https://apt.bingner.com/info/apr/
Name: APR
Tag: purpose::library, role::developer
Package: apr-lib
Version: 1.6.3-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 520
Pre-Depends: dpkg (>= 1.14.25-8)
Replaces: apr (<< 1.3.3-4)
Filename: debs/1443.00/apr-lib_1.6.3-1_iphoneos-arm.deb
Size: 70802
MD5sum: a0b82009206ccad622dbdda111e59413
SHA1: 008952ee6f673d65b6b98f169cb4bc704645a0ff
SHA256: 06fba05ba9f9586824f35d4a377d7e6b96e183bf91313acc31e5d3ef53208e5d
Section: Development
Priority: standard
Multi-Arch: foreign
Homepage: http://apr.apache.org/
Description: just the /usr/lib folder from APR
Depiction: https://apt.bingner.com/info/apr-lib/
Name: APR (/usr/lib)
Tag: purpose::library, role::developer
Package: apr-util
Version: 1.6.1-2
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 1472
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: apr, berkeleydb, expat, sqlite3
Filename: debs/1443.00/apr-util_1.6.1-2_iphoneos-arm.deb
Size: 121404
MD5sum: 2f3d95ee2b184122421c1bdf8a122a00
SHA1: ed5d6a25d739e5ce098f6ca9e28dee83f03d9d2f
SHA256: 75c0ab88278768f74360071552365abc5f19b4e1728a2e16195bd1b01d58a7bc
Section: Development
Priority: standard
Description: data structures and utilities for Apache APR
Depiction: https://apt.bingner.com/info/apr-util/
Name: APR-util
Tag: purpose::library, role::developer
Package: apt
Version: 1.8.2-3
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 1784
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libapt (>= 1.8.2), apt-key, berkeleydb, apt1.4 (>= 1:0)
Conflicts: apt7 (<<1:0), apt1.4 (<<1:0), apt1.8
Replaces: apt1.8, apt1.4
Provides: apt1.8 (=1.8.2)
Filename: debs/1443.00/apt_1.8.2-3_iphoneos-arm.deb
Size: 146966
MD5sum: d302f3ae0f61ff46cd17d2d55d0b6a6e
SHA1: 60b458b663b731bcbd1986000fcb3c5344d16e8b
SHA256: dafa73a1c6f3a290b5e11295e634738fce935dd19e8f162934d0a9c2e1f7a3c0
Section: Packaging
Priority: standard
Description: the advanced packaging tool from Debian
Depiction: https://apt.bingner.com/info/apt/
Name: APT
Tag: purpose::console, role::hacker
Package: apt-key
Version: 1.8.2-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 64
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: coreutils, libapt
Conflicts: apt7-key (<<1:0)
Breaks: apt7-key (<<1:0)
Replaces: apt (<< 1:0-1), apt7 (<< 0.7.20.2-4), apt7-key
Filename: debs/1443.00/apt-key_1.8.2-1_iphoneos-arm.deb
Size: 8732
MD5sum: b4d6117b30d3e2edb8b4d31b7e87bc7a
SHA1: 51c366164b7f974ddb33e06c3352a9e439bb1215
SHA256: 0b1ce4d6905c39ac555c368e45221031165933657643240892b34618851ed41c
Section: Packaging
Priority: standard
Description: repository encryption key management tool
Depiction: https://apt.bingner.com/info/apt-key/
Name: APT (apt-key)
Tag: purpose::console, role::hacker
Package: apt-rdepends
Version: 1.3.0-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 48
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libapt-pkg-perl
Filename: debs/1443.00/apt-rdepends_1.3.0-1_iphoneos-arm.deb
Size: 6344
MD5sum: 5327f0f128301fd8327718912717fbad
SHA1: e6a62a43938b35de5225c1218ec1afed5917afe9
SHA256: ae19878cb198743f66ec454284fff3b577e428f019ea6e076b162edec2f72d67
Section: Scripting
Priority: optional
Description: a Perl script that hooks into APT and recursively finds dependencies.
Depiction: https://apt.bingner.com/info/apt-rdepends/
Tag: purpose::console, role::hacker
Package: apt1.4
Version: 1.4.9-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 1720
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libapt (>= 1.4.9), apt-key, berkeleydb
Conflicts: apt7 (<<1:0)
Filename: debs/1443.00/apt1.4_1.4.9-1_iphoneos-arm.deb
Size: 130916
MD5sum: 5d62cdac8b39750419db3948d17dbfef
SHA1: ab47c126b17884e337b916a449d4f0a8532691a2
SHA256: 8f012a651f028560339bfaf0ce27aafcbf037cd13152af8230a3e7d94cd0d695
Section: Packaging
Priority: standard
Description: the advanced packaging tool from Debian
Depiction: https://apt.bingner.com/info/apt1.4/
Name: APT Strict
Tag: purpose::console, role::hacker
Package: apt1.4
Version: 1:0
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: apt
Filename: debs/1443.00/apt1.4_0_iphoneos-arm.deb
Size: 772
MD5sum: 57c714bd1463bf9d7fcd9e4b9cee55db
SHA1: 5ace7b6fb0ff569e257ad209a6c907b5aac52478
SHA256: a45a0f3d9e5e1f08b52814c4633ce971a912f20ef47e7637184dcc2f54305659
Section: Packaging
Priority: standard
Description: the advanced packaging tool from Debian
Depiction: https://apt.bingner.com/info/apt1.4/
Name: APT 1.4 Transitional
Tag: purpose::console, role::hacker
Package: apt7
Version: 1:0
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: apt1.4
Filename: debs/1443.00/apt7_1:0_iphoneos-arm.deb
Size: 604
MD5sum: 86ffb0e8e237830d35de073ac4b5b027
SHA1: eaaf1153f126fbe975d17e7259a97cfaab14a2a5
SHA256: 8d15fd2c51fdadf9b184c12afe30834fb9058943de00210f30c68aaf86b08f20
Section: Packaging
Priority: standard
Description: the advanced packaging tool from Debian
Name: APT 0.7 Transitional
Tag: purpose::console, role::hacker
Package: apt7
Version: 1:0-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: apt1.4
Conflicts: apt7-key
Filename: debs/1443.00/apt7_1:0-1_iphoneos-arm.deb
Size: 618
MD5sum: d081e2f189107b2179cf84e26b367d9b
SHA1: 7059168551ab6099cbcc267d52de613348e1d427
SHA256: 4974a6e9c50a372b91011bcad944cc83decfac06a87f0340b020d1fdc5d35f79
Section: Packaging
Priority: standard
Description: the advanced packaging tool from Debian
Name: APT 0.7 Transitional
Tag: purpose::console, role::hacker
Package: apt7
Version: 1:0-2
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: apt1.4
Filename: debs/1443.00/apt7_1:0-2_iphoneos-arm.deb
Size: 862
MD5sum: a4a6cd5f40da79835ff2d61acb4bf7ab
SHA1: 0b4b97912b9877b248d43121831fcfed7e6b715e
SHA256: d5277bbf3bc95881d9e078965a48edc5b56e033c54bcafa3909d5656315c9cdb
Section: Packaging
Priority: standard
Description: the advanced packaging tool from Debian
Name: APT 0.7 Transitional
Tag: purpose::console, role::hacker
Package: apt7-key
Version: 1:0
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Depends: apt-key
Filename: debs/1443.00/apt7-key_1:0_iphoneos-arm.deb
Size: 590
MD5sum: d53e3e18db2d0149200b237d0c384ab3
SHA1: 45660981826693896e8801ec2a52a28bd99cc68b
SHA256: 4e1ffc43ce5cf323a48729f0d2adb5e453ee8915723fce8f04875de2ddf3fdb9
Section: Packaging
Priority: optional
Description: the advanced packaging library from Debian
Name: APT 0.7 Transitional (apt-key)
Tag: purpose::console, role::hacker
Package: apt7-lib
Version: 1:0
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Depends: libapt
Filename: debs/1443.00/apt7-lib_1:0_iphoneos-arm.deb
Size: 590
MD5sum: 5a8ce27956eac5be6621d628238cccae
SHA1: a9839320d44d799d011e612224a2ced86b07e667
SHA256: d25144856778dba7d3574f4a50bddaa6c89147553cb71e75f883defa893c204f
Section: Packaging
Priority: optional
Description: the advanced packaging library from Debian
Name: APT 0.7 Transitional (lib)
Tag: purpose::library, role::developer
Package: aptitude
Version: 0.8.10-2
Architecture: iphoneos-arm
Maintainer: Jay Freeman (saurik) <[email protected]>
Installed-Size: 9224
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: boost, cwidget, gettext, libapt, librpmatch, libsigc++, libxapian, ncurses
Filename: debs/1443.00/aptitude_0.8.10-2_iphoneos-arm.deb
Size: 1061998
MD5sum: 3d1efbab22536aa0a8b5234cceda21db
SHA1: 38672df0128a938c30c0989730bc401d4b905c1b
SHA256: 3ea8adb629713b679ce903e7cac43bea7a01c46b02b1c47d74fdd5a6d351bf13
Section: Packaging
Priority: optional
Description: advanced command-line APT frontend
Depiction: https://apt.bingner.com/info/aptitude/
Name: Aptitude
Tag: purpose::console, role::hacker
Package: aria2
Version: 1.34.0-1
Architecture: iphoneos-arm
Maintainer: Mac C. <[email protected]>
Installed-Size: 6608
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: gettext, libc-ares2, libgmp10, libssh2, libxml2
Filename: debs/1443.00/aria2_1.34.0-1_iphoneos-arm.deb
Size: 793534
MD5sum: 20245232d39f1caf41fff56dd3cfbb46
SHA1: e63cd1444c1973b362e52cff7672470805397b0a
SHA256: 1ec78210dd36cf950d16d4e697d506f30c2251b400da7fdf06d5ee2045f8c4d1
Section: Networking
Priority: optional
Homepage: https://aria2.github.io/
Description: Downloader with resuming and segmented downloading.
Depiction: https://apt.bingner.com/info/aria2/
Name: Aria2
Tag: purpose::console, role::hacker
Package: aspell
Version: 0.60.6.1-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 5352
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/aspell_0.60.6.1-1_iphoneos-arm.deb
Size: 263748
MD5sum: e73d8905663ca757e748a0e4912358e5
SHA1: 4a55d3020e3b5ea418e5ed2c47347780a1826b6b
SHA256: 51bfb93e03cde1f9e6a6ca524e4ee5888ac0ecc6ab1ad6dd7521ac7b1d43895c
Section: Utilities
Priority: optional
Multi-Arch: foreign
Homepage: http://aspell.net/
Description: command line spell checking engine
Depiction: https://apt.bingner.com/info/aspell/
Name: Aspell
Tag: purpose::console, role::hacker
Package: autoconf
Version: 2.69-2
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 3696
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: m4
Filename: debs/1443.00/autoconf_2.69-2_iphoneos-arm.deb
Size: 272526
MD5sum: 17f1b4e13c236a46d77b3b676ca3d729
SHA1: 4bf6c550e3b34b8ff0dafa19f7549d30fb7c40da
SHA256: 29b0bb8fa95eb6fb949bd8daf9eb1b73b55e2bf69251a6299429a805d6b04987
Section: Development
Priority: optional
Homepage: http://www.gnu.org/software/autoconf/
Description: an intricate set of m4 macros
Depiction: https://apt.bingner.com/info/autoconf/
Name: Autoconf
Tag: purpose::console, role::hacker
Package: automake
Version: 1.16.1-3
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 3120
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: autoconf
Filename: debs/1443.00/automake_1.16.1-3_iphoneos-arm.deb
Size: 316108
MD5sum: 9a07b80045a37342b3cb97fc17f65ed4
SHA1: 08226a470edbc9758e1edb4cef1c515b330f2a10
SHA256: 193e918f588229424ce44583ef90783e8ec175afaacaa29ee5d5c54dd579d5ef
Section: Development
Priority: optional
Homepage: http://www.gnu.org/software/automake/
Description: automatically generate verbose makefiles
Depiction: https://apt.bingner.com/info/automake/
Name: Automake
Tag: purpose::console, role::hacker
Package: autossh
Version: 1.4a-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 136
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: openssh
Filename: debs/1443.00/autossh_1.4a-1_iphoneos-arm.deb
Size: 10112
MD5sum: 94503244ca5e9720bce51702a6da43c5
SHA1: efb5f0901a22e7e7380c0a23e19ac28aa277ddd5
SHA256: 0a11e4d4e8fbc261dfd1b366768db6977a05e7270ab3d512bdf0f11a3396c630
Section: Networking
Priority: optional
Multi-Arch: foreign
Homepage: http://www.harding.motd.ca/autossh/
Description: continually reconnects an ssh session
Depiction: https://apt.bingner.com/info/autossh/
Name: Automatic SSH
Tag: purpose::daemon, role::hacker
Package: axel
Version: 2.17.2-1
Architecture: iphoneos-arm
Maintainer: Mac C. <[email protected]>
Installed-Size: 192
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libssl1.0
Filename: debs/1443.00/axel_2.17.2-1_iphoneos-arm.deb
Size: 22328
MD5sum: 13ad35b0fbebd27b95ea88caa1dbc7fd
SHA1: a559444f101ff5b329dcc9813f9319e5d1f445d0
SHA256: bb15503667cadb5c12db593c9ad5d6d4c4a9319db05181c1861e69eef9e813e4
Section: Networking
Priority: optional
Homepage: https://github.com/eribertomota/axel
Description: Light UNIX download accelerator
Depiction: https://apt.bingner.com/info/axel/
Name: Axel
Tag: purpose::console, role::hacker
Package: base
Version: 1-5
Architecture: iphoneos-arm
Essential: yes
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 8
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/base_1-5_iphoneos-arm.deb
Size: 1652
MD5sum: c0757c1c7591f3e4731c0754d3ff84d5
SHA1: 50d95c1fadac757b13b63b8efda966f7defef92e
SHA256: c87be43d8f157f46ad897334d31e1bd277a2f504106917a1ddd49197f5cd5f48
Section: System
Priority: required
Description: underlying system directory structure
Depiction: https://apt.bingner.com/info/base/
Name: Base Structure
Tag: purpose::backend, role::hacker
Package: bash
Version: 5.0.3-2
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 5368
Pre-Depends: readline (>= 8.0)
Depends: grep, ncurses, readline, sed
Filename: debs/1443.00/bash_5.0.3-2_iphoneos-arm.deb
Size: 480482
MD5sum: bfdb1d73a9e037063bbf43b5f4e05610
SHA1: b4d77a3fa909e054b05f0cfb3913d0b427485efb
SHA256: 078a0a6dc0619dc5db2cbb411a925ab5c08810279994714fd0343fc63f7d4072
Section: Terminal_Support
Priority: required
Homepage: http://www.gnu.org/software/bash/
Description: the best shell ever written by Brian Fox
Depiction: https://apt.bingner.com/info/bash/
Name: Bourne-Again SHell
Tag: purpose::console, role::hacker
Package: bash-completion
Version: 2.8-1
Architecture: iphoneos-arm
Maintainer: Mac C. <[email protected]>
Installed-Size: 5880
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/bash-completion_2.8-1_iphoneos-arm.deb
Size: 144450
MD5sum: 7600920ac683dac3fe8ab6eac52f0c86
SHA1: 67134d83aed4b729564b05c9c029ae59e18a0459
SHA256: ce3331ecce97f07c2f118f9ecd433bdae975dfcf9db5893afd2a8174ebc16bc8
Section: Terminal_Support
Priority: standard
Description: Programmable completion for Bash 4.1+
Depiction: https://apt.bingner.com/info/bash-completion/
Name: Bash Completion
Tag: purpose::console, role::hacker
Package: basic-cmds
Version: 48-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 424
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/basic-cmds_48-1_iphoneos-arm.deb
Size: 10712
MD5sum: 21ada9a886c6e0aaf98f3b95dd595d4d
SHA1: 0c5a96633a0458d3f859bf88663905733d005a25
SHA256: 981e843c6aa46b14db74e99973e6156ed8defc80e3699ae5351d949c96594b98
Section: Utilities
Priority: important
Multi-Arch: foreign
Description: msg, uudecode, uuencode, write
Depiction: https://apt.bingner.com/info/basic-cmds/
Tag: purpose::console, role::hacker
Package: bc
Version: 1.06-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 448
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/bc_1.06-1_iphoneos-arm.deb
Size: 44648
MD5sum: a465f6494077d9365e9bbb6e61f323ee
SHA1: cde15dd18b6eb3cb43a062e94c6550a1e0213fba
SHA256: 891513812c7ad6a3d387b55407b7277db0197cd3499880414cc945193bf178a4
Section: Utilities
Priority: important
Multi-Arch: foreign
Homepage: http://www.gnu.org/software/bc/
Description: arbitrary precision console calculator
Depiction: https://apt.bingner.com/info/bc/
Tag: purpose::console, role::hacker
Package: berkeleydb
Version: 6.2.32-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 5520
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/berkeleydb_6.2.32-1_iphoneos-arm.deb
Size: 690482
MD5sum: 14e0d10e443029d9b5c7451aacf7e54a
SHA1: d1be52abda12fca14eeb9dd58dd01cdd0a15204b
SHA256: 3d7298c6d493bd5e338ead1dcf8b1e3ca8e339d8b02e074ea040cb9b326a30b2
Section: Data_Storage
Priority: standard
Homepage: http://www.oracle.com/technology/products/berkeley-db/index.html
Description: Oracle's embeddable database engine
Depiction: https://apt.bingner.com/info/berkeleydb/
Name: Berkeley DB
Tag: purpose::library, role::developer
Package: bind
Version: 9.11.5-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 174032
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libssl1.0, readline
Filename: debs/1443.00/bind_9.11.5-1_iphoneos-arm.deb
Size: 6357666
MD5sum: 2a6e60e04dcebb77ad53a860fac55047
SHA1: 163163503aadf884ea1b9a3e96fa9b26e89ac59d
SHA256: b995ebda2371b7fff273a54d142cef45c0122cb89627f57b0b2dfdc96dc4ffc5
Section: Networking
Priority: important
Homepage: http://www.isc.org/products/BIND/
Description: the standard DNS server used by millions
Depiction: https://apt.bingner.com/info/bind/
Name: BIND DNS Server
Tag: purpose::console, purpose::daemon, role::hacker
Package: bison
Version: 3.0.5-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 2008
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/bison_3.0.5-1_iphoneos-arm.deb
Size: 237424
MD5sum: 25286637904f7e13caaf497f17e88fab
SHA1: b30867764cb83873a46c4cfb2aa5130ae335c1bd
SHA256: 0774f9c59b3befb9bd08790ed15569deb069ccb500bbc2a7efedd11d8abe3b84
Section: Development
Priority: standard
Multi-Arch: foreign
Homepage: http://www.gnu.org/software/bison/
Description: GNU parser generator derived from Yacc
Depiction: https://apt.bingner.com/info/bison/
Name: Bison
Tag: purpose::console, role::developer
Package: bitchx
Version: 1.2.1-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 11728
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: ncurses
Filename: debs/1443.00/bitchx_1.2.1-1_iphoneos-arm.deb
Size: 1073480
MD5sum: b9397167b1a4c9b980851607b9444d00
SHA1: 1d7d02092fd1fbc6336686c8254b332651002e77
SHA256: 9ca195933d6a2bc9b249d5761db467a7e5b7ecb4910713cc933ed749ce3d85a7
Section: Networking
Priority: optional
Homepage: http://www.bitchx.com/
Description: incredibly common IRC attack client
Depiction: https://apt.bingner.com/info/bitchx/
Name: BitchX
Tag: purpose::console, role::hacker
Package: boost
Version: 1.68.0-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 322872
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/boost_1.68.0-1_iphoneos-arm.deb
Size: 9447002
MD5sum: 7704b2a7fb9d3f3a541c0a7a3f0fc8dd
SHA1: 6c006953ecd832fee3c6a2fbfb218173e2fc079e
SHA256: 709c5ecc1622851e784025de21ecb9bcab34d65a1de21664801b33318a9ae7be
Section: Development
Priority: optional
Homepage: http://www.boost.org/
Description: soon-to-be-standardized C++ class library
Depiction: https://apt.bingner.com/info/boost/
Name: Boost
Tag: purpose::library, role::developer
Package: bootstrap-cmds
Version: 60-2
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 592
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: cc
Filename: debs/1443.00/bootstrap-cmds_60-2_iphoneos-arm.deb
Size: 71408
MD5sum: d1fdd4762f959fa2ae0b260f2cb78843
SHA1: 254048a0038e4747a66173c0901c0c3be20a1fe1
SHA256: 71a74723ba76731f5db8b8e9eab8662d27ae65e7cb6fdbdd7eff9273e31efaf3
Section: Development
Priority: optional
Description: Mach interface and stub generator
Depiction: https://apt.bingner.com/info/bootstrap-cmds/
Name: Bootstrap Commands
Tag: purpose::console, role::developer
Package: bzip2
Version: 1.0.6-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 408
Filename: debs/1443.00/bzip2_1.0.6-1_iphoneos-arm.deb
Size: 53070
MD5sum: fb8ad9bad8b3bd8c1f3c1fad3cd50901
SHA1: af8b99bde02484cc33b54770ba570dc03533d094
SHA256: fced8ef4f004deccb7724c5ddb2703604aa09f39c6f7bf707270c3dcef13e78a
Section: Archiving
Priority: important
Homepage: http://www.bzip.org/
Description: compression that's slightly better than gzip
Depiction: https://apt.bingner.com/info/bzip2/
Tag: purpose::console, role::hacker
Package: ca-certificates
Version: 0.0.1-1
Architecture: all
Maintainer: Sam Bingner
Depends: firmware (>= 2.0)
Conflicts: org.thebigboss.cacerts
Replaces: org.thebigboss.cacerts
Provides: org.thebigboss.cacerts
Filename: debs/1443.00/ca-certificates_0-1_all.deb
Size: 134436
MD5sum: 5d4744afecd3bd84d9921bfa8755f70e
SHA1: 2887452fc6e3007ead9053e9afbcd5d6dc3ebf99
SHA256: 1c90511fd002151b274c28e50adb8654ecf210a305a891557dcd7d235dd95cf1
Section: Utilities
Priority: optional
Multi-Arch: foreign
Description: CA certs for curl, wget, git.
Tag: purpose::console, role::hacker
Depiction: https://apt.bingner.com/info/ca-certificates/
Name: CA Certs
Package: ca-certificates
Version: 0.0.2
Architecture: all
Maintainer: Sam Bingner
Depends: firmware (>= 2.0)
Conflicts: org.thebigboss.cacerts, openssl (<< 1.0.2r)
Replaces: org.thebigboss.cacerts
Provides: org.thebigboss.cacerts
Filename: debs/1443.00/ca-certificates_0.0.2_all.deb
Size: 125710
MD5sum: c9e280b321aba40459c988eac9625957
SHA1: 878696ce1037a53c58d3d75dfcf39507a942f18c
SHA256: 29d3d0d5b09686f117a0402796f3f99224e30168e44178a49a78f504f3c84ba2
Section: Utilities
Priority: optional
Multi-Arch: foreign
Description: CA certs for curl, wget, git.
Tag: purpose::console, role::hacker
Depiction: https://apt.bingner.com/info/ca-certificates/
Name: CA Certs
Package: clang
Version: 10.0.0~svn-20191106+dcaf932-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 48
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: clang-10, libc++-dev
Provides: c++-compiler, c-compiler, objc-compiler
Filename: debs/1443.00/clang_10.0.0~svn-20191106+dcaf932-1_iphoneos-arm.deb
Size: 1086
MD5sum: 48266d588b6432cd2de03caaa652aed7
SHA1: d54a56151a4defc59a33556135f882070215c388
SHA256: 10fd895e4a2a31ef16f5d0c23be99795279002b95d8298fe13932163477c034f
Section: Development
Priority: optional
Homepage: https://www.llvm.org/
Description: C, C++ and Objective-C compiler
Depiction: https://apt.bingner.com/info/clang/
Tag: purpose::console, role::developer
Package: clang-10
Version: 10.0.0~svn-20191106+dcaf932-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 472
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libllvm10, libclang-cpp10, ld64, libclang-common-10-dev
Filename: debs/1443.00/clang-10_10.0.0~svn-20191106+dcaf932-1_iphoneos-arm.deb
Size: 43866
MD5sum: 4c5ac1b56636f99fd03f8a7a675b94c2
SHA1: 1012a275f8119753d91cb0868a532375983f723f
SHA256: 03d0519fa1fcadca8375d6a44a11eb7d23aa69e6fbeac9d5cacf6297c0fcdeca
Section: Development
Priority: optional
Homepage: https://www.llvm.org/
Description: C, C++ and Objective-C compiler
Depiction: https://apt.bingner.com/info/clang-10/
Tag: purpose::console, role::developer
Package: class-dump
Version: 3.1.2-x-1.0.1-1
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 592
Pre-Depends: dpkg (>= 1.14.25-8)
Filename: debs/1443.00/class-dump_3.1.2-x-1.0.1-1_iphoneos-arm.deb
Size: 58574
MD5sum: 72490473d9bc9af20b2ba75bca69adbc
SHA1: 3531a6eadeaf4d78cda71baea0f4c9108e6948ba
SHA256: 3e2f341509b1ea5a092fe7999771856ade9b246b788d48c35c2a6ac54081711e
Section: Development
Priority: optional
Multi-Arch: foreign
Homepage: http://iphone.freecoder.org/classdump_en.html
Description: reverse engineer Objective-C headers
Depiction: https://apt.bingner.com/info/class-dump/
Name: Class Dump
Tag: purpose::console, role::developer
Package: cmake
Version: 3.14.2-1
Architecture: iphoneos-arm
Maintainer: Mac C. <[email protected]>
Installed-Size: 87488
Pre-Depends: dpkg (>= 1.14.25-8)
Depends: libssl1.0, ncurses
Filename: debs/1443.00/cmake_3.14.2-1_iphoneos-arm.deb
Size: 6353200
MD5sum: 4d3db0f06f2d90cf79fbb3c9fca10ff9
SHA1: 8b7f0e594118e267a4d586d77c8a72d840079610
SHA256: 123c193b246fe7ae86f42410924ae3c0be7d3657eab3106b177643933060ce39
Section: Development
Priority: optional
Description: Cross-platfrom make
Depiction: https://apt.bingner.com/info/cmake/
Name: CMake
Tag: purpose::console, role::developer
Package: com.bingner.plutil
Version: 0.0.4
Architecture: iphoneos-arm
Maintainer: Samuel Bingner
Installed-Size: 256
Depends: firmware (>=2.0)
Conflicts: com.ericasadun.utilities
Filename: debs/1443.00/com.bingner.plutil_0.0.4_iphoneos-arm.deb
Size: 47952
MD5sum: 17a5d6802e0586ad1d458188b4c3b602
SHA1: a21ef5ac3b9fa0bacf47c5b53b4f0429b989d068
SHA256: faae988f28f6af7dc361b0742e68b2309d2b3c10a9bb25548a49e4ed6abc6a05
Section: System
Multi-Arch: foreign
Description: plutil as from erica sadun
Tag: role::hacker
Author: Samuel Bingner
Name: plutil
Package: com.bingner.plutil
Version: 0.1.0
Architecture: iphoneos-arm
Maintainer: Samuel Bingner
Installed-Size: 256
Depends: firmware (>=2.0)
Conflicts: com.ericasadun.utilities
Filename: debs/1443.00/com.bingner.plutil_0.1.0_iphoneos-arm.deb
Size: 48220
MD5sum: 1b53bd21bc041aa972e776c45c506afc
SHA1: 554f77bfd67b35c5f60c0e8f8ff71758a50c36a1
SHA256: bcf510275fd89e45832a12e1b0bf54d15b3d16ea2227ae0b5f5af9bfeb6ed0a4
Section: System
Multi-Arch: foreign
Description: plutil as from erica sadun
Tag: role::hacker
Author: Samuel Bingner
Name: plutil
Package: com.bingner.plutil
Version: 0.2.0
Architecture: iphoneos-arm
Maintainer: Samuel Bingner
Installed-Size: 144
Depends: firmware (>=2.0)
Conflicts: com.ericasadun.utilities
Filename: debs/1443.00/com.bingner.plutil_0.2.0_iphoneos-arm.deb
Size: 27168
MD5sum: e4bb99b049f5b4fb47aec6f01bd9cd8a
SHA1: 4167306101f0b9ff1ba7ebb1b3ce960e2b9e53d8
SHA256: 4211bc05a6b721b10f6106924f68f0c68ffb9ece7c963053eb2d6538b5aa9faf
Section: System
Multi-Arch: foreign
Description: plutil as from erica sadun
Tag: role::hacker
Author: Samuel Bingner
Name: plutil
Package: com.bingner.plutil
Version: 0.2.1
Architecture: iphoneos-arm
Maintainer: Samuel Bingner
Installed-Size: 144
Depends: firmware (>=2.0)
Conflicts: com.ericasadun.utilities
Filename: debs/1443.00/com.bingner.plutil_0.2.1_iphoneos-arm.deb
Size: 27146
MD5sum: dbe356a058196f723918a342470f0106
SHA1: 7bbdbc3b585fdc37b268156301e3da8c9a02b844
SHA256: de81533ef2277948eb1b381f75c71fc92f0f47ed9e9a05139241d4370a7ac7b4
Section: System
Multi-Arch: foreign
Description: plutil as from erica sadun
Tag: role::hacker
Author: Samuel Bingner
Name: plutil
Package: com.bingner.snappy
Version: 1.1-1
Architecture: iphoneos-arm
Maintainer: Samuel Bingner
Installed-Size: 68
Filename: debs/1443.00/com.bingner.snappy_1.1-1_iphoneos-arm.deb
Size: 4868
MD5sum: ecc4981a7df7a7cf1a21a63ce67755c5
SHA1: b662fde1e2fd0dde8f076450af24b09af7b44585
SHA256: c399c7083425a7d275a7dfaa694974e59261e842ea263739fc58eed32a2eec48
Section: System
Description: A Tool for APFS Snapshot Management
Tag: role::hacker
Author: Samuel Bingner
Name: Snappy
Package: com.bingner.snappy
Version: 1.2
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 268
Depends: firmware (>= 10.3)
Filename: debs/1443.00/com.bingner.snappy_1.2_iphoneos-arm.deb
Size: 10698
MD5sum: 6b412783a9d98082235f3f4f5fa1b729
SHA1: c1da33727b6708ce04fe0fd6148938b84be426ab
SHA256: 968f11d7d96b6f6fb11c75d6e26c30b7cebd1e9c76dcc3e00571485a2ad19c43
Section: System
Description: A Tool for APFS Snapshot Management
Tag: role::hacker
Author: Sam Bingner <[email protected]>
Name: Snappy
Package: com.bingner.snappy
Version: 1.3.0
Architecture: iphoneos-arm
Maintainer: Sam Bingner <[email protected]>
Installed-Size: 304
Depends: firmware (>= 10.3)
Filename: debs/1443.00/com.bingner.snappy_1.3.0_iphoneos-arm.deb
Size: 15438
MD5sum: 384a7731ce45f431536afe83940d4e9e
SHA1: 403589739e27956789d403d228e2128bd8f6ef41
SHA256: 7e9db38dd7959de4484ee686c4cf8e31c47362c43865ae2e0466af190a49d484
Section: System
Description: A Tool for APFS Snapshot Management
Tag: role::hacker
Author: Sam Bingner <[email protected]>
Name: Snappy
Package: com.bingner.spawn
Version: 0.1-1
Architecture: iphoneos-arm
Maintainer: Samuel Bingner
Installed-Size: 132
Filename: debs/1443.00/com.bingner.spawn_0.1-1_iphoneos-arm.deb
Size: 4978
MD5sum: cea579f1f0096571a8d5d9d1fcfc4127
SHA1: 70c552c067b21aa2ec3a03d7d8e9b4391bf96344
SHA256: 78e5779a1c67f4d1e59d0b339fb05cbd4bee782319849d09dab4e8b43ac6c224
Section: System
Description: A tool to call jbd to platformize a binary while executing it
Tag: role::hacker
Author: Samuel Bingner
Name: spawn
Package: com.ex.substitute
Version: 0.0.13
Architecture: iphoneos-arm
Maintainer: Sam Bingner
Installed-Size: 640
Pre-Depends: coreutils-bin, dpkg (>=1.17.11)
Depends: firmware (>= 8.0), cy+cpu.arm64, com.saurik.substrate.safemode, mobilesubstrate (=0.9.7033+dummy), uikittools (>=1.1.13-4), darwintools
Conflicts: com.ex.libsubstitute, org.coolstar.tweakinject, science.xnu.substitute
Replaces: com.ex.libsubstitute, org.coolstar.tweakinject
Provides: com.ex.libsubstitute, mobilesubstrate
Filename: debs/1443.00/com.ex.substitute_0.0.13_iphoneos-arm.deb
Size: 41700
MD5sum: bde1c679eda881d2dad2d314ade7c181
SHA1: 506a96ef1c72ed67544919400676f325d5d1b428
SHA256: 1e093c144e33bce9afa4eb5d20b6e72b1e5ffeb63f1e79815a3609c982ffe65a
Section: System
Priority: optional
Description: Substrate substitute for code substitution
Author: comex <[email protected]>
Depiction: https://apt.bingner.com/info/com.ex.substitute/
Name: Substitute
Package: com.ex.substitute
Version: 0.0.14
Architecture: iphoneos-arm
Maintainer: Sam Bingner
Installed-Size: 752
Pre-Depends: coreutils-bin, dpkg (>=1.17.11)
Depends: firmware (>= 8.0), cy+cpu.arm64, com.saurik.substrate.safemode, mobilesubstrate (=0.9.7033+dummy), uikittools (>=1.1.13-4), darwintools
Conflicts: com.ex.libsubstitute, org.coolstar.tweakinject, science.xnu.substitute
Replaces: com.ex.libsubstitute, org.coolstar.tweakinject
Provides: com.ex.libsubstitute, mobilesubstrate
Filename: debs/1443.00/com.ex.substitute_0.0.14_iphoneos-arm.deb
Size: 44318
MD5sum: 1f3954c4256e3f5cd659a629f03e6832
SHA1: 636147f3b6956023541b08b8798172a51fd8fdaa
SHA256: 57bd57d23067cccfc24219fdd92c984e6c19567daf62a922afb967c38b5da19e
Section: System
Priority: optional
Description: Substrate substitute for code substitution
Author: comex <[email protected]>
Depiction: https://apt.bingner.com/info/com.ex.substitute/
Name: Substitute
Package: com.ex.substitute
Version: 0.0.15
Architecture: iphoneos-arm
Maintainer: Sam Bingner
Installed-Size: 724
Pre-Depends: coreutils-bin, dpkg (>=1.17.11)
Depends: firmware (>= 8.0), cy+cpu.arm64, com.saurik.substrate.safemode, mobilesubstrate (=0.9.7033+dummy), uikittools (>=1.1.13-4), darwintools
Conflicts: com.ex.libsubstitute, org.coolstar.tweakinject, science.xnu.substitute
Replaces: com.ex.libsubstitute, org.coolstar.tweakinject
Provides: com.ex.libsubstitute, mobilesubstrate
Filename: debs/1443.00/com.ex.substitute_0.0.15_iphoneos-arm.deb
Size: 43366
MD5sum: 2bbcfb146965c15a0b58881b2f2d8547
SHA1: 846d439b89291048d37b41f594551b1dad2e7668
SHA256: 1ac4eb9e00f605ee999885ac95acfab92a6ef73c7748f2daa8a79cd7ea4d067d
Section: System
Priority: optional
Description: Substrate substitute for code substitution
Author: comex <[email protected]>
Depiction: https://apt.bingner.com/info/com.ex.substitute/
Name: Substitute