-
Notifications
You must be signed in to change notification settings - Fork 10
/
pisi-index.xml
1891 lines (1890 loc) · 91.3 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>sayonara</Name>
<Homepage>http://sayonara.luciocarreras.de/index.html</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>[email protected]</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend.</Summary>
<Summary xml:lang="tr">Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend.</Summary>
<Description xml:lang="en">Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections.</Description>
<Description xml:lang="tr">Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections.</Description>
<Icon>sayonara</Icon>
<Archive type="targz" sha1sum="8eba711cf9cf01e281028a8de472553cab409adb">ftp://sayonara-player.com/sayonara/sayonara-player-r73.tar.gz</Archive>
<BuildDependencies>
<Dependency>qt-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>taglib-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gst-plugins-bad-devel</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
</BuildDependencies>
<SourceURI>sayonara/pspec.xml</SourceURI>
</Source>
<Package>
<Name>sayonara</Name>
<RuntimeDependencies>
<Dependency>qt</Dependency>
<Dependency>gst-plugins-bad</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>gst-plugins-good</Dependency>
<Dependency>gst-plugins-ugly</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>taglib</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>curl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2015-08-10</Date>
<Version>0.6.6</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2014-08-03</Date>
<Version>0.4.0</Version>
<Comment>First release</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>uyap</Name>
<Homepage>http://www.uyap.gov.tr</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>[email protected]</Email>
</Packager>
<License>IBC</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Udf dosya uzantısı açmaya yarayan program.</Summary>
<Description xml:lang="en">Udf dosya uzantısı açmaya yarayan program.</Description>
<Archive type="targz" sha1sum="c4d5d4f9d164d0579137a2405ca0891495d7ed12">https://dl.dropboxusercontent.com/s/uo7fy33800q4jo4/uyap.tar.gz</Archive>
<SourceURI>uyap/pspec.xml</SourceURI>
</Source>
<Package>
<Name>uyap</Name>
<RuntimeDependencies>
<Dependency>jre7-openjdk</Dependency>
<Dependency>jre7-openjdk-headless</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/java/uyap</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2014-04-06</Date>
<Version>1.0</Version>
<Comment>First Release</Comment>
<Name>Alihan Öztürk</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>steam</Name>
<Homepage>http://store.steampowered.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>[email protected]</Email>
</Packager>
<License>Valve Corporation</License>
<IsA>app</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Steam for linux</Summary>
<Summary xml:lang="tr">Linux için steam</Summary>
<Description xml:lang="en">Steam Digital Platform Runner</Description>
<Description xml:lang="tr">Steam dijital platform çalıştırıcısı</Description>
<Icon>steam</Icon>
<Archive type="targz" sha1sum="cc625b72104dd14a7d400b7aeb67e9cf358e0910">http://repo.steampowered.com/steam/pool/steam/s/steam/steam_1.0.0.52.tar.gz</Archive>
<Patches>
<Patch level="1">alsa_sdl_audiodriver.patch</Patch>
</Patches>
<SourceURI>steam/pspec.xml</SourceURI>
</Source>
<Package>
<Name>steam</Name>
<RuntimeDependencies>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>mesa-32bit</Dependency>
<Dependency>eudev-32bit</Dependency>
<Dependency>desktop-file-utils</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="info">/usr/share/info</Path>
<Path fileType="localedata">/usr/share/locale</Path>
</Files>
</Package>
<History>
<Update release="8">
<Date>2016-03-31</Date>
<Version>1.0.0.52</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="7">
<Date>2015-07-15</Date>
<Version>1.0.0.50</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>[email protected]</Email>
</Update>
<Update release="6">
<Date>2014-09-01</Date>
<Version>1.0.0.49</Version>
<Comment>Version bump</Comment>
<Name>Nikolay Semenov</Name>
<Email>[email protected]</Email>
</Update>
<Update release="5">
<Date>2014-08-23</Date>
<Version>1.0.0.48</Version>
<Comment>Version bump</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="4">
<Date>2014-06-29</Date>
<Version>1.0.0.47</Version>
<Comment>Dep fix</Comment>
<Name>Nikolay Semenov</Name>
<Email>[email protected]</Email>
</Update>
<Update release="3">
<Date>2014-06-15</Date>
<Version>1.0.0.47</Version>
<Comment>Remove unnecessary deps</Comment>
<Name>Richard de Bruin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="2">
<Date>2014-03-21</Date>
<Version>1.0.0.47</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2013-09-07</Date>
<Version>1.0.0.41</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>picasa</Name>
<Homepage>http://picasa.google.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>[email protected]</Email>
</Packager>
<License>EULA</License>
<License>GPLV2</License>
<License>LGPLV2</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.graphics</PartOf>
<Summary xml:lang="tr">Linux İçin Picasa</Summary>
<Summary xml:lang="de">Picasa für Linux</Summary>
<Summary xml:lang="en">Picasa for Linux with face recognition</Summary>
<Description xml:lang="tr">Picasa, dijital fotoğraflarınızı aramaya, düzenlemeye, üzerinde değişiklik yapmaya, ve internet aracı'ile paylaşmak için bir Google programıdır.</Description>
<Description xml:lang="de">Picasa ist eine Bilderverwaltungssoftware von Google, zum Verwalten, Archivieren, Bearbeiten und Erstellung von online Webalben Ihrer Fotos.</Description>
<Description xml:lang="en">Picasa is a software from Google for organizing, editing or sharing digital photos over internet from your computer.</Description>
<Icon>picasa</Icon>
<Archive type="binary" sha1sum="148a74dc0c39e2e676c4ccc8d9c0bf919a9afc56">http://www.mediafire.com/download/wjpkhrbdjkf5h9k/picasa-3.9-2pclos2012.src.rpm</Archive>
<BuildDependencies>
<Dependency>rpm2targz</Dependency>
</BuildDependencies>
<SourceURI>picasa/pspec.xml</SourceURI>
</Source>
<Package>
<Name>picasa</Name>
<RuntimeDependencies>
<Dependency>openssl-32bit</Dependency>
<Dependency>libXau-32bit</Dependency>
<Dependency>libXmu-32bit</Dependency>
<Dependency>libXpm-32bit</Dependency>
<Dependency>libXxf86vm-32bit</Dependency>
<Dependency>alsa-lib-32bit</Dependency>
<Dependency>audiofile-32bit</Dependency>
<Dependency>cups-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
<Dependency>libexif</Dependency>
<Dependency>libgphoto2</Dependency>
<Dependency>sane-backends</Dependency>
<Dependency>libxslt-32bit</Dependency>
<Dependency>lcms-32bit</Dependency>
<Dependency>lsb-release</Dependency>
<Dependency>firefox</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/opt/google/</Path>
<Path fileType="data">/usr/</Path>
<Path fileType="doc">/usr/share/doc/</Path>
<Path fileType="executable">/usr/bin/</Path>
<Path fileType="data">/etc/xdg</Path>
<Path fileType="data">/usr/share/desktop-directories</Path>
</Files>
<Conflicts>
<Package>picasa-improved-play-function</Package>
</Conflicts>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/picasa.desktop" permission="0644" owner="root">picasa.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/applications/picasa-kdehal.desktop" permission="0644" owner="root">picasa-kdehal.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/applications/picasa-fontcfg.desktop" permission="0644" owner="root">picasa-fontcfg.desktop</AdditionalFile>
<AdditionalFile target="/etc/xdg/menus/applications-merged/picasa.menu" permission="0644">picasa.menu</AdditionalFile>
<AdditionalFile target="/usr/share/desktop-directories/Picasa.directory" permission="0644">Picasa.directory</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="2">
<Date>2013-07-20</Date>
<Version>3.9.0</Version>
<Comment>change source</Comment>
<Name>Erdinç Gültekin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2011-12-17</Date>
<Version>3.9.0</Version>
<Comment>First release.</Comment>
<Name>Antoon Tolboom</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>Rssowl</Name>
<Homepage>http://www.rssowl.org/</Homepage>
<Packager>
<Name>Pisi Linux community</Name>
<Email>[email protected]</Email>
</Packager>
<License>Eclipse Public License</License>
<IsA>app:gui</IsA>
<PartOf>network.rss</PartOf>
<Summary xml:lang="en">RSS Owl is a powerful application to organize, search and read feeds.</Summary>
<Summary xml:lang="tr">RSSOwl ücretsiz ve güçlü bir haber besleme okuyucu.</Summary>
<Description xml:lang="en">RSS Owl is a powerful application to organize, search and read your news feeds in a comfortable way.</Description>
<Description xml:lang="tr">RSSOwl ücretsiz ve güçlü bir haber besleme okuyucu. RSSOwl sen, toplamak, düzenlemek ve haber arama sağlayan kullanışlı, sonsuz esneklik ile kullanımı kolay arayüz.</Description>
<Archive type="zip" sha1sum="d69e059317f831484fc6b27df299f7e3e6b18d1b">http://sourceforge.net/projects/rssowl/files/rssowl%202/2.2.1/rssowl-2.2.1.linux.x86_64.zip</Archive>
<SourceURI>Rssowl/pspec.xml</SourceURI>
</Source>
<Package>
<Name>Rssowl</Name>
<RuntimeDependencies>
<Dependency>alsa-lib</Dependency>
<Dependency>atk</Dependency>
<Dependency>cairo</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>libIDL</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libXt</Dependency>
<Dependency>nss</Dependency>
<Dependency>pango</Dependency>
<Dependency>pixman</Dependency>
<Dependency>startup-notification</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/opt</Path>
<Path fileType="data">/usr</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/rssowl.desktop" permission="0644" owner="root" group="root">rssowl.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/pixmaps/rssowl.xpm" permission="0644" owner="root" group="root">rssowl.xpm</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2014-08-23</Date>
<Version>2.2</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>google-chrome</Name>
<Homepage>http://chrome.google.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>[email protected]</Email>
</Packager>
<License>EULA</License>
<IsA>app:gui</IsA>
<PartOf>network.web</PartOf>
<Summary xml:lang="de">Google Chrome für Linux</Summary>
<Summary xml:lang="en">Google Chrome for Linux</Summary>
<Summary xml:lang="es">Google Chrome para Linux</Summary>
<Description xml:lang="de">Google Chrome ist ein Web-Browser der von Google Inc. entwickelt wird. Wichtige Bestandteile sind die Rendering-Engine Webkit, sowie die JavaScript Engine. Beliebt macht den Browser seine einfach zu bedienende Oberfläche und die hohe Geschwindigkeit.</Description>
<Description xml:lang="en">Google Chrome is another web browser which runs web pages and applications with lightning speed due to its superior JavaScript rendering engine.</Description>
<Description xml:lang="es">Google Chrome es un navegador web desarrollado por Google Inc... Usa el motor de renderizado WebKit, así como el motor de JavaScript. Un navegador popular con una interfaz fácil de usar y de alta velocidad.</Description>
<Icon>google-chrome</Icon>
<Archive type="binary" sha1sum="7a1bf0a0dc13dbc47263b425ffaf219ac15185f9">https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm</Archive>
<BuildDependencies>
<Dependency>rpm2targz</Dependency>
</BuildDependencies>
<SourceURI>google-chrome/pspec.xml</SourceURI>
</Source>
<Package>
<Name>google-chrome</Name>
<RuntimeDependencies>
<Dependency>nspr</Dependency>
<Dependency>bzip2</Dependency>
<Dependency>libpng</Dependency>
<Dependency>freetype</Dependency>
<Dependency>libgcrypt</Dependency>
<Dependency>dbus</Dependency>
<Dependency>expat</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>cairo</Dependency>
<Dependency>atk</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>icon-theme-hicolor</Dependency>
<Dependency>gconf</Dependency>
<Dependency>libevent</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>libXtst</Dependency>
<Dependency>pango</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libXcursor</Dependency>
<Dependency>minizip</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXScrnSaver</Dependency>
<Dependency>icu4c</Dependency>
<Dependency>nss</Dependency>
<Dependency>cups</Dependency>
<Dependency>libxslt</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libvpx</Dependency>
<Dependency>flac</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/</Path>
<Path fileType="executable">/usr/bin/</Path>
<Path fileType="library">/usr/lib/</Path>
<Path fileType="man">/usr/share/man/</Path>
<Path fileType="doc">/usr/share/doc/</Path>
<Path fileType="data">/opt/google/</Path>
<Path fileType="data">/usr/share/pixmaps/</Path>
<Path fileType="data">/usr/share/applications/</Path>
</Files>
</Package>
<History>
<Update release="88">
<Date>2016-06-24</Date>
<Version>51.0.2704.106</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="87">
<Date>2016-06-09</Date>
<Version>51.0.2704.84</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="86">
<Date>2016-06-07</Date>
<Version>51.0.2704.79</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="85">
<Date>2016-04-22</Date>
<Version>50.0.2661.86</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="84">
<Date>2016-04-14</Date>
<Version>50.0.2661.75</Version>
<Comment>Release bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="83">
<Date>2016-04-08</Date>
<Version>49.0.26.23.112</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="82">
<Date>2016-03-29</Date>
<Version>49.0.26.23.110</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="81">
<Date>2016-03-25</Date>
<Version>49.0.26.23.108</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="80">
<Date>2016-03-09</Date>
<Version>49.0.26.23.87</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="79">
<Date>2016-03-03</Date>
<Version>49.0.26.23.75</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="78">
<Date>2016-02-19</Date>
<Version>48.02564.116</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="77">
<Date>2016-02-10</Date>
<Version>48.02564.109</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="76">
<Date>2016-02-04</Date>
<Version>48.0.2526.103</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="75">
<Date>2016-01-30</Date>
<Version>48.02564.97</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="74">
<Date>2015-09-21</Date>
<Version>45.0.2454.93</Version>
<Comment>Version bump.</Comment>
<Name>Ergün Salman</Name>
<Email>[email protected]</Email>
</Update>
<Update release="73">
<Date>2015-09-03</Date>
<Version>45.0.2454.85</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="72">
<Date>2015-08-12</Date>
<Version>44.0.2403.155</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="71">
<Date>2015-08-05</Date>
<Version>44.0.2403.130</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="70">
<Date>2015-07-29</Date>
<Version>44.0.2403.125</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="69">
<Date>2015-07-25</Date>
<Version>44.0.2403.107</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="68">
<Date>2015-07-22</Date>
<Version>44.0.2403.89</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="67">
<Date>2015-07-15</Date>
<Version>43.0.2357.134</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="66">
<Date>2015-06-23</Date>
<Version>43.0.2357.130</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="65">
<Date>2015-06-13</Date>
<Version>43.0.2357.125</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="63">
<Date>2015-06-09</Date>
<Version>43.0.2357.124</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>e-takip</Name>
<Homepage>http://www.uyap.gov.tr/destek/avukatport/etakip/etakip.htm</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>[email protected]</Email>
</Packager>
<License>FDL-1.3</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Avukatların ve vatandaşların adliyeye gitmeden bürolarından işlemlerini yapabilmeri için E-takip.</Summary>
<Description xml:lang="en">Avukatların ve vatandaşların adliyeye gitmeden bürolarından icra takibi açabilmesi, dosyalarını inceleyebilmeleri, harç ve masraflarını yatırabilmeleri gibi, fiziksel ortamda yapılan bir çok işlemin elektronik ortamda mekandan bağımsız olarak yapılmasını sağlayan bir sistemdir.</Description>
<Archive type="targz" sha1sum="1def0dce0eaebe39f326a47a0f089453984aae47">https://dl.dropboxusercontent.com/s/bh3fdcg2y65kid2/etakip-06042014.tar.gz</Archive>
<SourceURI>e-takip/pspec.xml</SourceURI>
</Source>
<Package>
<Name>e-takip</Name>
<RuntimeDependencies>
<Dependency>jre7-openjdk</Dependency>
<Dependency>jre7-openjdk-headless</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/java/e-takip</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2014-04-06</Date>
<Version>1.0</Version>
<Comment>First Release</Comment>
<Name>Alihan Öztürk</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>google-talkplugin</Name>
<Homepage>http://www.google.com/chat/video</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>[email protected]</Email>
</Packager>
<License>as-is</License>
<License>openssl</License>
<IsA>library</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Video chat browser plug-in for Google Talk</Summary>
<Summary xml:lang="tr">Google Talk için video sohbet tarayıcı eklentisi</Summary>
<Description xml:lang="en">The Google Talk Plugin is a browser plugin that enables you to use Google voice and video chat to chat face to face with family and friends.</Description>
<Description xml:lang="tr">Google Talk Plugin, aileniz ve arkadaşlarınızla yüz yüze sohbet etmek için Google'nin sesli ve görüntülü sohbet hizmetini kullanmanızı sağlayan bir tarayıcı eklentisidir.</Description>
<Archive type="binary" sha1sum="1c3cc0411444587b56178de4868eb5d0ff742ec0" target="x86_64">http://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb</Archive>
<SourceURI>google-talkplugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>google-talkplugin</Name>
<RuntimeDependencies>
<Dependency>alsa-lib</Dependency>
<Dependency>cairo</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>freetype</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libXt</Dependency>
<Dependency>mesa</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>pango</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/opt/google/talkplugin/GoogleTalkPlugin</Path>
<Path fileType="config">/opt/google/talkplugin/envvars</Path>
<Path fileType="executable">/opt/google/talkplugin</Path>
<Path fileType="library">/opt/google/talkplugin/lib</Path>
<Path fileType="library">/opt/google/talkplugin/libnpg*</Path>
<Path fileType="library">/opt/google/talkplugin/libgoogle*</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/opt/google/talkplugin/windowpicker.glade</Path>
<Path fileType="data">/opt/google/talkplugin/data</Path>
<Path fileType="localedata">/opt/google/talkplugin/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/usr/share/doc/google-talkplugin/LICENSE" permission="0644" owner="root">LICENSE</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="13">
<Date>2016-03-31</Date>
<Version>5.4.3.0</Version>
<Comment>Rebuild.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="12">
<Date>2015-08-10</Date>
<Version>5.4.3.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="11">
<Date>2014-08-27</Date>
<Version>5.4.2.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="10">
<Date>2014-04-08</Date>
<Version>5.2.4.0</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="9">
<Date>2013-11-17</Date>
<Version>4.9.1.0</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="8">
<Date>2013-10-19</Date>
<Version>4.7.0.0</Version>
<Comment>rebuild</Comment>
<Name>Richard de Bruin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="7">
<Date>2013-10-19</Date>
<Version>4.7.0.0</Version>
<Comment>Version bump</Comment>
<Name>Richard de Bruin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="6">
<Date>2013-04-10</Date>
<Version>4.2.1.0</Version>
<Comment>Version bump</Comment>
<Name>Erdinç Gültekin</Name>
<Email>[email protected]</Email>
</Update>
<Update release="5">
<Date>2013-04-10</Date>
<Version>3.10.2.0</Version>
<Comment>Version bump</Comment>
<Name>Sezai Yeniay</Name>
<Email>[email protected]</Email>
</Update>
<Update release="4">
<Date>2012-11-09</Date>
<Version>3.10.2.0</Version>
<Comment>Version bump</Comment>
<Name>Anıl Özbek</Name>
<Email>[email protected]</Email>
</Update>
<Update release="3">
<Date>2012-08-20</Date>
<Version>3.2.4.0</Version>
<Comment>Version bump</Comment>
<Name>Anıl Özbek</Name>
<Email>[email protected]</Email>
</Update>
<Update release="2">
<Date>2012-05-27</Date>
<Version>2.9.10.0</Version>
<Comment>Version bump</Comment>
<Name>Anıl Özbek</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2012-04-30</Date>
<Version>2.8.5.0</Version>
<Comment>First release</Comment>
<Name>Fatih Arslan</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>viber</Name>
<Homepage>http://www.viber.com/products/linux/</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>[email protected]</Email>
</Packager>
<License>custom</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">Free calls, text and picture sharing with anyone, anywhere!</Summary>
<Summary xml:lang="tr">Konuşma ve yazışma uygulaması</Summary>
<Description xml:lang="en">Free calls, text and picture sharing with anyone, anywhere!</Description>
<Description xml:lang="tr">Ücretsiz arama, mesajlaşma ve konuşma yazılımı</Description>
<Icon>viber</Icon>
<Archive type="tarxz" sha1sum="59fe606f84c81a8d1cb8df606bb5e25bf4c750a9">https://dl.dropboxusercontent.com/u/60245852/source/viber-3.1.2.3.tar.xz</Archive>
<SourceURI>viber/pspec.xml</SourceURI>
</Source>
<Package>
<Name>viber</Name>
<RuntimeDependencies>
<Dependency>mesa</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libxslt</Dependency>
<Dependency>libXext</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libXcomposite</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/viber</Path>
<Path fileType="data">/usr/share/pixmaps</Path>
<Path fileType="data">/usr/share/applications</Path>
</Files>
<Provides>
<COMAR script="package.py">System.Package</COMAR>
</Provides>
</Package>
<History>
<Update release="1">
<Date>2014-03-23</Date>
<Version>3.1.2.3</Version>
<Comment>First Release</Comment>
<Name>Osman Erkan</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>teamviewer</Name>
<Homepage>http://www.teamviewer.com/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>[email protected]</Email>
</Packager>
<License>as-is</License>
<License>TeamViewer GmbH</License>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<Summary xml:lang="en">User friendly remote control application</Summary>
<Summary xml:lang="tr">Kullanıcı dostu masaüstü paylaşım uygulaması</Summary>
<Description xml:lang="en">TeamViewer is a computer software for remote control, desktop sharing, and file transfer between Linux, Windows and Apple computers. TeamViewer is free for personal use. You can use TeamViewer completely free of charge to access your private computers or to help your friends with their computer problems. To buy a license for commercial use, please visit http://www.teamviewer.com</Description>
<Description xml:lang="tr">Teamviewer uzaktan bakım,online sunum ,dosya transferi yapmaya olanak sağlayan bir masaüstü paylaşım yazılımıdır.</Description>
<Archive type="binary" sha1sum="b6b0b07a92d975e33ed97b5a453ed7a738ceb387">http://download.teamviewer.com/download/teamviewer.i686.rpm</Archive>
<BuildDependencies>
<Dependency>rpm2targz</Dependency>
</BuildDependencies>
<SourceURI>teamviewer/pspec.xml</SourceURI>
</Source>
<Package>
<Name>teamviewer</Name>
<RuntimeDependencies>
<Dependency>libXtst-32bit</Dependency>
<Dependency>teamviewer-fonts</Dependency>
<Dependency>alsa-lib-32bit</Dependency>
<Dependency>libXdamage-32bit</Dependency>
<Dependency>zlib-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
<Dependency>libSM-32bit</Dependency>
<Dependency>libX11-32bit</Dependency>
<Dependency>libXau-32bit</Dependency>
<Dependency>libXext-32bit</Dependency>
<Dependency>libXrandr-32bit</Dependency>
<Dependency>libXfixes-32bit</Dependency>
<Dependency>libXrender-32bit</Dependency>
<Dependency>harfbuzz-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/opt/teamviewer*</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="config">/etc/init.d</Path>
<Path fileType="config">/etc/teamviewer</Path>
<Path fileType="data">/var/log</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<Provides>
<COMAR script="service.py">System.Service</COMAR>
</Provides>
<AdditionalFiles>
<AdditionalFile target="/usr/share/applications/teamviewer.desktop" permission="0644" owner="root">teamviewer.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/pixmaps/teamviewer.png" permission="0644" owner="root">teamviewer.png</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="7">
<Date>2016-03-31</Date>
<Version>11.0.57095</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>[email protected]</Email>
</Update>
<Update release="6">
<Date>2015-08-21</Date>
<Version>10.0.46203</Version>
<Comment>Version bump</Comment>
<Name>Ergün Salman</Name>
<Email>[email protected]</Email>
</Update>
<Update release="5">
<Date>2015-01-20</Date>
<Version>10.0.37742</Version>
<Comment>Version bump</Comment>
<Name>Ergün Salman</Name>
<Email>[email protected]</Email>
</Update>
<Update release="4">
<Date>2014-12-09</Date>
<Version>10.0.36281</Version>
<Comment>Version bump</Comment>
<Name>Ergün Salman</Name>
<Email>[email protected]</Email>
</Update>
<Update release="3">
<Date>2014-12-03</Date>
<Version>10.0.35002</Version>
<Comment>Version bump</Comment>
<Name>Ergün Salman</Name>
<Email>[email protected]</Email>
</Update>
<Update release="2">
<Date>2014-05-10</Date>
<Version>9.0.24147</Version>
<Comment>*Version bump to 9 series
*Add comar script</Comment>
<Name>Alihan Öztürk</Name>
<Email>[email protected]</Email>
</Update>
<Update release="1">
<Date>2013-08-03</Date>
<Version>7.0.9377</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>[email protected]</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>draftsight</Name>
<Homepage>http://www.3ds.com/products-services/draftsight</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>[email protected]</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="85c17d5576977dea7dfb85668c3f678b70255acf">http://www.draftsight.com/download-linux-fedora</Archive>
<BuildDependencies>
<Dependency>rpm2targz</Dependency>
</BuildDependencies>
<SourceURI>draftsight/pspec.xml</SourceURI>
</Source>
<Package>
<Name>draftsight</Name>
<RuntimeDependencies>
<Dependency>glib2-32bit</Dependency>
<Dependency>mesa-glu-32bit</Dependency>
<Dependency>mesa-32bit</Dependency>
<Dependency>cups-32bit</Dependency>
<Dependency>libglade</Dependency>
<Dependency>libICE-32bit</Dependency>
<Dependency>libSM-32bit</Dependency>
<Dependency>libX11-32bit</Dependency>
<Dependency>libXext-32bit</Dependency>
<Dependency>libXrender-32bit</Dependency>
<Dependency>libXt-32bit</Dependency>
<Dependency>nas-32bit</Dependency>
<Dependency>zlib-32bit</Dependency>
<Dependency>alsa-lib-32bit</Dependency>
<Dependency>fontconfig-32bit</Dependency>
<Dependency>expat-32bit</Dependency>
<Dependency>libudev-32bit</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>