-
Notifications
You must be signed in to change notification settings - Fork 21
/
pisi-index.xml
9432 lines (9431 loc) · 439 KB
/
pisi-index.xml
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
<PISI>
<SpecFile>
<Source>
<Name>mp</Name>
<Homepage>http://triptico.com/software/mp.html</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>editor</PartOf>
<Summary xml:lang="en">A text editor for programmers</Summary>
<Summary xml:lang="tr">A text editor for programmers</Summary>
<Description xml:lang="en">A text editor for programmers including the following features:Fully scriptable using a C-like scripting language. Unlimited undo levels.Complete Unicode support. Multiple files can be edited at the same time and blocks copied and pasted among them. Syntax highlighting for many popular languages / file formats: C, C++, Perl, Shell Scripts, Ruby, Php, Python, HTML and much more</Description>
<Description xml:lang="tr"> A text editor for programmers including the following features:
Fully scriptable using a C-like scripting language. Unlimited undo levels.
Complete Unicode support. Multiple files can be edited at the same time and blocks copied and pasted among them. Syntax highlighting for many popular languages / file formats: C, C++, Perl, Shell Scripts, Ruby, Php, Python, HTML and much more</Description>
<Archive type="targz" sha1sum="33bf6abde7f3efa7630d5ebdea99cedd4fc349dc" name="5.55.tar.gz">https://github.com/ttcdt/mp-5.x/archive/refs/tags/5.55.tar.gz</Archive>
<BuildDependencies>
<Dependency>gtk3-devel</Dependency>
</BuildDependencies>
<SourceURI>mp/pspec.xml</SourceURI>
</Source>
<Package>
<Name>mp</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/*</Path>
<Path fileType="data">/usr/share/applications/*</Path>
<Path fileType="doc">/usr/share/doc/*</Path>
<Path fileType="localedata">/usr/share/locale/*</Path>
<Path fileType="man">/usr/share/man/*</Path>
<Path fileType="data">/usr/share/mp-5/*</Path>
<Path fileType="data">/usr/share/pixmaps/*</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/mp.desktop" permission="0755" owner="root" group="root">mp.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/pixmaps/mp.png" permission="0644" owner="root" group="root">mp.png</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="2">
<Date>2021-11-11</Date>
<Version>5.55</Version>
<Comment>Version bump.</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-04-11</Date>
<Version>5.2.10</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>bzr</Name>
<Homepage>http://bazaar.canonical.com/en/</Homepage>
<Packager>
<Name>Sami Babat</Name>
<Email>sami.babat@gmail.com</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:console</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Distributed and Client–server revision control system</Summary>
<Summary xml:lang="tr">Dağıtık ve İstemci-sunucu revizyon kontrol sistemi</Summary>
<Description xml:lang="en">Bazaar can be used by a single developer working on multiple branches of local content, or by teams collaborating across a network</Description>
<Description xml:lang="tr">Dağıtık ve İstemci-sunucu revizyon kontrol sistemi Projelerinizi yönetebileceğiniz bir havuz sistemi.</Description>
<Archive type="targz" sha1sum="872f6088f8b07558519dbbc88fffa05e37602f52" name="bzr-2.7.0.tar.gz">https://launchpad.net/bzr/2.7/2.7.0/+download/bzr-2.7.0.tar.gz</Archive>
<SourceURI>0oldpackage/bazaar/pspec.xml</SourceURI>
</Source>
<Package>
<Name>bzr</Name>
<RuntimeDependencies>
<Dependency>python</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-08-03</Date>
<Version>2.7.0</Version>
<Comment>First release</Comment>
<Name>Sami Babat</Name>
<Email>sami.babat@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>bitcoin</Name>
<Homepage>https://bitcoin.org/</Homepage>
<Packager>
<Name>Sami Babat</Name>
<Email>sami.babat@gmail.com</Email>
</Packager>
<License>MIT</License>
<IsA>app:gui</IsA>
<PartOf>network</PartOf>
<Summary xml:lang="en">Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Summary>
<Summary xml:lang="tr">Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Summary>
<Description xml:lang="en">Bitcoin eşler arası teknolojiyi kullanarak merkez otorite veya banka olmadan çalışır. İşlemlerin yönetimi ve bitcoinlerin dağıtımı toplu olarak ağ tarafından idare edilir. Bitcoin açık kaynaklıdır; tasarımı halka açıktır, kimse Bitcoin'e sahip değildir ve onu kontrol edemez, herkes katılabilir. Bitcoin kendine has birçok özelliği sayesinde diğer ödeme yollarıyla yapılamayacak çok farklı ödemelerin üstesinden gelebilir.</Description>
<Description xml:lang="tr">Bitcoin eşler arası teknolojiyi kullanarak merkez otorite veya banka olmadan çalışır. İşlemlerin yönetimi ve bitcoinlerin dağıtımı toplu olarak ağ tarafından idare edilir. Bitcoin açık kaynaklıdır; tasarımı halka açıktır, kimse Bitcoin'e sahip değildir ve onu kontrol edemez, herkes katılabilir. Bitcoin kendine has birçok özelliği sayesinde diğer ödeme yollarıyla yapılamayacak çok farklı ödemelerin üstesinden gelebilir.</Description>
<Icon>bitcoin</Icon>
<Archive type="targz" sha1sum="156b897c6c7d1f12587d72ea92ccaf28dccedd55" name="bitcoin-0.12.1-linux64.tar.gz">https://bitcoin.org/bin/bitcoin-core-0.12.1/bitcoin-0.12.1-linux64.tar.gz</Archive>
<SourceURI>0oldpackage/Bitcoin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>bitcoin</Name>
<Summary xml:lang="en">Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Summary>
<Files>
<Path fileType="data">/usr/</Path>
<Path fileType="icon">/usr/share/pixmaps</Path>
<Path fileType="application">/usr/share/applications</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/bitcoin.desktop" permission="0744" owner="root" group="root">bitcoin.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/pixmaps/bitcoin.ico" permission="0744" owner="root" group="root">bitcoin.ico</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2016-07-18</Date>
<Version>0.12.1</Version>
<Comment>Bitcoin, yaratıcı bir ödeme ağı ve yeni bir para birimidir.</Comment>
<Name>Sami Babat</Name>
<Email>sami.babat@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>bullet</Name>
<Homepage>http://bulletphysics.org/wordpress/</Homepage>
<Packager>
<Name>Erdinç Gültekin</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>Zlib</License>
<IsA>library</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Professional 3D collision detection library</Summary>
<Summary xml:lang="tr">Profesyonel 3D çarpma tespiti kütüphane</Summary>
<Description xml:lang="en">Bullet is a professional open source multi-threaded 3D Collision Detection and Rigid Body Dynamics Library for games and animation.</Description>
<Description xml:lang="tr">Bullet, oyun ve animasyon için profesyonel bir açık kaynak kodlu çoklu iş parçacıklı 3D çarpma tespiti ve Katı Cisim Dinamiği Kütüphanesidir.</Description>
<Archive type="targz" sha1sum="c69710a1f756b9c5bc3f0580e6e67ab0313d6c03" name="3.08.tar.gz">https://github.com/bulletphysics/bullet3/archive/3.08.tar.gz</Archive>
<BuildDependencies>
<Dependency>mesa-devel</Dependency>
<Dependency>cmake</Dependency>
<Dependency>doxygen</Dependency>
<Dependency>mesa</Dependency>
<Dependency>ninja</Dependency>
<Dependency>mesa</Dependency>
<Dependency>python-numpy</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>dejavu-fonts</Dependency>
<Dependency>freeglut-devel</Dependency>
<Dependency>perl-template-toolkit</Dependency>
</BuildDependencies>
<SourceURI>0oldpackage/bullet/pspec.xml</SourceURI>
</Source>
<Package>
<Name>bullet</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>bullet-devel</Name>
<Summary xml:lang="en">Development files for bullet</Summary>
<RuntimeDependencies>
<Dependency release="2">bullet</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig/bullet.pc</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2020-01-08</Date>
<Version>3.08</Version>
<Comment>First Release</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2018-12-31</Date>
<Version>2.82_2704</Version>
<Comment>First Release</Comment>
<Name>Ali Cengiz Kurt</Name>
<Email>alicengizkurt@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>cherrytree</Name>
<Homepage>https://www.giuspen.com/cherrytree/</Homepage>
<Packager>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>GPLv3+</License>
<IsA>app:gui</IsA>
<PartOf>office</PartOf>
<Summary xml:lang="en">Cherrytree A hierarchical note taking application</Summary>
<Summary xml:lang="tr">Uygulama alarak hiyerarşik not</Summary>
<Description xml:lang="en">A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file.</Description>
<Description xml:lang="tr">Özellikler :
- Zengin metin ( ön plan rengi , arka plan rengi , kalın , italik , üstü çizili , altı çizili , küçük , h1 , h2 , h3, simge , üst simge , monospace )
- Sözdizimi (zengin metingeçerli düğüm devre dışı olduğunda ) vurgulama
- Taşıma görüntüler : eklememetin , edit ( döndürmek / yeniden boyutlandırma ) , png dosyayı kaydedin
- Taşıma listeleri ( madde işaretli , numaralı , yapılacaklar aralarında ve anahtarı , vardiya ile çok satırlı + enter )
- (Düz metin olan hücreler ) işleme basit tablolar , kes / kopyala / yapıştır sıra , ithalat / ihracat csv dosyası olarak
- Taşıma codeboxes : otomatik kutuları normal bir zengin metin metin vurgulanır
- Metin, resim , tablo ve codeboxes hizalama ( sol / merkez / sağ)
- Köprüler ( web sayfalarına bağlantılar , bağlantılar düğümler / düğümleri + çapalar , dosyalara bağlantılar , klasörlere bağlantılar )
- Yazım denetimi ( pygtkspellcheck ve pyenchant kullanarak)
- Içi uygulama copy / paste : Tek görüntü , tek codeboxes , tek tablolar ve zengin metin , görüntü , codeboxes ve tablolar bir bileşik seçim desteklenen
- Çapraz başvuru copy / paste ( OpenOffice ve gmail ile test ) : Tek görüntü, tek codeboxes , tek tablolar ve zengin metin , görüntü , codeboxes ve tablolar bir bileşik seçim desteklenen
-Dosya yöneticisi ve cherrytree yapıştırarak dosyaların bir listesini kopyalama dosyaların bağlantıları bir liste oluşturmak , görüntülerimetin tanınan ve eklenen
- Seçim / düğüm / düğüm ve alt düğümler pdf dosyası olarak baskı ve kaydetmek /tüm ağaç
- Seçim / düğüm / düğüm ve alt düğümler html ihracat /tüm ağaç
- Seçim / düğüm / düğüm ve alt düğümler düz metin ihracat /tüm ağaç
- Başlıkları H1, H2 ve H3 dayalı bir düğüm / düğüm ve alt düğümler / bütün ağaç için TOC üretimi
- Tüm düğümler bulmak , geçerli düğüm bulmak , bir düğümü bulmak
- , Düğüm adları yerine geçerli düğüm yerine , tüm düğümleri değiştirin
- En sonen son bulmak , yineleme yineleme , yerineson uygulamalı metin biçimlendirme yineleme
- Sepet ithalat , Cherrytree , gnote , KeepNote , açış , biliyordun , MemPad , notecase , fatma treepad lite , TuxCards , Zim
- Seçim / düğüm / düğüm ve alt düğümler /bütün ağacın dosyayı Cherrytree ihracat
- ( Http://www.7-zip.org/ kullanarak) şifre koruması
- Ağaç düğümleri sürükle ve bırak</Description>
<Archive type="tarxz" sha1sum="bc81ae2f6c6566639c5906b3754bf97c6c16b4d4" name="cherrytree-0.38.4.tar.xz">http://www.giuspen.com/software/cherrytree-0.38.4.tar.xz</Archive>
<BuildDependencies>
<Dependency>desktop-file-utils</Dependency>
</BuildDependencies>
<SourceURI>0oldpackage/cherrytree/pspec.xml</SourceURI>
</Source>
<Package>
<Name>cherrytree</Name>
<RuntimeDependencies>
<Dependency>desktop-file-utils</Dependency>
<Dependency>p7zip</Dependency>
<Dependency>python-enchant</Dependency>
<Dependency>python-gtk</Dependency>
<Dependency>python-gtksourceview</Dependency>
<Dependency>python-pygobject</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/python2.7</Path>
<Path fileType="data">/usr/share/cherrytree</Path>
<Path fileType="data">/usr/share/mime</Path>
<Path fileType="data">/usr/share/mime-info</Path>
<Path fileType="data">/usr/share/appdata</Path>
<Path fileType="data">/usr/share/application-registry</Path>
<Path fileType="icons">/usr/share/icons/hicolor/scalable/apps</Path>
<Path fileType="application">/usr/share/applications</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/cherrytree/cherrytree.desktop" permission="0644" owner="root" group="root">cherrytree.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/cherrytree/cherrytree.sclipgrab.provg" permission="0644" owner="root" group="root">cherrytree.png</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="2">
<Date>2018-02-21</Date>
<Version>0.38.4</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-06-11</Date>
<Version>0.37.6</Version>
<Comment>First Release.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>discount</Name>
<Homepage>https://github.com/Orc/discount</Homepage>
<Packager>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>app:console</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">A Markdown implementation written in C</Summary>
<Summary xml:lang="tr">A Markdown implementation written in C</Summary>
<Description xml:lang="en">implementation of the Markdown markup language in C</Description>
<Description xml:lang="tr">implementation of the Markdown markup language in C</Description>
<Archive type="binary" sha1sum="3b32a196e7f192955715865be4e998b195a9092d" name="discount_2.2.3b8-2_amd64.deb">https://launchpad.net/ubuntu/+archive/primary/+files/discount_2.2.3b8-2_amd64.deb</Archive>
<SourceURI>0oldpackage/discount/pspec.xml</SourceURI>
</Source>
<Package>
<Name>discount</Name>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2018-03-12</Date>
<Version>2.2.3</Version>
<Comment>Version bump</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-07-19</Date>
<Version>2.1.7</Version>
<Comment>First release</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>draftsight</Name>
<Homepage>http://www.3ds.com/products-services/draftsight</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>AS IS</License>
<License>EULA</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="tr">DraftSight ® - DWG dosyaları için CAD yazılımı.</Summary>
<Summary xml:lang="de">DraftSight®: Kostenlose Profi-CAD-Software.</Summary>
<Summary xml:lang="en">DraftSight® - Free CAD software for your DWG files</Summary>
<Summary xml:lang="es">DraftSight®: Programa CAD gratuito* de nivel profesional.</Summary>
<Description xml:lang="tr">DraftSight profesyonel CAD kullanıcılarının, öğrencilerin ve eğitimcilerin DWG dosyalarını oluşturmasını, düzenlemesini ve görüntülemesini sağlar.</Description>
<Description xml:lang="de">Mit DraftSight können professionelle CAD-Anwender, Studenten und Ausbilder DWG-Dateien erstellen, bearbeiten und ansehen.</Description>
<Description xml:lang="en">DraftSight lets professional CAD users, students and educators create, edit and view DWG files.</Description>
<Description xml:lang="es">Con DraftSight, los usuarios CAD profesionales, estudiantes y educadores pueden crear, editar y visualizar ficheros DWG.</Description>
<Icon>draftsight</Icon>
<Archive type="binary" sha1sum="fda51c49fccad809a2407e8e376d814444e2be62" name="download-linux-fedora">http://www.draftsight.com/download-linux-fedora</Archive>
<BuildDependencies>
<Dependency>rpm2targz</Dependency>
</BuildDependencies>
<SourceURI>0oldpackage/draftsight/pspec.xml</SourceURI>
</Source>
<Package>
<Name>draftsight</Name>
<RuntimeDependencies>
<Dependency>orc</Dependency>
<Dependency>mesa</Dependency>
<Dependency>libmng</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libxslt</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>libXt-32bit</Dependency>
<Dependency>cups</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libSM</Dependency>
<Dependency>libXi</Dependency>
<Dependency>pango</Dependency>
<Dependency>jasper</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libxcb</Dependency>
<Dependency>calibre</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>glibc-32bit</Dependency>
<Dependency>mariadb-lib</Dependency>
<Dependency>libXau-32bit</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>libutil-linux</Dependency>
<Dependency>postgresql-lib</Dependency>
<Dependency>gst-plugins-base</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/draftsight.bin</Path>
<Path fileType="executable">/usr/bin/draftsight</Path>
<Path fileType="doc">/usr/share/doc/</Path>
<Path fileType="data">/usr/share/pixmaps/</Path>
<Path fileType="data">/usr/share/applications/</Path>
<Path fileType="data">/opt/dassault-systemes/</Path>
<Path fileType="data">/var/opt/dassault-systemes/</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/draftsight.desktop" permission="0644" owner="root">draftsight.desktop</AdditionalFile>
<AdditionalFile target="/usr/bin/draftsight" permission="0755" owner="root">draftsight</AdditionalFile>
<AdditionalFile target="/opt/dassault-systemes/DraftSight/Libraries/libaudio.so.2" permission="0644" owner="root">libaudio.so.2</AdditionalFile>
<AdditionalFile target="/usr/share/pixmaps/draftsight.png" permission="0644" owner="root">draftsight.png</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="4">
<Date>2016-12-13</Date>
<Version>7.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-03-31</Date>
<Version>6.5</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-10-17</Date>
<Version>6.0</Version>
<Comment>Version bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2014-04-01</Date>
<Version>5.1</Version>
<Comment>First Release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>erdincgultekin@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>easypaint</Name>
<Homepage>http://qt-apps.org/content/show.php/EasyPaint?content=140877</Homepage>
<Packager>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">EasyPaint is a simple graphics painting program</Summary>
<Summary xml:lang="tr">EasyPaint is a simple graphics painting program</Summary>
<Description xml:lang="en">EasyPaint is a part of Razor-qt</Description>
<Description xml:lang="tr">EasyPaint is a part of Razor-qt</Description>
<Archive type="targz" sha1sum="e59aeaf3c9776071c0750b130eafe196d2bee555" name="v0.1.1.tar.gz">https://github.com/Gr1N/EasyPaint/archive/v0.1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
<SourceURI>0oldpackage/easypaint/pspec.xml</SourceURI>
</Source>
<Package>
<Name>easypaint</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="application">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-04-01</Date>
<Version>0.1.1</Version>
<Comment>First release</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>akiskart</Name>
<Homepage>http://www.akiskart.com.tr/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>custom</License>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">View and modify files,folders and objects in an AKIS smartcard</Summary>
<Description xml:lang="en">View and modify files,folders and objects in an AKIS smartcard</Description>
<Archive type="binary" sha1sum="dd5f2950478f2650aa3465a457bef67619a981e1" name="akis_1.6_amd64.deb">http://www.akiskart.com.tr/dosyalar/akis_1.6_amd64.deb</Archive>
<SourceURI>akiskart/akiskart/pspec.xml</SourceURI>
</Source>
<Package>
<Name>akiskart</Name>
<RuntimeDependencies>
<Dependency>ccid</Dependency>
<Dependency>pcsc-lite</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>jre7-openjdk-headless</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/akis</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/bin/akia" permission="0755" owner="root">akia</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2019-05-20</Date>
<Version>1.6</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>apfs-fuse</Name>
<Homepage>https://github.com/sgan81/apfs-fuse</Homepage>
<Packager>
<Name>Ali Cengiz Kurt</Name>
<Email>alicengizkurt@gmail.com</Email>
</Packager>
<License>GPLv2+</License>
<IsA>library</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">A read-only FUSE driver for Apple's APFS</Summary>
<Summary>A read-only FUSE driver for Apple's APFS</Summary>
<Description xml:lang="en">apfs-fuse is a read-only driver for the new Apple File System, APFS also supports software encrypted volumes and fusion drives. Firmlinks are not supported yet.</Description>
<Description>apfs-fuse is a read-only driver for the new Apple File System, APFS also supports software encrypted volumes and fusion drives. Firmlinks are not supported yet.</Description>
<Archive type="zip" sha1sum="7072df718a24ad34ad1853158f26b9f517677dc4" name="master.zip">https://github.com/sgan81/apfs-fuse/archive/refs/heads/master.zip</Archive>
<Archive type="targz" sha1sum="40f156053e34e8725f052d2d1590b6abd318f899" name="lzfse-1.0.tar.gz">https://github.com/lzfse/lzfse/archive/lzfse-1.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>fuse3-devel</Dependency>
<Dependency>bzip2</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>attr-devel</Dependency>
<Dependency>gcc</Dependency>
</BuildDependencies>
<SourceURI>akiskart/apfs-fuse/pspec.xml</SourceURI>
</Source>
<Package>
<Name>apfs-fuse</Name>
<RuntimeDependencies>
<Dependency>glibc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/local/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-02-08</Date>
<Version>0.1.0</Version>
<Comment>First release</Comment>
<Name>Ali Cengiz Kurt</Name>
<Email>alicengizkurt@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>fpc</Name>
<Homepage>https://www.freepascal.org/</Homepage>
<Packager>
<Name>Sami BABAT</Name>
<Email>samibabat@gmail.com</Email>
</Packager>
<License>GPL</License>
<IsA>data</IsA>
<IsA>app:console</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Fpc-src, pascal için derleyici</Summary>
<Description xml:lang="en">Fpc-src, pascal için derleyici</Description>
<Archive sha1sum="e13de5eacd47fa2010ee65ca1ad84a782a942f2d" name="fpc-3.0.4-1.x86_64.rpm">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-3.0.4-1.x86_64.rpm</Archive>
<BuildDependencies>
<Dependency>rpm2targz</Dependency>
<Dependency>tar</Dependency>
</BuildDependencies>
<SourceURI>akiskart/fpc/pspec.xml</SourceURI>
</Source>
<Package>
<Name>fpc</Name>
<Files>
<Path fileType="data">/usr/bin/</Path>
<Path fileType="data">/usr/share/</Path>
<Path fileType="data">/usr/lib64/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-09-12</Date>
<Version>3.0.4</Version>
<Comment>Ilk sürüm</Comment>
<Name>Sami BABAT</Name>
<Email>sami.babat@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>fpc-src</Name>
<Homepage>https://www.freepascal.org/</Homepage>
<Packager>
<Name>Sami BABAT</Name>
<Email>samibabat@gmail.com</Email>
</Packager>
<License>GPL</License>
<IsA>data</IsA>
<IsA>app:console</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Fpc-src, pascal için derleyici</Summary>
<Description xml:lang="en">Fpc-src, pascal için derleyici</Description>
<Archive sha1sum="215aeb42c07eee80a52f8cecd7aa23c11bcc79a1" name="fpc-src-3.0.4-1.x86_64.rpm">https://datapacket.dl.sourceforge.net/project/lazarus/Lazarus%20Linux%20x86_64%20RPM/Lazarus%201.8.4/fpc-src-3.0.4-1.x86_64.rpm</Archive>
<BuildDependencies>
<Dependency>rpm2targz</Dependency>
<Dependency>tar</Dependency>
</BuildDependencies>
<SourceURI>akiskart/fpc-src/pspec.xml</SourceURI>
</Source>
<Package>
<Name>fpc-src</Name>
<Files>
<Path fileType="executable">/usr/share/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2018-09-11</Date>
<Version>3.0.4</Version>
<Comment>Ilk sürüm</Comment>
<Name>Sami BABAT</Name>
<Email>sami.babat@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>Binance</Name>
<Packager>
<Name>Sami BABAT</Name>
<Email>samibabat@gmail.com</Email>
</Packager>
<License>custom</License>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Binance kripto alım satım Masaüstü uygulaması</Summary>
<Description xml:lang="en">Binance kripto alım satım Masaüstü uygulaması</Description>
<Archive type="binary" sha1sum="30ace480d5ae0a54ef0c9608ffad2961a816c722" name="binance-amd64-linux.deb">https://ftp.binance.com/electron-desktop/linux/production/binance-amd64-linux.deb</Archive>
<SourceURI>binance/pspec.xml</SourceURI>
</Source>
<Package>
<Name>binance</Name>
<Icon>binance</Icon>
<RuntimeDependencies>
<Dependency>curl</Dependency>
<Dependency>coreutils</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/opt</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-05-18</Date>
<Version>1.16.2</Version>
<Comment>First release</Comment>
<Name>Sami BABAT</Name>
<Email>samibabat@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>android-studio</Name>
<Homepage>https://developer.android.com/studio</Homepage>
<Packager>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>Apache-2.0</License>
<PartOf>development</PartOf>
<Summary xml:lang="en">Android development environment based on IntelliJ IDEA.</Summary>
<Summary xml:lang="tr">The official Android IDE (Stable branch)</Summary>
<Description xml:lang="en">Android development environment based on IntelliJ IDEA.</Description>
<Description xml:lang="tr">The official Android IDE (Stable branch)</Description>
<Archive type="targz" sha1sum="276e5e191ce65feb633e8efb0f30d138340ae1ab" name="android-studio-ide-202.7486908-linux.tar.gz">https://dl.google.com/dl/android/studio/ide-zips/4.2.2.0/android-studio-ide-202.7486908-linux.tar.gz</Archive>
<SourceURI>development/android-studio/pspec.xml</SourceURI>
</Source>
<Package>
<Name>android-studio</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>klibc</Dependency>
<Dependency>unzip</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libXtst</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>freetype</Dependency>
<Dependency>libXrender</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/opt/android-studio</Path>
<Path fileType="data">/usr/bin/android-studio</Path>
<Path fileType="data">/usr/share/applications/android-studio.desktop</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/android-studio.desktop" permission="0644" owner="root">android-studio.desktop</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="7">
<Date>2021-07-16</Date>
<Version>202.7486908</Version>
<Comment>Version bump</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2021-05-12</Date>
<Version>202.7322048</Version>
<Comment>Version bump</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2019-07-09</Date>
<Version>3.4.1</Version>
<Comment>Version bump</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2018-12-05</Date>
<Version>3.2.1.0</Version>
<Comment>Version bump-add Dependency</Comment>
<Name>AYDIN ATMACA</Name>
<Email>aydinatmaca@gmail.com</Email>
</Update>
<Update release="3">
<Date>2018-02-18</Date>
<Version>3.0.1.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2017-07-25</Date>
<Version>2.3.3.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-10-27</Date>
<Version>2.2.2</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>android-tools</Name>
<Homepage>https://developer.android.com/studio</Homepage>
<Packager>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>Custom</License>
<PartOf>programming.tools</PartOf>
<Summary xml:lang="en">Android Platform Tools</Summary>
<Description xml:lang="en">Android Platform Tools</Description>
<Archive type="binary" sha1sum="2016a7e8f3f696583c0069881f4270365e247cd7" name="platform-tools_r29.0.5-linux.zip">https://dl.google.com/android/repository/platform-tools_r29.0.5-linux.zip</Archive>
<BuildDependencies>
<Dependency>unzip</Dependency>
<Dependency>libusb-devel</Dependency>
<Dependency>libpcre-devel</Dependency>
<Dependency>ninja</Dependency>
<Dependency>ruby-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
<SourceURI>development/android-tools/pspec.xml</SourceURI>
</Source>
<Package>
<Name>android-tools</Name>
<Summary xml:lang="en">Android Platform Tools</Summary>
<Description xml:lang="en">Android Platform Tools</Description>
<PartOf>programming.tools</PartOf>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/bin/adb</Path>
<Path fileType="data">/usr/bin/fastboot</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2020-01-06</Date>
<Version>29.0.5</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-11-12</Date>
<Version>26.02</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>Apache Netbeans</Name>
<Homepage>https://netbeans.apache.org</Homepage>
<Packager>
<Name>Sami BABAT</Name>
<Email>samibabat@gmail.com</Email>
</Packager>
<License>custom</License>
<PartOf>development</PartOf>
<Summary xml:lang="en">NetBeans, Oracle tarafından geliştirilen bir Java geliştirme ortamıdır.</Summary>
<Description xml:lang="en">NetBeans, Oracle tarafından geliştirilen bir Java geliştirme ortamıdır. Özellikle kullanıcı arayüzü tasarımında sağladığı kolaylıklardan dolayı tercih edilmektedir.</Description>
<Archive type="zip" sha1sum="eb6c8286be8c556821381f83a2ff5027dae47915" name="netbeans-12.3-bin.zip">https://www-eu.apache.org/dist/netbeans/netbeans/12.3/netbeans-12.3-bin.zip</Archive>
<SourceURI>development/apache-netbeans/pspec.xml</SourceURI>
</Source>
<Package>
<Name>netbeans</Name>
<Icon>netbeans</Icon>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr</Path>
<Path fileType="data">/usr/share/netbeans</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/netbeans.desktop" permission="0644" owner="root">netbeans.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/pixmaps/ApacheNetbeans.png" permission="0644" owner="root">ApacheNetbeans.png</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2021-05-18</Date>
<Version>12.3</Version>
<Comment>First release</Comment>
<Name>Sami BABAT</Name>
<Email>samibabat@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>atom</Name>
<Homepage>https://atom.io/</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>as-is</License>
<IsA>app:gui</IsA>
<PartOf>applications.development</PartOf>
<Summary xml:lang="en">A hackable text editor.</Summary>
<Description xml:lang="en">Atom is a text editor that's modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file.</Description>
<Archive type="binary" sha1sum="81e358f8874abc40a6c6e054e33f3156e6ba8a18" name="atom-amd64.tar.gz">https://github.com/atom/atom/releases/download/v1.57.0/atom-amd64.tar.gz</Archive>
<SourceURI>development/atom/pspec.xml</SourceURI>
</Source>
<Package>
<Name>atom</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>nss</Dependency>
<Dependency>cups</Dependency>
<Dependency>dbus</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>nspr</Dependency>
<Dependency>cairo</Dependency>
<Dependency>expat</Dependency>
<Dependency>gconf</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libXi</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libXtst</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>freetype</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libXcursor</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>glibc</Dependency>
<Dependency>libpng</Dependency>
<Dependency>google-chrome</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>libgnome-keyring</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/opt/atom</Path>
<Path fileType="icon">/usr/share/pixmaps</Path>
<Path fileType="application">/usr/share/applications</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/pixmaps/atom.png" permission="0644" owner="root">atom.png</AdditionalFile>
<AdditionalFile target="/usr/share/applications/atom.desktop" permission="0644" owner="root">atom.desktop</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="6">
<Date>2021-07-16</Date>
<Version>1.57.0</Version>
<Comment>Version bump.</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2021-04-01</Date>
<Version>1.55.0</Version>
<Comment>Version bump.</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2019-07-12</Date>
<Version>1.38.2</Version>
<Comment>Version bump.</Comment>
<Name>Erkan IŞIK</Name>
<Email>erkanisik@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2018-02-19</Date>
<Version>1.24.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2017-02-20</Date>
<Version>1.14.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-05-6</Date>
<Version>1.8.0_beta3</Version>
<Comment>First release.</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>eclipse</Name>
<Homepage>https://www.eclipse.org/</Homepage>
<Packager>