-
Notifications
You must be signed in to change notification settings - Fork 3
/
ChangeLog
4097 lines (2756 loc) · 129 KB
/
ChangeLog
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
commit 2b52159bf370a8eb6e3d2e9223e82c86dc23b4b9
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Appearance arrangements.
commit 63384015de78c0b1af218007cdeec026c9f4a61a
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Where is that forgetten component?
* When indexing which source packages were not included with the PartOf information and the component.xml file in the parent folder did not been known. (We were aware that there were such packages, but didn't know which.) This module has been fixed in order to determine.
commit de97340fd661c04ac5ae79f441a8098e455735d5
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Transactional history manager of inary have been fixed.
* There was something that tried to create by changing the print function's stdout and stdin piping. this block that directs outputs to "less" was inaccurate. When the process is over, the pipe does not close, so tty crashes. to prevent this, instead of printing data with print in the function, I chose to list and print the data with pipe.
* If there is no package in the takeback process, the program was closing. whether this happened because there was no error or did not understand the problem. This error has been fixed as of the moment.
commit 0fdb747f14ebb7903be0a7545ac3894c6a38cea6
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fixed output function.
commit ca112f5ee23ee53d58aeedc1e77fa0317f3c83e3
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Gözümden kaçmış.
commit 8c5effd75f590aae898b67567ac5593545563a4b
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
added 32bit-dbginfo to same place with other packages
commit f7a9fbc5b8af2a3da8698868bcbf1519ae71188a
Merge: 9b38ed08 14725103
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'feature/testSuit' into develop
commit 9b38ed0878abb2181a9d33ff382d284c98b787ff
Merge: a06a1a25 c1d28350
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'feature/scripts' into develop
commit a06a1a259cba870c29e73983943d2aad32a564f9
Merge: abfecc49 505d0a78
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'feature/documentation' into develop
commit abfecc496c2c858357b6d3c42ed9cf8391912567
Merge: e6057567 6bf4fc00
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'feature/cleanupCodes' into develop
commit 14725103f75ec80a3cfac332c5bd743ef8857181
Merge: 25786468 e6057567
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/testSuit
commit 6bf4fc005fd9328cd3625d80673ee8cc019008fa
Merge: 6300ba20 e6057567
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/cleanupCodes
commit e605756733653cb2d3d26d9e658d4aa48a9d0707
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Çeşitli hata mesajlarında düzeltmeler ve hızda iyileştirmeler.
* Optimizasyon amacı ile paket listelerini optimize ettim.
* arm config dosyalarına ufak dokunuşlar.
* Anlamsız bir hata mesajı ve eksik uyarılar için bakıldı.
commit 0e80e0c159c9c4b31cb141c21eb89dd544f6541d
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
xterm_title fixed.
commit a5c7003d9609e298e33671680278191e0683d8b5
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
stdout üzerine ham veri yazmanın tehlikesi elle test edildi onaylandı.
Yavaşlamaya sebep olan kısım fonksiyon içerisinde telafi edildi. ayrıca lmsg ile mesajın uzunluğunun alınıp ona göre mavi renki mesaj basılması terminale üst üste ham veri girişine sebep veriyordu. şimdi %100 olmadan mavi basmayacak.
* JuiceSSH ile denendi uzak sunucudan veri çekerken sıkıntı yaşanmıyor.
* 85 X 56 terminalde denendi. Taşma yapmadan yazılar kayabiliyor. Zaten daha küçük ekran kullanan varsa helal olsun.
commit 26a41bec15636b0e54d8f08ba01efad5c48b4b4f
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Birkaç adet düzenleme yapıldı.
inarytools için eksik olan bir detay eklendi. cmaketools emul paketleme sırasında oluşan hata giderildi. Sadece sulin için /usr/lib/sulin default prefix yapıldı.
commit e93a3130a17352dac6a709210df8f792fb59e9a3
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fetcher biraz daha okunaklı ve anlaşılır hale getirildi.
--no-color için çıktıda düzenleme yapıldı. kodda deprecated % ile yapılan kullanımlar değiştirildi.
commit 5f39c7575e3e18e0b01d41fbb9018ee632d85fc9
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Building method for RFP packages have been added.
RFP safety switch have been added. RFP packages will just be installed with inary em.
commit 31a69e2cba4ca233b2b038adac4d832bcde8344e
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Runtime yavaşlığı giderildi.
commit 17b731d52a57beb334f19b0ad5ff869a569220d0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fetcher bugu düzeltildi.
commit 2d11018e1f14a59d976873d8dbc07b11d6c95a78
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
kerneltools modified as well.
commit aee2685a771785aee8a2ca88f54975bbe70f6360
Author: ali <hebelehübele>
Commit: Suleyman Poyraz <[email protected]>
Lanetolası bugların amına koydum
commit 939c212d8026fcdffaf8d94a56d3b64ccb2d955f
Author: ali <hebelehübele>
Commit: Suleyman Poyraz <[email protected]>
renklendirilmiş indirme çubuğu eklendi
commit fc71d5c3aa80c2f97312c468a2811dd37c875275
Author: Ali Rıza KESKİN <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Create inary.conf-aarch64
commit 505d0a7809532885ea5c3d4e37fad30a2a660d66
Merge: eb78fa1b 8aa63018
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/documentation
commit c1d2835068b0b5e6421b8577361027340a429c17
Merge: 095df997 8aa63018
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/scripts
commit 8aa63018a4741ad128a28a22f31e76bc5599bc72
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Çeşitli hata mesajlarında düzeltmeler ve hızda iyileştirmeler.
* Optimizasyon amacı ile paket listelerini optimize ettim.
* arm config dosyalarına ufak dokunuşlar.
* Anlamsız bir hata mesajı ve eksik uyarılar için bakıldı.
commit 095df9979414152c5d070c1406b626af8cd54726
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
UPdated version bump script
commit d8ab3722e0d7f7acdead5a7b5561901a09079f8f
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
xterm_title fixed.
commit 9d13f174aa367c02c6725affc8424bb31c413607
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
stdout üzerine ham veri yazmanın tehlikesi elle test edildi onaylandı.
Yavaşlamaya sebep olan kısım fonksiyon içerisinde telafi edildi. ayrıca lmsg ile mesajın uzunluğunun alınıp ona göre mavi renki mesaj basılması terminale üst üste ham veri girişine sebep veriyordu. şimdi %100 olmadan mavi basmayacak.
* JuiceSSH ile denendi uzak sunucudan veri çekerken sıkıntı yaşanmıyor.
* 85 X 56 terminalde denendi. Taşma yapmadan yazılar kayabiliyor. Zaten daha küçük ekran kullanan varsa helal olsun.
commit a2fa4ecabb4c85136d6c7ceffa97379030269993
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Birkaç adet düzenleme yapıldı.
inarytools için eksik olan bir detay eklendi. cmaketools emul paketleme sırasında oluşan hata giderildi. Sadece sulin için /usr/lib/sulin default prefix yapıldı.
commit 26966441eb021a6c997aae07136b6063c845a07c
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fetcher biraz daha okunaklı ve anlaşılır hale getirildi.
--no-color için çıktıda düzenleme yapıldı. kodda deprecated % ile yapılan kullanımlar değiştirildi.
commit 7c5ea57611ded790d40bab25208d8bd34f414a0e
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Building method for RFP packages have been added.
RFP safety switch have been added. RFP packages will just be installed with inary em.
commit 491a8c4878764222a2c621915cde28daa328ef99
Merge: 1de7beaf d867ced2
Author: Suleyman Poyraz <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #4 from Zaryob/master
Yavaşlama sorunu giderildi.
commit d867ced2f3876e8244fac41c29fb9b2754509083
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Runtime yavaşlığı giderildi.
commit 1de7beafaf0a423a4087e8d0a82e793d16eb6fe8
Merge: 89ca000f 4e19b08e
Author: Suleyman Poyraz <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #3 from Zaryob/master
Fetcher bugu düzeltildi
commit 4e19b08e52e4354619acf14b4324e16073ecd513
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fetcher bugu düzeltildi.
commit 89ca000fb6f6dba4c8a6a1dd633ec2f42c1c20c9
Merge: b293c1e2 49fbe0c7
Author: Suleyman Poyraz <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #2 from SulinOS/develop
develop içerisindeki değişimleri depoya basma talebi
commit b293c1e2548dd2a533756cbd44e68c26c369b5eb
Merge: 9e85369a 81312885
Author: Suleyman Poyraz <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #1 from paledega/master
Ali Rıza Keskin: Renkli indirme çubuğu eklendi. (Sülo kusura bakma knk o fonksiyon başka türlü yazılmıyo)
Zaryob: mevcut değişimler localde incelenmek üzere merge edilecektir.
commit 49fbe0c78993605c30026eea8e308318024ef2f2
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
kerneltools modified as well.
commit ed2e5057f6e8cbdc777332930f7ea60aa746e179
Merge: e6f0d7e1 9e85369a
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge remote-tracking branch 'github_mirror/master' into develop
aarch64 config file by ali rıza keskin
commit 813128854855ba0ccaeb85a517a2df76c93ea43c
Author: ali <hebelehübele>
Commit: ali <hebelehübele>
Lanetolası bugların amına koydum
commit ab319fcdca27a4eab4d04b24cf2c34bf3e5fc870
Author: ali <hebelehübele>
Commit: ali <hebelehübele>
renklendirilmiş indirme çubuğu eklendi
commit eb78fa1baf269e3212135878d5e6f8c9bc61be13
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Benden bu kadar.
Daha iyisini yapmayı bilen varsa buyursun.
commit 9e85369a3a399108368a0b75a9e1a8f39f22da85
Author: Ali Rıza KESKİN <[email protected]>
Commit: GitHub <[email protected]>
Create inary.conf-aarch64
commit 43af94d675cc9ec5fb203dada44dd47ebc370cbe
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
A problem was happened so I have added documentation again
Documentations added again. (When them have been removed???)
commit 54419b198b5389d87d1a5a194c4aa4693f06be6d
Merge: ecb21166 e6f0d7e1
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/documentation
commit e6f0d7e1e1cc018dffa31a46b0ea4e81176078a7
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fixed mesontools installing error and fetcher
commit 5d822a6f2f58f09d61f862786ac027340ea58b75
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Full automatized emul32 packages with mesontools.
Mesontools ile yapılan her paketin emul32 hali tam otomatize oluşturulabiliyor. ek olarak actions.py betiğinde emul32 için düzenlemelere artık gerek yoktur.
commit 4ec4f6934b4050f747e5c38c62a396795e528324
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Ssl stabilization(there are one more step)
To block m-i-m attack we need to add somthing which is necessary for inary.
commit 9ea59daaa7696f217c0363e2d32ba4e061ef4156
Merge: 0e6af12d 3fdc719c
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'master' into develop
commit 0e6af12da2106d7c2f04e2a79a8d9ae501cb7c56
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Meson derlemesi sırasında oluşan hata düzeltildi.
commit 3fdc719cc59cdfba0f3963511b672bd80644b7fe
Merge: ec54c2dd 4ad47e52
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop'
commit 4ad47e52bc0f82740478aff5d848b3d85cd50d6f
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fixed broken symlink error of magic
Broken symlinks will be informed to developer. It wont cause an interrupt.
commit ec54c2dd680f4792864b96351c604d1ec80dd5fd
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fixed error when installing inary from file
If an inary have being installed form file, the directory names should be cleaned to get "just" name of package.
commit c1a4b3dd224c4363848f2b55c7ab096315ccce0c
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Makefile.PL not fond error.
Recursive Build.PL expression is changed as Makefile.PL to compile some perl sources which have named its build script as Makefile.PL
commit f6b5ee66173d6bffe6669ad38d6960575e1edc35
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fixed "Package "x" not installed." Error
When trying to install an package from .inary file it may couse problem. it is a quick fixed error ;)
commit a8d2191232e5d93f893c5e8611e90c474f28b7d3
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Removed recursive messages
recursive messages in scomiface and build.
commit 714299b6b77bd71ecfc37b7ae106a48e87c81110
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Added header IsA
If a devel package contains header files, it will be specified as "header"
commit 033af5510b504e235cc5e7eefba425aa9678adf0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Ufak bir fix.
commit 8b284fff46b57a795c9a567c4637cb9cc836f1b8
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fallbaking, mirroring ve local dosya çekme fetchere aktarıldı.
commit 25786468a9af7bc8c536f12a7519a2464873df1b
Merge: 15a807fe 6300ba20
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/testSuit
commit 6d95edc4e2b8d5b3ff3a741385801b791e11a913
Merge: 8f5baa7e 6300ba20
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/scripts
commit ecb21166943b7fc5fb133ca8e781d4cdc448a4d4
Merge: 6d2ac27c 6300ba20
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/documentation
commit 6300ba202da2a7d19e9f40963a8a7b6cf57f9ec0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Auto stash before revert of "Lisans Güncellendi:"
commit 6d2ac27cac9e11817e8c5b458d91c2e61aa4c19d
Merge: f26b0dad f2c0e301
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/documentation
commit 8f5baa7ec4ce602eca3eb7de8799369b094fa435
Merge: 8d6fb8d3 f2c0e301
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/scripts
commit 15a807fe23edf1a8c6247fe939a69b4ffd65dd90
Merge: 07b1dd1f f2c0e301
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/testSuit
commit f2c0e30196c774a03778bcab75d4c1996504d1c8
Merge: ce268ef9 a0deafd9
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'feature/translations' into develop
commit ce268ef91a25b6db447d3ee25c87428cf2957b28
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Ufak tefek işler
GPG key kontrolü için config dosyasına parametre eklendi. pycurl ile sourceforge üzerinden veri çekerken yaşanan sıkıntı giderildi. önceden değiştirilen ui fonksiyonlarının süper sınıfına eklenmemiş parametreler eklendi.
commit 07b1dd1fef4e632e852f835212e0cf71e5aeb678
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
yeni testler eklendi
Bu testler database için geliştrilmiş önceki testlerin revizesidir.
commit f9f21eaf1e976145062cf83b4349399783a00eef
Merge: fda8c28d 1e879d61
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/testSuit
commit a0deafd924178787c25af626508d96fe3c4c8638
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
[po2goo-trans] some of languages have been proceed
de, es, fr, it, nl, ru, sv, uk have been filled, az translations added.
commit fbf76bb0d8cc83e0ce2efda33a1ad85ab82d7f6f
Merge: 5e9e6c6e 1e879d61
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/translations
commit 1e879d61ef7010aaa57d7c39e2ae90701d53f681
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
metadata içerisinde Scom gereksinimi olmayan paketler:
Gereksiz yere içerisinde scom betiği bulunmasa bile paketlerin scomiface bağlantısı yapmaya çalışması bir problemdi ve kısa süreli olarak fixlenmiş idi. Şimdi ise bu hata düzeltildi. Geriye tek yapmam gereken scom dbus servisi çalışmıyor ise yapılan çağrıyı error içerisine çekmeyip pendings listesine atmak olacak bu da çocuk oyuncağı sayılır.
commit 5e9e6c6e650b844344fdfeb70846bca9139deb16
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Translations Updated
commit 82871bf4c2dfe7a1665fe2e8c057828d5fe2f1ad
Merge: 774099cc 83dbb2e8
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/translations
commit 8d6fb8d31c158da45f620f54274b12d52e1dead7
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Üç yeni araç daha eklendi
pspec2po: kaynak depodan adları güncellemek için.
revdep-rebuild
version-bump: spec dosyasının versiyonunu güncellemek için.
commit 12d9f96db99cf4350a6e00a5693d8f1fd5ecba57
Merge: 4a8f121d 946695ef
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'HEAD' into feature/scripts
commit 946695ef25e06c81a44a624c263bf9b6ba8a3c1f
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
İki yeni araç eklendi.
inary-sign.py: Depoları GPG imzası ile imzalamak için kullanılacak araç.
sync-licence: Portage paket yönetimine eklenen lisanslarla elimizdekileri güncelleyecek araç.
commit 4a8f121d789c344a614120472c80b480d512582d
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
İki yeni araç eklendi.
inary-sign.py: Depoları GPG imzası ile imzalamak için kullanılacak araç.
sync-licence: Portage paket yönetimine eklenen lisanslarla elimizdekileri güncelleyecek araç.
commit 83dbb2e88d23fe9a8ca375c3275d6b0efda9a5e0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Yeni komut "configure-manager"
Değişen config dosyalarının düzenlemesi bu şekilde basitçe yapılabiliyor.
commit c54ab6e2801ee7f475be7091cc2f8f2ba6b78133
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
inary indexleri GPG imzasıyla imzalanmadı ise paket sisteminin çakışması sorunu düzenlendi.
commit dbec3375a3ad4559df4351532cec8b1ede584aca
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
ctx.ui.choose fonksiyonunun hataları giderildi
Saçma sapan bir çıktı yapılanmasına sahipti. Düzeltildi.
commit f26b0dad04d3a80e9eade7ab83a7a81369f48530
Merge: 1ee66bba 3bfb8215
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/documentation
Conflicts of "ChangeLog" file fixed.
commit fda8c28d51f2e6a3ba30389eaf17ae8b17dd7824
Merge: 26d1667c 3bfb8215
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/testSuit
Conflicts of "ChangeLog" file fixed.
commit 774099cca133d4a6af1ebf5ba0172d06edc8ff68
Merge: 1ee66bba 3bfb8215
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/translations
Conflicts of "ChangeLog" file fixed.
commit 3bfb8215d94f1bb7e48dd898b6523bf530bc25ef
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
ChangeLog Updated
commit 26d1667c313deabce963e2b4e6ba3a363a6819ad
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Updated Changelog
commit f7c62773c8df832e08fb13c735fe2facddd14ad5
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Görünümsel değişiklikler
commit 1ee66bba766f37636deea544372f21a6c61d0089
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Updated ChangeLog
commit dfd83ae7f5428875d43588361f510aaabd3e7939
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Yeni dökümanlar eklendi
Eklenen komut dökümanları: bi bl dt em emup graph hs rdb
commit ca0fce8d3f856995f569d9ad6f15773de5783724
Merge: 777ed07a 3cd989ea
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/documentation
commit 3cd989ea694692fcdfbec2eec4b77b4946f81372
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Test Sonuçlarında bulunan hatalar düzeltildi
commit fc4b83a23fd0ee5ad1c42a5fb94ce8943eb83dea
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Bazı testler eklendi.
Eski testler arasından çalışan ve yeniden yazılmaya ihtiyaç duyulmayanlar eklendi
commit 777ed07a965ea258118d122727a7f785c0fc9827
Merge: b6897bda 58fe82d1
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merged translations and messages
commit 58fe82d1a7fbe0c39610c55ddc821276b1ac6ff7
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Updated Languages
commit 9bd5ca7a1e12273e65f15a2cced114cbd2e7cad3
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Türkçe dile desteği tamamen eklendi. Almanca için uğraşıldı.
İşte bildiğim kadar aklım aldığı kadar.
commit e85508a4ad839f3c4fab1ddd3acb1bd226417991
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Mesajlar düzenlendi.
Bazı çıktılar düzenlendi.
commit b6897bda3507a5c5795d18d99c7fd81b9f57d8a7
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Yeni Belgelendirmeler eklendi.
commit 57665a7c518e433f5845f00a37d08f5c5008ef22
Merge: 509e8c20 9a8b637a
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'develop' into feature/documentation
commit 9a8b637accedea6d02320c7359667dcf28478cef
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Lisans Güncellendi:
Eski çatalın lisans olan GPLv2 yerine mevcut çalıştığım inary çatalında GPLv3 kullanıyordum ancak AGPLv3 ile yayıma devam etme kararı aldım.
Sonuçta açık kaynak her zaman açık kaynaktır.
commit 509e8c2070b5e6615c8430c1e8521eec968956c5
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Documentation Project have been just started.
Belgeleme projesi başlatıldı. Öncelikle Türkçe bir belgeleme oluşturmalıyım.
commit 41dd702775bba9b2374d051d1547088291979cbd
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Daha nazik ve şık çıktılar
Nazik ve birazcık daha okunabilir çıktılar.
commit 74ce25018565dfa31d0d0fd9fff98457b34d25d0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Paket kurulumu öncesi tam bilgilendirme.
Şu değerler artık paket işlemleri sırasında listelenecek: indirilecek toplam paket boyutu, indirilecek paketlerden önceden indirilmiş olanı; kurulum/güncelleme sonrası gereken boş disk alanı; silme işleminden sonra diskte açılacak yer.
commit 37b2535a503863c8bdf53029bbe3de63226125ab
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Orphaned paketler için düzenleme
oprhaned yani kopuk olan paketler arasında her zaman doc pages static ve dbginfo paketlerini de alıyordu ve anında siliyordu bu hata düzeltildi.
commit cf957831a6e37a314224c2d7e27e08e31d9dbaf0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
GPG Signature/GPG İmzalama problemi
GPG imzası bulunamadı ya da doğrulanamadığı durumda hata veren kod değiştirildi.
commit 2787e6f6d1567de156621bf004b5cde1a46d1fc9
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Görünüm iyileştirmesi.(Paket indirmesi boyutlar)
Paket indirmeden önce toplam indirme boyutu ve önceden indirilmiş paket miktarını göstecek şekilde ctx.ui.notify içindeki event ayarlanı ve ona göre kod düzenlendi.
commit 09066b197263769347e9fddb74d0b6a1895b279b
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
ctx.ui.notify fonksiyonuna eklemeler ve düzenlemeler ve yeni renkler
* ui içerisindeki her bir işlem adımı için ekleme yapıldı. İnstalling removing gibi adımları hem ekrana hem log dosyasında hem ekrana hem de log dökümüne yazdırmak, kurulum sırasını ve bazı önemli şeyleri de sadece log dökümüne yazdırmayı denetlemem lazımdı. Notify kullanacak yerler belirlendi. BUna göre kodlar düzenlendi.
* italic yazı stili ve üzeri çizgili yazı stilleri eklendi.
commit d4b73a6e7be7ea005a52fe165a150a693256f0fe
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Hata mesajları düzenlemesi
Hata mesajları düzenlendi. Bazı yeni mesajlar eklendi. [TODO: Paket yöneticisi birazcık daha interaktif olmalı.]
commit 8d87a941391622fe6a4b512b264cbb11ffff230a
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
bazı import kısımları düzenlendi
magic yerine file ile de fallback yapılabilir.
commit 102dbba4e743a0c25f5d78563b316c089b8ee4fd
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Debug ve Info mesajları düzenlendi
commit f1313abd05626265f87821fe38d0b445c2575056
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
New roadmap for inary-2.0
Son bir senedir devam eden canavarca geliştirmeleri artık bir düzene sokma vakti geldi.
commit 1bbb185ff82c7efb773114c3fc0dc22c6d1704c4
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Gereksiz Patchler Temizlendi
commit bc57532b7f0fee740bb0cff0aebe56fe53c4e3e0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Translations updated.
Çeviriler yüklendi. Bazı çıktılar da uygun olarak renklendirildi.
commit fc49134904bbd5b875730a5b7d2163c5fedaaa30
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
biraz düzenleme
Detaylandırmalar yapıldı. Ayrıca geri dönütlerdeki tırnak işareti eksiklikleri giderildi. daha iyi okur daha iyi anlarsınız.
commit d1a5664b550a586c46e6b32b55defa803254b16f
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
subprocess modulünün iki kez import edilmesi.
Zaten import ediliyor kardeşim bir daha girmek ne gerekli.
commit 8e2a08241f3df9fecb1e277664a89cc7ce74cdbe
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Readded automatic update feature to add-repo
add-repo komutuna repo eklenmesi ardından otomatik update özelliği geri getirildi. Beğenmeyen --no-fetch desin.
commit 6d1d7e61a26344eff3583efc5ad843b503c48562
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
magic module deleted from source code
It is already comes with python3-filemagic package.
commit 21191fb6660e0fcbb558a609ab4e652e086c995e
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
More details.
Actionsapi içerinde biraz detaylı çıktılandırmaya gidildi.
commit a958c59277096bd22ae048df804eb4fe5eaf16a1
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Fixed merge problems
Depolar arasındaki bu karmaşa ciddi sorunlara neden olabiliyor
commit ae3d29174b3c7c10bffa927ee82166b9f545222e
Merge: 882a61ab 72df25b4
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge remote-tracking branch 'origin/master'
commit 882a61ab2f315260c7e5d7c4fcdef77b397395a8
Merge: 154ca87d 8f16b9d7
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Merge branch 'gericekme'
commit 8f16b9d7604e24c180ff414bfa9554a516ffffa1
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Renkler geri alındı.
commit 01f418c1b62b93d805a5da6cad7bf8fd1283ab6a
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
"master" Çalışma Koluna bakıldı
master branch üzerindeki kodlar analiz edildi.
- SCOM değiştirilmeyeceği için reactor ve diğer değişimler geri çekildi.
- database'lerin (installdb, packagedb, etc.) bir değişkene atanarak o değişkenle fonksiyonların çağırılması totalde ram üzerine yapılan veri işgalini azaltacak gibi görünse bile, script based bir dil olan python'da bu durum sorun oluşturabilir. En mantıklı yöntem her birisini adı ile çağırmak. lazydb superclass'ı içinde zaten databaseler içinde değişim yapılacaksa en baştan init ediyor. Bir daha aynı adımları işletmenin mantığı yok.
- Added new colors by Ali Rıza Keskin
- fetcher. Fetcher() sınıfı içerisinde indirme işlemi pycurl.PyCurl() ile yapılmakta. bunun atandığı "c" ismindeki değişkenin bu sınıfın nesnesi yapılması mantıksız bir hata gibime geldi.
- Fetcher renklendirilmesi için kullanılan kod oldukça karmaşıktı. yeniden yapılandırılmak üzere geri çekildi
commit 6f388ebfab2d89ab8e9192139fa59d8fb4ed6ac1
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Rebuild-DB için api çağırılmayacak
Fonksiyon api içinden filesdb içine taşındı.
commit 32b22a75f360086f3edf7c6cea1d7af9bf685cd7
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
XML parser uyumsuzluk problemi
sourcedb ve installdb içinde bir bug tespit edildi. bu bug yüzünden bağımlılık kırılmaları yaşanıyordu. Fixlendi.
commit fb0ecbcb6df536f942684acaa4cbbadf66d8e569
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
[PyCharm]: Some Inspections
commit 4ec897e6e12faf2df69ef5495f7050f0d60f39e0
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
[PyCharm]: Some Inspections
commit bb8372da41394c888b5e8ca81ef99a1a32bb13de
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
[PyCharm]: Pep8 Coding Style Violation
This inspection runs the pep8.py tool to check for violations of the PEP 8 coding style guide.
commit a2b277d90fc6e3ced07aeb2899e6e48f132512d9
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Kritik script düzenlemeleri
İmport edilmesi unutulan moduller temizlendi ve gereklilikler kontrol edildi.
cmp fonksiyonu yerine basit bir karşılaştırma ifadesi kullanıldı.
class parametresi yapılan repolist silindi.
commit 189c1fa061bb27ed69aa98ffdc71603439a53b7c
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
Some inspections
*Cleaned:
- deleted useless backslash
- deleted useless import statements
- deleted recursive and default parameter input
- deleted useless variables
- deleted useless returns
commit 3e6d81a0221ecb3c6ab7aeea7480bba06b0135ea
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>
tüm dokümantasyon yeniden yazılmak üzere terkedildi
commit d3ff6cb6f8273aad86a40785c87f34c2770eafae
Author: Suleyman Poyraz <[email protected]>
Commit: Suleyman Poyraz <[email protected]>