├── .gitignore ├── README.md ├── desktop ├── component.xml ├── enlightenment │ ├── README.MD │ ├── addon │ │ ├── component.xml │ │ └── econnman │ │ │ ├── actions.py │ │ │ └── pspec.xml │ ├── base │ │ ├── component.xml │ │ ├── efl │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── enlightenment │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-efl │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ └── terminology │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ └── component.xml ├── font │ ├── Bitstream-Vera-fonts │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── component.xml ├── gnome │ └── component.xml ├── gnome2 │ ├── component.xml │ ├── gimagereader-gtk │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── gtkspellmm │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libgnome │ │ ├── actions.py │ │ ├── files │ │ │ └── default-settings.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libgnomecanvas │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── libgnomeui │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── kde │ ├── component.xml │ └── wacomtablet │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── lookandfeel │ ├── component.xml │ ├── gtk-theme-lounge │ │ ├── actions.py │ │ ├── files │ │ │ ├── disable_insensitive_widget_shade.patch │ │ │ └── fix_button_border.patch │ │ └── pspec.xml │ └── qtstyleplugins │ │ ├── actions.py │ │ ├── files │ │ ├── 0001-fix-build-against-Qt-5.15.patch │ │ └── 0002-fix-gtk2-background.patch │ │ └── pspec.xml ├── misc │ ├── arronax │ │ ├── actions.py │ │ └── pspec.xml │ ├── component.xml │ ├── cponysay │ │ ├── actions.py │ │ └── pspec.xml │ ├── gtkhash │ │ ├── actions.py │ │ └── pspec.xml │ ├── jgmenu │ │ ├── actions.py │ │ ├── files │ │ │ └── button_release.patch │ │ └── pspec.xml │ ├── libxfce4ui-nocsd │ │ ├── actions.py │ │ ├── files │ │ │ └── libxfce4ui_center_window.patch │ │ └── pspec.xml │ ├── log4cxx │ │ ├── actions.py │ │ ├── files │ │ │ └── log4cxx-0.10.0-missing_includes.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── lwa-hot-corners │ │ ├── actions.py │ │ └── pspec.xml │ ├── modem-manager-gui │ │ ├── actions.py │ │ ├── files │ │ │ ├── Missing_tray_icon.patch │ │ │ └── NetworkManager_1_40.patch │ │ └── pspec.xml │ ├── mpd-notification │ │ ├── actions.py │ │ └── pspec.xml │ ├── rainbow-cm │ │ ├── actions.py │ │ └── pspec.xml │ ├── spacefm │ │ ├── actions.py │ │ ├── files │ │ │ └── Fix_glib_segfaults.patch │ │ └── pspec.xml │ ├── stalonetray │ │ ├── actions.py │ │ └── pspec.xml │ └── xfwm4 │ │ ├── actions.py │ │ ├── files │ │ └── xfwm4_center_window.patch │ │ └── pspec.xml └── toolkit │ ├── component.xml │ └── gtk │ ├── component.xml │ ├── gtk3-classic │ ├── actions.py │ ├── comar │ │ └── pakhandler.py │ ├── files │ │ ├── 784e93ba4a62e3b863a981ab9ac4b8ed898efc6e.patch │ │ ├── gtk3-atk.patch │ │ ├── gtk3-calendar.patch │ │ ├── gtk3-classic-3.24.29 │ │ │ ├── appearance__buttons-menus-icons.patch │ │ │ ├── appearance__disable-backdrop.patch │ │ │ ├── appearance__file-chooser.patch │ │ │ ├── appearance__message-dialogs.patch │ │ │ ├── appearance__print-dialog.patch │ │ │ ├── appearance__smaller-statusbar.patch │ │ │ ├── csd__clean-headerbar.patch │ │ │ ├── csd__disabled-by-default.patch │ │ │ ├── csd__server-side-shadow.patch │ │ │ ├── file-chooser__places-sidebar.patch │ │ │ ├── file-chooser__places-sidebar_3_24_30.patch │ │ │ ├── file-chooser__typeahead.patch │ │ │ ├── fixes__atk-bridge-errors.patch │ │ │ ├── fixes__labels-wrapping.patch │ │ │ ├── notebook_wheel_scroll.patch │ │ │ ├── other__default-settings.patch │ │ │ ├── other__hide-insert-emoji.patch │ │ │ ├── other__mnemonics-delay.patch │ │ │ ├── popovers__color-chooser.patch │ │ │ ├── popovers__file-chooser-list.patch │ │ │ └── popovers__places-sidebar.patch │ │ ├── gtk3-popovers.patch │ │ └── gtk3-toolbar.patch │ └── pspec.xml │ └── gtksourceview │ ├── actions.py │ ├── files │ ├── gtksourceview-2.11-add-libs.patch │ ├── gtksourceview-2.11-fix-GCONST-def.patch │ ├── gtksourceview-2.11-glib-unicode-constant.patch │ └── gtksourceview-2.11.2-cflags.patch │ ├── pspec.xml │ └── translations.xml ├── editor ├── component.xml ├── geany-gtk2 │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── lyx │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── micro │ ├── actions.py │ ├── pspec.xml │ └── translations.xml └── texmaker │ ├── actions.py │ └── pspec.xml ├── game ├── Emulator │ ├── component.xml │ └── snes9x │ │ ├── actions.py │ │ ├── files │ │ └── snes9x.desktop │ │ ├── pspec.xml │ │ └── translations.xml ├── arcade │ ├── component.xml │ └── zaz │ │ ├── actions.py │ │ ├── files │ │ ├── desktop.patch │ │ ├── tr-translation.patch │ │ └── zaz.png │ │ ├── pspec.xml │ │ └── translations.xml ├── board │ └── component.xml ├── component.xml ├── fps │ └── component.xml ├── misc │ ├── component.xml │ └── simgear │ │ ├── actions.py │ │ ├── files │ │ ├── 0001-remove-unneeded-header.patch │ │ └── 0002-check-to-be-sure-that-n-is-not-being-set-as-format-t.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── simulation │ ├── component.xml │ ├── flightgear-data-base │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translatıons.xml │ ├── flightgear │ │ ├── actions.py │ │ ├── files │ │ │ ├── flightgear.desktop │ │ │ └── flightgear.png │ │ ├── pspec.xml │ │ └── translations.xml │ └── opencity │ │ ├── actions.py │ │ ├── files │ │ ├── desktop.patch │ │ ├── gcc-4.7-fixes.patch │ │ ├── opencity-as-needed.patch │ │ └── pisilinux-makefile.patch │ │ ├── pspec.xml │ │ └── translations.xml └── strategy │ ├── component.xml │ └── freeciv │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── hardware ├── component.xml ├── disk │ ├── afflib │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── aimage │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ └── ddrescue │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── emulator │ └── component.xml ├── misc │ ├── component.xml │ └── tlp │ │ ├── actions.py │ │ ├── comar │ │ └── package.py │ │ ├── pspec.xml │ │ └── translations.xml ├── mobile │ ├── component.xml │ ├── cutegram │ │ ├── actions.py │ │ └── pspec.xml │ ├── libqtelegram-ae │ │ ├── actions.py │ │ └── pspec.xml │ └── telegramqml │ │ ├── actions.py │ │ └── pspec.xml ├── optical │ └── component.xml └── virt-viewer │ ├── actions.py │ ├── files │ ├── 41cc016278e713d3db156761fce6437dff81a53a.patch │ └── drop-header.patch │ ├── pspec.xml │ └── translations.xml ├── multimedia ├── component.xml ├── converter │ ├── component.xml │ ├── fig2dev │ │ ├── actions.py │ │ └── pspec.xml │ ├── pythonmagick │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── transcode │ │ ├── actions.py │ │ ├── files │ │ ├── transcode-1.1.7-ffmpeg4-1.patch │ │ ├── transcode-gcc10.patch │ │ ├── transcode-glibc-2.32.patch │ │ ├── transcode-imagemagick7.patch │ │ └── transcode-swresample.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── editor │ └── component.xml ├── graphics │ ├── charls │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── dcmtk │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── dcraw │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── gcolor2 │ │ ├── actions.py │ │ ├── files │ │ │ ├── about_icon.png │ │ │ ├── amd64_correction.patch │ │ │ ├── gcolor2.desktop │ │ │ └── icon.png │ │ └── pspec.xml │ ├── gthumb │ │ ├── actions.py │ │ └── pspec.xml │ ├── milton │ │ ├── actions.py │ │ ├── files │ │ │ ├── Fix_extern_C.patch │ │ │ ├── milton.desktop │ │ │ └── use_system_sdl.patch │ │ └── pspec.xml │ ├── sk1 │ │ ├── actions.py │ │ └── pspec.xml │ └── uniconvertor │ │ ├── actions.py │ │ └── pspec.xml ├── misc │ ├── component.xml │ ├── libspotify │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── sdl-gfx │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── plugin │ └── component.xml ├── sound │ ├── component.xml │ ├── gmusicbrowser │ │ ├── actions.py │ │ ├── files │ │ │ ├── fix_show_hide_option_of_window_in_pekwm.patch │ │ │ └── use_symbolic_system_theme_icons_where_possible.patch │ │ └── pspec.xml │ ├── musique │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── strawberry │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── tizonia-all │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── webrtc-audio-processing │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── stream │ ├── component.xml │ └── mate-applet-streamer │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml └── video │ ├── component.xml │ ├── gst-ffmpeg │ ├── actions.py │ ├── files │ │ └── gst-ffmpeg-0.10.13_gcc47.patch │ ├── pspec.xml │ └── translations.xml │ ├── qtav │ ├── actions.py │ └── pspec.xml │ └── sgvrecord │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── network ├── analyzer │ ├── against │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── airpwn │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── albatar │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── allthevhosts │ │ ├── actions.py │ │ ├── files │ │ │ └── allthevhosts.py.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── amap │ │ ├── actions.py │ │ ├── files │ │ │ └── pcre.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── arptools │ │ ├── actions.py │ │ ├── files │ │ │ ├── arpflood-bufferoverflow.diff │ │ │ └── bufferoverflow.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── asleap │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── dsniff │ │ ├── actions.py │ │ ├── files │ │ │ ├── 01_time.h.patch │ │ │ ├── 02_mailsnarf_corrupt.patch │ │ │ ├── 03_pcap_read_dump.patch │ │ │ ├── 04_multiple_intf.patch │ │ │ ├── 05_amd64_fix.patch │ │ │ ├── 06_urlsnarf_zeropad.patch │ │ │ ├── 07_libnet_1.1.patch │ │ │ ├── 08_checksum.patch │ │ │ ├── 08_openssl-0.9.8.patch │ │ │ ├── 09_sshcrypto.patch │ │ │ ├── 09_sysconf_clocks.patch │ │ │ ├── 10_urlsnarf_escape.patch │ │ │ ├── 11_string_header.patch │ │ │ ├── 12_arpa_inet_header.patch │ │ │ ├── 13_pop_with_version.patch │ │ │ ├── 14_obsolete_time.patch │ │ │ ├── 15_checksum_libnids.patch │ │ │ ├── 2.3-makefile.patch │ │ │ ├── 20_debian_dirs.patch │ │ │ ├── dsniff-httppostfix.patch │ │ │ └── nolibdir.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── ettercap │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── gssdp │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── gupnp-igd │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── gupnp │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── hydra │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── kismet │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libdnet │ │ ├── actions.py │ │ ├── files │ │ │ ├── libdnet-1.10-nmap2.diff │ │ │ ├── libdnet-1.11-lib_version_fix.diff │ │ │ └── libdnet-shrext.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── lorcon-old │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── ncrack │ │ ├── actions.py │ │ ├── files │ │ │ └── SCTZineNullCheck.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── netcat │ │ ├── actions.py │ │ ├── files │ │ │ ├── connect-timeout.patch │ │ │ ├── gcc-warnings.patch │ │ │ ├── getservbyname.patch │ │ │ ├── glib-strlcpy.patch │ │ │ ├── help-version-exit.patch │ │ │ ├── netcat-openbsd-1.89-makefile.patch │ │ │ ├── netcat-openbsd-1.89-openbsd-compat.patch │ │ │ ├── no-strtonum.patch │ │ │ ├── openbsd-compat.patch │ │ │ ├── pollhup.patch │ │ │ ├── quit-timer.patch │ │ │ ├── reuseaddr.patch │ │ │ ├── send-crlf.patch │ │ │ ├── silence-z.patch │ │ │ ├── socks-b64-prototype.patch │ │ │ ├── udp-scan-timeout.patch │ │ │ └── verbose-numeric-port.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── nfdump │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── ngrep │ │ ├── actions.py │ │ ├── files │ │ │ ├── ngrep-1.45-build-fixes.patch │ │ │ ├── ngrep-1.45-setlocale.patch │ │ │ └── safe_setlocale.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── nikto │ │ ├── actions.py │ │ ├── files │ │ │ └── nikto-fhs.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── snort │ │ ├── actions.py │ │ ├── files │ │ │ ├── etc │ │ │ │ └── snort │ │ │ │ │ ├── attribute_table.dtd │ │ │ │ │ ├── classification.config │ │ │ │ │ ├── gen-msg.map │ │ │ │ │ ├── reference.config │ │ │ │ │ ├── snort.conf │ │ │ │ │ ├── threshold.conf │ │ │ │ │ └── unicode.map │ │ │ └── fix-snort-conf.patch │ │ ├── pspec.xml │ │ └── translations.xml │ └── whois │ │ ├── actions.py │ │ ├── files │ │ └── whois-4.7.2-config-file.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── component.xml ├── connection │ ├── 0trace │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── 3proxy │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── connman │ │ ├── actions.py │ │ ├── comar │ │ │ └── service.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── iw │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── iwd │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── rfkill │ │ ├── actions.py │ │ ├── files │ │ │ ├── rules.d │ │ │ ├── service.block │ │ │ └── service.unblock │ │ ├── pspec.xml │ │ └── translations.xml │ └── sqlninja │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── download │ ├── component.xml │ ├── dropbox │ │ ├── actions.py │ │ ├── files │ │ │ ├── POLICIES │ │ │ ├── dropbox.desktop │ │ │ └── dropbox.png │ │ ├── pspec.xml │ │ └── translations.xml │ ├── flvstreamer │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── httrack │ │ ├── actions.py │ │ ├── files │ │ └── utf-8.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── ftp │ ├── component.xml │ └── lrzsz │ │ ├── actions.py │ │ ├── files │ │ └── lrzsz.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── library │ ├── component.xml │ ├── daq │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── libmnl │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── mail │ └── component.xml ├── misc │ ├── asio │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── clamz │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── enet │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── gnet │ │ ├── actions.py │ │ ├── files │ │ │ └── gnet-2.0.8-define-location.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libdlna │ │ ├── actions.py │ │ ├── files │ │ │ ├── libdlna-ffmpeg.patch │ │ │ ├── libdlna-libav9.patch │ │ │ └── respect-cflags.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libepc │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libgadu │ │ ├── actions.py │ │ ├── files │ │ │ └── no-pthread.diff │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libgsasl │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libgssglue │ │ ├── actions.py │ │ ├── files │ │ │ └── libgssglue-0.1-gssglue.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libmsn │ │ ├── actions.py │ │ ├── files │ │ │ └── libmsn-4.2.1-unistd.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libnetfilter_conntrack │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libnetfilter_queue │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── liferea │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── megasync │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── actions.py │ │ ├── files │ │ │ ├── mega.png │ │ │ └── megasync.desktop │ │ ├── pspec.xml │ │ └── translations.xml │ ├── pion-net │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── protobuf-c │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── putty │ │ ├── actions.py │ │ ├── files │ │ │ ├── putty.desktop │ │ │ ├── putty.png │ │ │ └── putty.xpm │ │ ├── pspec.xml │ │ └── translations.xml │ ├── stunnel │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── yaz │ │ ├── actions.py │ │ ├── files │ │ └── lpthread.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── monitor │ ├── component.xml │ └── iptraf │ │ ├── actions.py │ │ ├── files │ │ ├── 001-iptraf-OSmanOS.patch │ │ ├── 002-iptraf-OSmanOS.patch │ │ ├── 003-iptraf-OSmanOS.patch │ │ ├── 004-iptraf-OSmanOS.patch │ │ ├── iptraf-2.4.0-Makefile.patch │ │ ├── iptraf-2.7.0-doc.patch │ │ ├── iptraf-2.7.0-install.patch │ │ ├── iptraf-2.7.0-nostrip.patch │ │ ├── iptraf-3.0.0-ifname.patch │ │ ├── iptraf-3.0.0-in_trafic.patch │ │ ├── iptraf-3.0.0-interface.patch │ │ ├── iptraf-3.0.0-longdev.patch │ │ ├── iptraf-3.0.0-setlocale.patch │ │ ├── iptraf-3.0.1-compile.fix.patch │ │ ├── iptraf-3.0.1-incltypes.patch │ │ ├── iptraf-3.0.1-ipv6-fix.patch │ │ └── iptraf-3.0.1-ipv6.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── p2p │ ├── component.xml │ ├── ktorrent │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libktorrent │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libtorrent-rakshasa │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── rtorrent │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── torrentinfo │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── share │ ├── component.xml │ └── nfs-utils │ │ ├── actions.py │ │ ├── comar │ │ ├── nfs-common.py │ │ └── nfs-server.py │ │ ├── files │ │ ├── exports │ │ ├── gssapi_mech.conf │ │ ├── idmapd.conf │ │ ├── nfs-utils-1.2.1-exp-subtree-warn-off.patch │ │ ├── nfs-utils-1.2.1-statdpath-man.patch │ │ ├── nfs-utils-1.2.3-sm-notify-res_init.patch │ │ ├── nfs-utils-1.2.5-idmap-errmsg.patch │ │ └── nfs.confd │ │ ├── pspec.xml │ │ └── translations.xml ├── voip │ ├── ace-voip │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── component.xml └── web │ ├── anatine │ ├── actions.py │ ├── files │ │ ├── anatine.desktop │ │ └── anatine.png │ ├── pspec.xml │ └── translations.xml │ ├── caprine │ ├── actions.py │ ├── files │ │ ├── caprine.desktop │ │ └── caprine.png │ ├── pspec.xml │ └── translations.xml │ ├── component.xml │ ├── dillo │ ├── actions.py │ ├── files │ │ ├── gcc10.patch │ │ └── openssl.patch │ └── pspec.xml │ └── midori │ ├── actions.py │ ├── files │ ├── homepage.patch │ └── soversion.patch │ └── pspec.xml ├── office ├── component.xml ├── dictionary │ ├── component.xml │ └── stardict │ │ ├── actions.py │ │ ├── files │ │ ├── defaultdict.cfg │ │ ├── docklet_normal.png │ │ ├── docklet_scan.png │ │ ├── docklet_stop.png │ │ ├── gcc46.patch │ │ ├── glib2.patch │ │ ├── stardict-3.0.3-zlib-1.2.5.2.patch │ │ └── stardict.png │ │ ├── pspec.xml │ │ └── translations.xml ├── docbook │ ├── component.xml │ └── linuxdoc-tools │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── misc │ ├── component.xml │ ├── coolreader-qt │ │ ├── actions.py │ │ └── pspec.xml │ ├── epydoc │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── gcstar │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── mythes │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── pybookreader │ │ ├── actions.py │ │ ├── files │ │ │ ├── ob.desktop │ │ │ ├── obprefs.patch │ │ │ ├── pbrprefs.patch │ │ │ └── pybr.desktop │ │ └── pspec.xml │ ├── simple-fb2-reader │ │ ├── actions.py │ │ └── pspec.xml │ └── xpdf │ │ ├── actions.py │ │ ├── files │ │ └── fontconfig.patch │ │ └── pspec.xml └── spellcheck │ ├── component.xml │ └── hyphen │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── pisi-index.xml ├── pisi-index.xml.sha1sum ├── pisi-index.xml.xz ├── pisi-index.xml.xz.sha1sum ├── programming ├── build │ └── component.xml ├── component.xml ├── debug │ └── component.xml ├── environment │ ├── codelite │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── component.xml ├── language │ ├── component.xml │ ├── dotnet │ │ ├── boo │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── component.xml │ │ ├── gtk-sharp │ │ │ ├── actions.py │ │ │ ├── files │ │ │ │ ├── glib-fix-01.patch │ │ │ │ ├── glib-fix-02.patch │ │ │ │ └── glib-fix-03.patch │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── libgdiplus │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ └── mono │ │ │ ├── actions.py │ │ │ ├── files │ │ │ └── mono.binfmt.d │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ ├── perl │ │ ├── component.xml │ │ ├── perl-Bit-Vector │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── perl-Carp-Clan │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── perl-DBD-SQLite │ │ │ ├── actions.py │ │ │ ├── files │ │ │ │ └── perl-DBD-SQLite-bz543982.patch │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── perl-Date-Calc │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── perl-File-Find-Rule │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── perl-File-Spec-Link │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── perl-Gtk3-Notify │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── perl-LWP-UserAgent-Cached │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── perl-Linux-Desktopfiles │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── perl-MPV-Simple │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── perl-Net-IP │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── perl-Number-Compare │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── perl-Term-Menu │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ └── perl-Text-Glob │ │ │ ├── actions.py │ │ │ └── pspec.xml │ ├── python │ │ ├── capstone │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── component.xml │ │ ├── pyPdf │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── pyqtermwidget │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-Levenshtein │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-apipkg │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-appdirs │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-appinfo │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-backports.functools_lru_cache │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-beautifulsoup4 │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-casttube │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-dnspython │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-dpkt │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-fudge │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-funcsigs │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-future │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-fuzzywuzzy │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-gmusicapi │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-gpsoauth │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-greenlet │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-httplib2 │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-ifaddr │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-iniconfig │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-mechanicalsoup │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-mock │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-monotonic │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-msgpack │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-oauth2client │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-paramiko │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pefile │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-plexapi │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-ply │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-prelude │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-proboscis │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pyasn1-modules │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pyasn1 │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pycrypto │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pycryptodome │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pycryptodomex │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pyelftools │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pylibacl │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pypcap │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pypdf2 │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pyspotify │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pysqlite │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-pyxattr │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-qt │ │ │ ├── actions.py │ │ │ ├── files │ │ │ │ └── add_gettext_support.patch │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-rsa │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-soupsieve │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-sphinx-testing │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-spotipy │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-sqlalchemy │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-validictory │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-whoosh │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python-xapian │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── sarmanpisi │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ └── sip2 │ │ │ ├── actions.py │ │ │ ├── files │ │ │ ├── disable-rpaths.diff │ │ │ ├── fix-linking.diff │ │ │ └── no-strip.patch │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ ├── python3 │ │ ├── component.xml │ │ ├── python3-apipkg │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-biplist │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-casttube │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-dnspython │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-dpkt │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-eventlet │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-fudge │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-gmusicapi │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-gpsoauth │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-greenlet │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-httplib2 │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-iniconfig │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-joblib │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-mechanicalsoup │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-mock │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-monotonic │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-msgpack │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-oauth2client │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-pdfkit │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-pefile │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-plexapi │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-ply │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-pockets │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-prelude │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-proboscis │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-pyside2-tools │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-pyside2 │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-pyspotify │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-pyxattr │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-regex │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-retdec │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-rsa │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-shiboken2 │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-soundcloud │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-sphinx-bootstrap-theme │ │ │ ├── actions.py │ │ │ └── pspec.xml │ │ ├── python3-sphinx-testing │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-sphinxcontrib-napoleon │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-spotipy │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-titlecase │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ ├── python3-whoosh │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ │ └── python3-xapian │ │ │ ├── actions.py │ │ │ ├── pspec.xml │ │ │ └── translations.xml │ └── ruby │ │ ├── component.xml │ │ ├── ruby-bundler │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ │ └── ruby-gtk2 │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── library │ ├── component.xml │ ├── ddcutil │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── geany-plugins-gtk2 │ │ ├── actions.py │ │ ├── files │ │ │ ├── Add_support_for_libgit2_1_4.patch │ │ │ └── Simplify_libgit2_version_checks.patch │ │ └── pspec.xml │ ├── i2c-tools │ │ ├── actions.py │ │ ├── files │ │ │ ├── 0001-i2c-tools-i2cbusses-Avoid-buffer-overflows-in-sysfs-.patch │ │ │ ├── 0002-tools-i2cbusses-Check-the-return-value-of-snprintf.patch │ │ │ └── 0003-py-smbus-Fix-FSF-address-in-smbusmodule.c.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── libb2 │ │ ├── actions.py │ │ └── pspec.xml │ ├── libcurl-gnutls │ │ ├── actions.py │ │ ├── files │ │ │ └── curl-ac.patch │ │ └── pspec.xml │ ├── libdockapp │ │ ├── actions.py │ │ └── pspec.xml │ └── yad-gtk2 │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── misc │ ├── component.xml │ ├── cowsay │ │ ├── actions.py │ │ ├── files │ │ │ ├── SCTZineInstallFix.patch │ │ │ └── cowsay.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── dracut │ │ ├── actions.py │ │ ├── comar │ │ │ ├── package.py │ │ │ └── packageHandler.py │ │ ├── files │ │ │ └── dracutrc.d │ │ │ │ ├── apply-live-updates.sh │ │ │ │ ├── ayarlar.sh │ │ │ │ ├── checkisomd5@.service │ │ │ │ ├── dmsquash-generator.sh │ │ │ │ ├── dmsquash-live-genrules.sh │ │ │ │ ├── dmsquash-live-root.sh │ │ │ │ ├── dmsquash-liveiso-genrules.sh │ │ │ │ ├── iso-scan.sh │ │ │ │ ├── module-setup.sh │ │ │ │ ├── parse-dmsquash-live.sh │ │ │ │ └── parse-iso-scan.sh │ │ └── pspec.xml │ ├── libnfsidmap │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── log4cpp │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── redshift │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── scm │ ├── component.xml │ └── gource │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml └── tool │ ├── component.xml │ └── dejagnu │ ├── actions.py │ ├── files │ ├── env-timeout.patch │ ├── etc-dejagnu.patch │ └── site.exp │ ├── pspec.xml │ └── translations.xml ├── science ├── astronomy │ ├── celestia │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── component.xml ├── chemistry │ ├── avogadrolibs │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── libmsym │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── molequeue │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── spglib │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── component.xml ├── gis │ └── component.xml └── mathematics │ ├── component.xml │ ├── dynare │ ├── actions.py │ ├── pspec.xml │ └── translations.xml │ ├── onyx │ ├── actions.py │ ├── files │ │ ├── onyx.desktop │ │ └── onyx.png │ ├── pspec.xml │ └── translations.xml │ ├── pspp │ ├── actions.py │ ├── files │ │ ├── pspp.desktop │ │ ├── pspp.mo │ │ ├── splash.png │ │ └── tr.po │ ├── pspec.xml │ └── translations.xml │ └── sofastats │ ├── actions.py │ ├── files │ ├── sofa.desktop │ ├── sofa.png │ └── sofastats.mo │ ├── pspec.xml │ └── translations.xml ├── server ├── component.xml └── web │ ├── component.xml │ └── libmicrohttpd │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── system ├── component.xml ├── devel │ └── component.xml ├── installer │ └── component.xml └── libpng12 │ ├── actions.py │ ├── files │ └── apng.patch │ ├── pspec.xml │ └── translations.xml ├── tex ├── component.xml ├── texlive-formatsextra │ ├── actions.py │ ├── comar │ │ └── package.py │ ├── pspec.xml │ └── translations.xml ├── texlive-langcyrillic │ ├── actions.py │ ├── comar │ │ └── package.py │ ├── files │ │ └── texlive-langcyrillic.maps │ ├── pspec.xml │ └── translations.xml ├── texlive-langextra │ ├── actions.py │ ├── comar │ │ └── package.py │ ├── files │ │ └── texlive-langextra.maps │ └── pspec.xml ├── texlive-latexextra │ ├── actions.py │ ├── comar │ │ └── package.py │ ├── files │ │ └── texlive-latexextra.maps │ ├── pspec.xml │ └── translations.xml ├── texlive-pictures │ ├── actions.py │ ├── comar │ │ └── package.py │ ├── files │ │ └── texlive-pictures.maps │ ├── pspec.xml │ └── translations.xml └── texlive-science │ ├── actions.py │ ├── comar │ └── package.py │ ├── files │ └── texlive-science.maps │ ├── pspec.xml │ └── translations.xml ├── util ├── admin │ ├── androidpincrack │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── androidsniffer │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── crunch │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── patchelf │ │ ├── actions.py │ │ └── pspec.xml │ ├── pdfid │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── peepdf │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── vaktisalah │ │ ├── actions.py │ │ ├── files │ │ │ ├── VaktiSalah.desktop │ │ │ └── vaktisalah.png │ │ ├── pspec.xml │ │ └── translations.xml │ ├── xrdp │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── xtermcolourchart │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── antivirus │ ├── clamav-database │ │ ├── actions.py │ │ └── pspec.xml │ └── component.xml ├── archive │ ├── atool │ │ ├── actions.py │ │ ├── files │ │ │ └── bash-completion.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── bchunk │ │ ├── actions.py │ │ ├── files │ │ │ └── 01-track-size.dpatch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── lrzip │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── lxsplit │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── makeself │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── mt-st │ │ ├── actions.py │ │ ├── files │ │ │ ├── mt-st-0.7-config-files.patch │ │ │ ├── mt-st-0.9b-manfix.patch │ │ │ ├── mt-st-1.1-SDLT.patch │ │ │ ├── mt-st-1.1-mtio.patch │ │ │ └── mt-st-1.1-redhat.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── par2cmdline │ │ ├── actions.py │ │ ├── files │ │ │ ├── par2cmdline-0.4-gcc4.patch │ │ │ ├── par2cmdline-0.4-letype.patch │ │ │ └── par2cmdline-0.4-offset.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── pbzip2 │ │ ├── actions.py │ │ ├── files │ │ │ └── pbzip2-1.1.2-makefile.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── rdiff-backup │ │ ├── actions.py │ │ ├── files │ │ │ ├── doc_path.patch │ │ │ └── rdiff-backup-completion.bash │ │ ├── pspec.xml │ │ └── translations.xml │ ├── rpm2targz │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── rzip │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── sharutils │ │ ├── .DS_Store │ │ ├── actions.py │ │ ├── files │ │ │ └── sharutils-4.11.1-no-gets.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── unace │ │ ├── actions.py │ │ ├── files │ │ │ ├── .DS_Store │ │ │ ├── 01-only-unace.patch │ │ │ ├── 02-no-io_h.patch │ │ │ ├── 03-gcc-call.patch │ │ │ ├── 04-64bit.patch │ │ │ ├── 05-warning-fixes.patch │ │ │ ├── 06-fix-bad-pointer-arith.patch │ │ │ ├── 07-fix-free-aliasing-issue.patch │ │ │ ├── 08-ulonglong-printf.patch │ │ │ ├── 09-utf8-filenames.patch │ │ │ ├── 10-uninorm-signedness.patch │ │ │ ├── 11-possibly-critical.patch │ │ │ ├── 12-cast-filetime.patch │ │ │ ├── 13-maximum-file-name-length.patch │ │ │ ├── 14-endianness-detection.patch │ │ │ ├── 15-format-security.patch │ │ │ ├── 16-buffer-overflows.patch │ │ │ ├── 17-undefined-behavior-strcpy.patch │ │ │ ├── 18-stack-corruption.patch │ │ │ ├── 19-max-allocate.patch │ │ │ └── 20-isatty.diff │ │ ├── pspec.xml │ │ └── translations.xml │ ├── unalz │ │ ├── actions.py │ │ ├── files │ │ │ ├── flags.patch │ │ │ ├── systemlibs.patch │ │ │ └── unalz-0.65-zlib-get_crc_table-return-type-can-vary.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── unarj │ │ ├── actions.py │ │ ├── files │ │ │ ├── unarj-2.65-CAN-2004-0947.patch │ │ │ └── unarj-2.65-sanitation.patch │ │ ├── pspec.xml │ │ └── translations.xml │ ├── unshield │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ └── xdelta3 │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml ├── component.xml ├── crypt │ ├── aesfix │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── aeskeyfind │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── aespipe │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── afl │ │ ├── actions.py │ │ ├── pspec.xml │ │ └── translations.xml │ ├── component.xml │ ├── johntheripper │ │ ├── actions.py │ │ ├── files │ │ │ ├── john-1.7.6-jumbo-7.diff.gz │ │ │ ├── johntheripper-1.7.3.1-mkdir-sandbox.patch │ │ │ └── johntheripper-1.7.3.1-params.h.patch │ │ ├── pspec.xml │ │ └── translations.xml │ └── skey │ │ ├── actions.py │ │ ├── files │ │ ├── confdir.patch │ │ ├── default_hash.patch │ │ ├── fix_library_info.patch │ │ ├── skey-1.1.5-binary-search.patch │ │ ├── skey-1.1.5-bind-now.patch │ │ ├── skey-1.1.5-fPIC.patch │ │ ├── skey-1.1.5-gentoo.diff │ │ ├── skey-1.1.5-otp.diff │ │ ├── skey-login_name_max.diff │ │ └── zeroed_entries.patch │ │ ├── pspec.xml │ │ └── translations.xml ├── misc │ ├── component.xml │ ├── keepassx │ │ ├── actions.py │ │ ├── files │ │ │ ├── desktop.patch │ │ │ ├── gcc43.patch │ │ │ ├── keepassx-0.4.3-gcc47.patch │ │ │ └── update_tr.patch │ │ ├── pspec.xml │ │ └── translations.xml │ └── sqlitebrowser │ │ ├── actions.py │ │ ├── files │ │ ├── 0001-remove-unneeded-header.patch │ │ └── 0002-check-to-be-sure-that-n-is-not-being-set-as-format-t.patch │ │ ├── pspec.xml │ │ └── translations.xml └── mtpfs │ ├── actions.py │ ├── pspec.xml │ └── translations.xml └── x11 ├── component.xml ├── library ├── component.xml ├── jq │ ├── actions.py │ ├── pspec.xml │ └── translations.xml └── libclc │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── misc ├── component.xml ├── encodings │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── mkfontscale │ ├── actions.py │ ├── pspec.xml │ └── translations.xml └── unifont │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── terminal ├── component.xml └── vte28 │ ├── actions.py │ ├── files │ ├── vte-0.28.0-link.patch │ ├── vte-0.28.2-limit-arguments.patch │ ├── vte-0.28.2-scale.patch │ ├── vte-alt-meta-confusion.patch │ └── vte-python-bugfixes.patch │ ├── pspec.xml │ └── translations.xml ├── util ├── component.xml └── zorg │ ├── actions.py │ ├── comar │ ├── package.py │ └── xorg.display.py │ ├── files │ ├── keyboard-config.patch │ ├── setkeymap-signature.patch │ └── xorg-safe.conf │ ├── pspec.xml │ └── translations.xml ├── wm ├── compiz │ ├── actions.py │ └── pspec.xml ├── component.xml ├── metacity │ ├── actions.py │ └── pspec.xml ├── obconf │ ├── actions.py │ ├── pspec.xml │ └── translations.xml ├── obkey │ ├── actions.py │ └── pspec.xml ├── oblogout │ ├── actions.py │ ├── files │ │ ├── add_turkish_translation.patch │ │ ├── fix_no_splitting.patch │ │ └── option_to_disable_locking_before_suspension+hibernation.patch │ ├── pspec.xml │ └── translations.xml ├── openbox-git │ ├── actions.py │ ├── files │ │ ├── autostart │ │ ├── kedicik.png │ │ ├── menu.xml │ │ ├── obmenu-generator │ │ ├── openbox-3.5.0-title-matching.patch │ │ ├── openbox-3.5.0-which-2.20.patch │ │ ├── openbox_window_snap.patch │ │ └── schema.pl │ ├── pspec.xml │ └── translations.xml ├── openbox-menu │ ├── actions.py │ ├── files │ │ └── Remove_icon_theme_annoying_variable.patch │ ├── pspec.xml │ └── translations.xml └── openbox-obsession │ ├── actions.py │ ├── pspec.xml │ └── translations.xml └── xclip ├── actions.py ├── pspec.xml └── translations.xml /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Old Contrib 2 | packages not supported with PisiLinux team 3 | -------------------------------------------------------------------------------- /desktop/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop 3 | 4 | -------------------------------------------------------------------------------- /desktop/enlightenment/README.MD: -------------------------------------------------------------------------------- 1 |
2 |

Enlightenment Window Manager

3 | 4 |
5 | -------------------------------------------------------------------------------- /desktop/enlightenment/addon/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.enlightenment.addon 3 | 4 | -------------------------------------------------------------------------------- /desktop/enlightenment/base/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.enlightenment.base 3 | 4 | -------------------------------------------------------------------------------- /desktop/enlightenment/base/efl/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | efl 5 | Enlightenment kütüphaneleri. 6 | efl,Enlightenment için çalışma kütüphanelerini içerir. 7 | 8 | 9 | 10 | efl-devel 11 | efl için geliştirme başlıkları 12 | 13 | 14 | -------------------------------------------------------------------------------- /desktop/enlightenment/base/python-efl/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import pisitools 9 | 10 | def build(): 11 | pythonmodules.compile(pyVer = "3") 12 | 13 | def install(): 14 | pythonmodules.install(pyVer = "3") 15 | 16 | pisitools.dodoc("AUTHORS") 17 | 18 | -------------------------------------------------------------------------------- /desktop/enlightenment/base/terminology/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import mesontools 8 | from pisi.actionsapi import pisitools 9 | 10 | def setup(): 11 | mesontools.configure() 12 | 13 | def build(): 14 | mesontools.build() 15 | 16 | def install(): 17 | mesontools.install() 18 | 19 | pisitools.dodoc("AUTHORS", "NEWS") 20 | 21 | -------------------------------------------------------------------------------- /desktop/enlightenment/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.enlightenment 3 | 4 | -------------------------------------------------------------------------------- /desktop/font/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.font 3 | 4 | -------------------------------------------------------------------------------- /desktop/gnome/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.gnome 3 | 4 | -------------------------------------------------------------------------------- /desktop/gnome2/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.gnome2 3 | 4 | -------------------------------------------------------------------------------- /desktop/gnome2/gimagereader-gtk/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gimagereader-gtk 5 | Gtk front-end to tesseract-ocr 6 | GTK ön uç tesseract-ocr için 7 | 8 | 9 | -------------------------------------------------------------------------------- /desktop/gnome2/gtkspellmm/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gtkspellmm 5 | C++ binding for gtkspell 6 | C++ binding for gtkspell 7 | 8 | 9 | -------------------------------------------------------------------------------- /desktop/gnome2/libgnomecanvas/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | libgnomecanvas 5 | Gnome 2 Canvas Kitaplıkları 6 | 7 | 8 | 9 | libgnomecanvas-devel 10 | libgnomecanvas için geliştirme dosyaları 11 | 12 | 13 | -------------------------------------------------------------------------------- /desktop/kde/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.kde 3 | 4 | -------------------------------------------------------------------------------- /desktop/kde/wacomtablet/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import kde5 9 | 10 | def setup(): 11 | kde5.configure() 12 | 13 | def build(): 14 | kde5.make() 15 | 16 | def install(): 17 | kde5.install() 18 | 19 | pisitools.dodoc("AUTHORS", "COPYING", "README*") 20 | -------------------------------------------------------------------------------- /desktop/kde/wacomtablet/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | wacomtablet 5 | KDE GUI for the Wacom Linux Drivers 6 | Linux Wacom Projesi, Linux işletim sistemi altında Wacom tabletlerini yapılandırmak ve çalıştırmak için sürücüleri, kütüphaneleri ve belgeleri yönetir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /desktop/lookandfeel/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.lookandfeel 3 | 4 | -------------------------------------------------------------------------------- /desktop/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.misc 3 | 4 | -------------------------------------------------------------------------------- /desktop/misc/cponysay/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import cmaketools 8 | from pisi.actionsapi import pisitools 9 | 10 | def setup(): 11 | pass 12 | 13 | def build(): 14 | cmaketools.make() 15 | 16 | def install(): 17 | pisitools.dobin("build/cponysay") 18 | pisitools.dosym("/usr/bin/cponysay", "/usr/bin/ponysay") 19 | -------------------------------------------------------------------------------- /desktop/misc/lwa-hot-corners/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import autotools, pisitools, get 8 | 9 | def setup(): 10 | pisitools.dosed("Makefile", " -march=native", "") 11 | 12 | def build(): 13 | autotools.make() 14 | 15 | def install(): 16 | autotools.rawInstall("DESTDIR=%s" % get.installDIR()) 17 | 18 | # pisitools.dodoc("") 19 | -------------------------------------------------------------------------------- /desktop/misc/rainbow-cm/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import autotools, get 8 | 9 | def setup(): 10 | autotools.autoreconf("-vif") 11 | autotools.configure() 12 | 13 | def build(): 14 | autotools.make() 15 | 16 | def install(): 17 | autotools.rawInstall("DESTDIR=%s" % get.installDIR()) 18 | -------------------------------------------------------------------------------- /desktop/toolkit/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.toolkit.qt 3 | 4 | -------------------------------------------------------------------------------- /desktop/toolkit/gtk/component.xml: -------------------------------------------------------------------------------- 1 | 2 | desktop.toolkit.gtk 3 | 4 | -------------------------------------------------------------------------------- /editor/component.xml: -------------------------------------------------------------------------------- 1 | 2 | editor 3 | 4 | -------------------------------------------------------------------------------- /editor/geany-gtk2/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | geany 5 | GTK+ based fast and lightweight IDE 6 | GTK+ based fast and lightweight IDE 7 | 8 | 9 | 10 | geany-devel 11 | geany için geliştirme dosyaları 12 | 13 | 14 | -------------------------------------------------------------------------------- /editor/micro/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | micro 5 | Genişletilebilir bir metin düzenleyici 6 | Emacs, gelişmiş, özelleştirilebilir ve esnek bir metin editörüdür. Özellikle program yazanlar tarafından çokça tercih edilen, fare kullanımına gerek bırakmadan çok hızlı çalışma imkânı sağlayan bir editördür. 7 | 8 | 9 | -------------------------------------------------------------------------------- /editor/texmaker/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import qt5 9 | 10 | def setup(): 11 | qt5.configure("texmaker.pro") 12 | 13 | def build(): 14 | qt5.make() 15 | 16 | def install(): 17 | qt5.install() 18 | 19 | -------------------------------------------------------------------------------- /game/Emulator/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game.Emulator 3 | 4 | -------------------------------------------------------------------------------- /game/Emulator/snes9x/files/snes9x.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Version=1.0 4 | Encoding=UTF-8 5 | Name=snes9x 6 | Name[tr]=snes9x 7 | GenericName=snes9x 8 | GenericName[tr]=snes9x 9 | Comment=A portable Emulator for the Super Nintendo Entertainment System - GTK version 10 | Comment[tr]=A portable Emulator for the Super Nintendo Entertainment System - GTK version 11 | Icon=snes9x 12 | Exec=snes9x 13 | Terminal=false 14 | StartupNotify=false 15 | Categories=Application;Game; 16 | -------------------------------------------------------------------------------- /game/Emulator/snes9x/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | snes9x 5 | Süper Nintendo oyunları için emülatör 6 | Süper Nintendo oyunları için emülatör 7 | 8 | 9 | -------------------------------------------------------------------------------- /game/arcade/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game.arcade 3 | 4 | -------------------------------------------------------------------------------- /game/arcade/zaz/files/zaz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/game/arcade/zaz/files/zaz.png -------------------------------------------------------------------------------- /game/arcade/zaz/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | zaz 5 | Luxor ve Zuma benzeri bir oyun 6 | Oyuncunun, ekrandaki topları üçerli gruplar haline getirerek yok ettiği bir oyun. 7 | 8 | 9 | -------------------------------------------------------------------------------- /game/board/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game.board 3 | 4 | -------------------------------------------------------------------------------- /game/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game 3 | 4 | -------------------------------------------------------------------------------- /game/fps/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game.fps 3 | 4 | -------------------------------------------------------------------------------- /game/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game.misc 3 | 4 | -------------------------------------------------------------------------------- /game/simulation/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game.simulation 3 | 4 | -------------------------------------------------------------------------------- /game/simulation/flightgear-data-base/translatıons.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | flightgear-data-base 5 | Flightgear verileri 6 | Flightgear benzetimcisinin temel veri dosyaları. Daha fazla harita için 3 DVD boyutundaki tüm dünya haritası da dahil olmak üzere pek çok farklı veri dosyasını yazılımın sitesinden indirebilirsiniz. 7 | 8 | -------------------------------------------------------------------------------- /game/simulation/flightgear/files/flightgear.desktop: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env xdg-open 2 | [Desktop Entry] 3 | Type=Application 4 | Version=1.0 5 | Encoding=UTF-8 6 | Name=Flight Gear 7 | Name[tr]=Flight Gear 8 | GenericName=Flight Simulation 9 | GenericName[tr]=Uçak Simulasyonu 10 | Icon=flightgear 11 | Exec=fgfs 12 | Terminal=false 13 | StartupNotify=false 14 | Categories=Application;Game;Simulation; 15 | -------------------------------------------------------------------------------- /game/simulation/flightgear/files/flightgear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/game/simulation/flightgear/files/flightgear.png -------------------------------------------------------------------------------- /game/simulation/flightgear/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | flightgear 5 | Açık kodlu uçuş benzetimi 6 | FlightGear, açıkkodlu pek çok platformu destekleyen uçuş benzetim oyunudur. 7 | 8 | 9 | -------------------------------------------------------------------------------- /game/simulation/opencity/files/desktop.patch: -------------------------------------------------------------------------------- 1 | --- opencity.desktop.orig 2007-10-28 20:56:57.000000000 +0200 2 | +++ opencity.desktop 2007-12-11 20:34:02.000000000 +0200 3 | @@ -3,8 +3,10 @@ 4 | Encoding=UTF-8 5 | Comment=A 3D city simulator 6 | Comment[fr]=Jeu de simulation de Ville en 3D 7 | +Comment[tr]=3B Şehir Simülasyonu 8 | Categories=Game;StrategyGame; 9 | Exec=opencity 10 | GenericName=City simulator 11 | GenericName[fr]=Simulateur de ville 12 | +GenericName[tr]=Şehir Simülatörü 13 | Icon=opencity.png 14 | -------------------------------------------------------------------------------- /game/simulation/opencity/files/opencity-as-needed.patch: -------------------------------------------------------------------------------- 1 | --- opencity-0.0.6.2stable/configure.ac~ 2009-10-22 21:00:46.000000000 +0200 2 | +++ opencity-0.0.6.2stable/configure.ac 2009-11-18 18:20:24.000000000 +0100 3 | @@ -48,7 +48,7 @@ 4 | dnl Set CXXFLAGS to disable -g -O2 and support the SDL libraries check 5 | 6 | CXXFLAGS="$SDL_CFLAGS" 7 | -LDFLAGS="$LDFLAGS $SDL_LIBS" 8 | +LIBS="$LIBS $SDL_LIBS -lSDL_mixer -lpng" 9 | 10 | AC_PROG_CXX 11 | AC_LANG_CPLUSPLUS 12 | -------------------------------------------------------------------------------- /game/simulation/opencity/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | opencity 5 | Şehir benzetim oyunu 6 | OpenCity standart C++ ile OpenGL ve SDL kullanılarak sıfırdan yazılmış bir şehir benzetim oyunudur. 7 | 8 | 9 | -------------------------------------------------------------------------------- /game/strategy/component.xml: -------------------------------------------------------------------------------- 1 | 2 | game.strategy 3 | 4 | -------------------------------------------------------------------------------- /hardware/component.xml: -------------------------------------------------------------------------------- 1 | 2 | hardware 3 | 4 | -------------------------------------------------------------------------------- /hardware/disk/component.xml: -------------------------------------------------------------------------------- 1 | 2 | hardware.disk 3 | 4 | -------------------------------------------------------------------------------- /hardware/disk/ddrescue/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ddrescue 5 | Komut satırı veri kurtarma aracı 6 | Ddrescue, bir dosyadan ya da hard disk, cdrom gibi blok aygıtlarından bir başkasına veri kopyalar, okuma hatalarıyla karşılaşıldığında veri kurtarmak için çaba sarfeder. 7 | 8 | 9 | -------------------------------------------------------------------------------- /hardware/emulator/component.xml: -------------------------------------------------------------------------------- 1 | 2 | hardware.emulator 3 | 4 | -------------------------------------------------------------------------------- /hardware/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | hardware.misc 3 | 4 | -------------------------------------------------------------------------------- /hardware/misc/tlp/comar/package.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | 4 | import os 5 | 6 | def postInstall(fromVersion, fromRelease, toVersion, toRelease): 7 | os.system ("/usr/sbin/tlp start") 8 | -------------------------------------------------------------------------------- /hardware/mobile/component.xml: -------------------------------------------------------------------------------- 1 | 2 | hardware.mobile 3 | 4 | -------------------------------------------------------------------------------- /hardware/optical/component.xml: -------------------------------------------------------------------------------- 1 | 2 | hardware.optical 3 | 4 | -------------------------------------------------------------------------------- /multimedia/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia 3 | 4 | -------------------------------------------------------------------------------- /multimedia/converter/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.converter 3 | 4 | -------------------------------------------------------------------------------- /multimedia/converter/fig2dev/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import autotools, pisitools, get 8 | 9 | def setup(): 10 | autotools.configure("--enable-transfig") 11 | 12 | def build(): 13 | autotools.make() 14 | 15 | def install(): 16 | autotools.rawInstall("DESTDIR=%s" % get.installDIR()) 17 | 18 | pisitools.dodoc("CHANGES") 19 | -------------------------------------------------------------------------------- /multimedia/converter/pythonmagick/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | pythonmagick 5 | ImageMagick için Python bağlayıcıları 6 | PythonMagick, ImageMagick kütüphanesi için nesne yönelimli Python bağlayıcılarıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /multimedia/editor/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.editor 3 | 4 | -------------------------------------------------------------------------------- /multimedia/graphics/charls/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | charls 5 | CharLS, a JPEG-LS library 6 | An optimized implementation of the JPEG-LS standard for lossless and near-lossless image compression. 7 | 8 | 9 | 10 | charls-devel 11 | charls için geliştirme dosyaları 12 | 13 | 14 | -------------------------------------------------------------------------------- /multimedia/graphics/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.graphics 3 | 4 | -------------------------------------------------------------------------------- /multimedia/graphics/dcraw/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dcraw 5 | RAW fotoğraf işleme için komut satırı aracı 6 | dcraw, RAW fotoğrafları işlemek için kullanılan bir komut satırı uygulamasıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /multimedia/graphics/gcolor2/files/about_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/multimedia/graphics/gcolor2/files/about_icon.png -------------------------------------------------------------------------------- /multimedia/graphics/gcolor2/files/gcolor2.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Gcolor2 3 | GenericName=A simple GTK+2 color selector 4 | Comment=Choose colours from palette or screen 5 | Keywords=select;pick;detect;choose;colors;palette 6 | Exec=gcolor2 7 | Icon=/usr/share/pixmaps/gcolor2/icon.png 8 | Type=Application 9 | Terminal=false 10 | StartupNotify=true 11 | Categories=Graphics; 12 | -------------------------------------------------------------------------------- /multimedia/graphics/gcolor2/files/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/multimedia/graphics/gcolor2/files/icon.png -------------------------------------------------------------------------------- /multimedia/graphics/milton/files/milton.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.0 3 | Name=Milton 4 | TryExec=milton 5 | Exec=milton %f 6 | Comment=An infinite-canvas paint program 7 | GenericName=Canvas Painting Program 8 | Type=Application 9 | Icon=milton 10 | Categories=Graphics; 11 | Terminal=false 12 | -------------------------------------------------------------------------------- /multimedia/graphics/uniconvertor/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import shelltools 9 | 10 | #WorkDir = "." 11 | 12 | def setup(): 13 | pass 14 | 15 | def build(): 16 | pythonmodules.compile() 17 | 18 | def install(): 19 | pythonmodules.install() 20 | 21 | -------------------------------------------------------------------------------- /multimedia/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.misc 3 | 4 | -------------------------------------------------------------------------------- /multimedia/plugin/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.plugin 3 | 4 | -------------------------------------------------------------------------------- /multimedia/sound/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.sound 3 | 4 | -------------------------------------------------------------------------------- /multimedia/sound/strawberry/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | strawberry 5 | Strawberry müzik oynatma yazılımı. 6 | Strawberry 2018 yılının clementine yazılımından çatallanmış ve Qt5 platformu üzerine yapılmış bir müzik oynatma yazılımı ve düzenleyicisidir. 7 | 8 | -------------------------------------------------------------------------------- /multimedia/sound/tizonia-all/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | tizonia-all 5 | ucbirimden youtube, spotify dinleme ortamı 6 | tizonia-all, Spotify, Google Play Music, YouTube, SoundCloud, Plex sunucuları ve Chromecast aygıtlarından komut satırı üzerinden müzik dinlemenizi sağlayan uygulama. 7 | 8 | -------------------------------------------------------------------------------- /multimedia/sound/webrtc-audio-processing/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | webrtc-audio-processing 5 | AudioProcessing library based on Google's implementation of WebRTC 6 | AudioProcessing library based on Google's implementation of WebRTC 7 | 8 | 9 | -------------------------------------------------------------------------------- /multimedia/stream/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.stream 3 | 4 | -------------------------------------------------------------------------------- /multimedia/stream/mate-applet-streamer/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mate-applet-streamer 5 | Online Radio Applet. 6 | This is a Mate panel applet to let you play your favourite online radio station from your system tray or panel with a single click. 7 | 8 | 9 | -------------------------------------------------------------------------------- /multimedia/video/component.xml: -------------------------------------------------------------------------------- 1 | 2 | multimedia.video 3 | 4 | -------------------------------------------------------------------------------- /multimedia/video/gst-ffmpeg/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gst-ffmpeg 5 | Gstreamer için FFmpeg desteği 6 | 7 | 8 | -------------------------------------------------------------------------------- /multimedia/video/sgvrecord/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | sgvrecord 5 | Simple Tool To Record Screen 6 | Simple Tool To Record Screen 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/against/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | against 5 | Çok hızlı bir ssh saldırı betiği 6 | against.py çok iş parçacıklı port tarama modülü ve keşfedilen tüm sistemlerde veya listesi verilen ip adreslerinde kabadayı-saldırısıyapabilme modülü de içeren çok hızlı bir ssh saldırı betiğidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/albatar/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | albatar 5 | SQLi açığını sömürebilen bir python betiği. 6 | Albatar, SQLi açığını sömürebilen bir python betiği. 7 | 8 | -------------------------------------------------------------------------------- /network/analyzer/amap/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | amap 5 | Amap, gelecek nesil bir tarama aracıdır. 6 | Amap, varsayılan portta dinleme yapmıyor olsa bile uygulamaları ve hizmetleri ayırt edebilen gelecek nesil bir tarama aracıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/arptools/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | arptools 5 | ARP araçları 6 | arptools, libnet ve libpcap kullanarak hazırlanmış ARP araçlarıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/asleap/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # Licensed under the GNU General Public License, version 3. 4 | # See the file http://www.gnu.org/copyleft/gpl.txt 5 | 6 | from pisi.actionsapi import autotools 7 | from pisi.actionsapi import get 8 | from pisi.actionsapi import pisitools 9 | 10 | def build(): 11 | autotools.make() 12 | 13 | def install(): 14 | pisitools.dobin("asleap") 15 | pisitools.dobin("genkeys") 16 | pisitools.dodoc("COPYING", "README", "THANKS") 17 | -------------------------------------------------------------------------------- /network/analyzer/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.analyzer 3 | 4 | -------------------------------------------------------------------------------- /network/analyzer/dsniff/files/08_openssl-0.9.8.patch: -------------------------------------------------------------------------------- 1 | diff -Nur dsniff-2.4-old/ssh.c dsniff-2.4/ssh.c 2 | --- dsniff-2.4-old/ssh.c 2009-09-15 00:11:17.165203268 +0300 3 | +++ dsniff-2.4/ssh.c 2009-09-15 00:11:20.483203077 +0300 4 | @@ -16,6 +16,7 @@ 5 | #include 6 | #include 7 | #include 8 | +#include 9 | 10 | #include 11 | #include 12 | -------------------------------------------------------------------------------- /network/analyzer/dsniff/files/09_sshcrypto.patch: -------------------------------------------------------------------------------- 1 | diff -Nur dsniff-2.4-old/sshcrypto.c dsniff-2.4/sshcrypto.c 2 | --- dsniff-2.4-old/sshcrypto.c 2009-09-15 00:11:17.158475246 +0300 3 | +++ dsniff-2.4/sshcrypto.c 2009-09-15 00:11:20.500202240 +0300 4 | @@ -14,6 +14,8 @@ 5 | 6 | #include 7 | #include 8 | +#include 9 | +#include 10 | 11 | #include 12 | #include 13 | -------------------------------------------------------------------------------- /network/analyzer/dsniff/files/nolibdir.patch: -------------------------------------------------------------------------------- 1 | diff -Nur dsniff-2.4-old/Makefile.in dsniff-2.4/Makefile.in 2 | --- dsniff-2.4-old/Makefile.in 2009-09-15 00:21:19.689452596 +0300 3 | +++ dsniff-2.4/Makefile.in 2009-09-15 00:21:41.257474571 +0300 4 | @@ -16,7 +16,7 @@ 5 | mandir = @mandir@ 6 | 7 | CC = @CC@ 8 | -CFLAGS = @CFLAGS@ -DDSNIFF_LIBDIR=\"$(libdir)/\" 9 | +CFLAGS = @CFLAGS@ 10 | LDFLAGS = @LDFLAGS@ 11 | 12 | PCAPINC = @PCAPINC@ 13 | -------------------------------------------------------------------------------- /network/analyzer/dsniff/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dsniff 5 | Ağ dinleme ve inceleme aracı 6 | dsniff ağ dinleme, sorun yakalama ve güvenlik incelemesi için kullanılabilecek araçlar içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/ettercap/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ettercap 5 | Ağ yapısı inceleyici 6 | ettercap ağ haritası çıkarmak ve bağlantılar arasına girmek için kullanılabilen bir ağ aracıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/hydra/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | hydra 5 | Paralel çalışabilen giriş tahmin edici 6 | hydra pek çok bağlantı tipini destekleyen giriş tahmin aracıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/kismet/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | kismet 5 | 802.11 layer2 wireless ağ bulma, izleme ve açık arama sistemi 6 | Kismet 802.11 layer2 wireless ağ bulma, izleme ve açık arama sistemidir. Kismet çoğunlukla Wi-Fi (IEEE 802.11) ağlarıyla çalışmkatadır, ancak eklentilerle diğer ağ dizimleriyle de çalışması sağlanabilir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/libdnet/files/libdnet-1.11-lib_version_fix.diff: -------------------------------------------------------------------------------- 1 | --- src/Makefile.am 2006-01-19 07:11:01.000000000 +0100 2 | +++ src/Makefile.am.oden 2006-07-24 13:16:31.000000000 +0200 3 | @@ -8,4 +8,4 @@ 4 | 5 | libdnet_la_LIBADD = @LTLIBOBJS@ 6 | 7 | -libdnet_la_LDFLAGS = -version-info 1:1:0 8 | +libdnet_la_LDFLAGS = -version-info 2:11:1 9 | -------------------------------------------------------------------------------- /network/analyzer/ncrack/files/SCTZineNullCheck.patch: -------------------------------------------------------------------------------- 1 | --- ncrack-0.7.orig/ncrack_resume.cc 2019-08-25 00:25:32.000000000 +0200 2 | +++ ncrack-0.7/ncrack_resume.cc 2020-03-18 11:57:14.354980968 +0100 3 | @@ -527,7 +527,7 @@ 4 | 5 | j = 0; 6 | buf[j++] = *q; 7 | - while (*q != '\0' && j < sizeof(buf)) { 8 | + while ((q != NULL) && (j < sizeof(buf))) { 9 | q++; 10 | if (q - filestr >= filelen) 11 | fatal("Corrupted file! Error 5\n"); 12 | -------------------------------------------------------------------------------- /network/analyzer/ncrack/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ncrack 5 | Yüksek hızlı ağ yetkilendirme inceleme aracı 6 | ncrack ağ üzerindeki zayıf parolaları inceleme aracıdır. 7 | 8 | -------------------------------------------------------------------------------- /network/analyzer/netcat/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcat 5 | TCP/IP protokolünü kullanan, ağ bağlantıları üzerinden veri okuma ve yazmaya yarayan bir yardımcı uygulama 6 | Ağ bağlantıları arasında TCP ve UDP kullanarak veri okuyup yazabilen basit bir Unix aracıdır. OpenBSD sürümü kullanılmaktadır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/nfdump/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nfdump 5 | NetFlow verilerini toplamak ve işlemek için araçlar 6 | NFDump, komut satırında NetFlow istatistik verilerini toplamak ve işlemek için kullanılan bir araç takımıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/ngrep/files/safe_setlocale.patch: -------------------------------------------------------------------------------- 1 | diff -Nur ngrep-1.45-old/ngrep.c ngrep-1.45/ngrep.c 2 | --- ngrep-1.45-old/ngrep.c 2009-09-15 01:30:15.095452744 +0300 3 | +++ ngrep-1.45/ngrep.c 2009-09-15 01:30:44.403205366 +0300 4 | @@ -197,7 +197,7 @@ 5 | signal(SIGWINCH, update_windowsize); 6 | #endif 7 | 8 | - setlocale(LC_ALL, ""); 9 | + setlocale(LC_ALL, "en_US.UTF-8"); 10 | 11 | while ((c = getopt(argc, argv, "LNhXViwqpevxlDtTRMs:n:c:d:A:I:O:S:P:F:W:")) != EOF) { 12 | switch (c) { 13 | -------------------------------------------------------------------------------- /network/analyzer/ngrep/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ngrep 5 | Ağ üzerinde grep 6 | ngrep çeşitli ağ katmanları üzerinde grep benzeri arama yapmayı sağlayan bir ağ dinleme yazılımıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/nikto/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nikto 5 | Açık kaynaklı güvenlik tarayıcısı 6 | Nikto web sunucuları üzerinde zararlı açıklara sebep olabilecek dosyaları tarayan açık kaynak kodlu bir güvenlik tarayıcısıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/analyzer/whois/files/whois-4.7.2-config-file.patch: -------------------------------------------------------------------------------- 1 | Enable /etc/whois.conf support. 2 | 3 | http://bugs.gentoo.org/show_bug.cgi?id=89417 4 | 5 | --- config.h 6 | +++ config.h 7 | @@ -13,5 +13,3 @@ 8 | /* Configuration file */ 9 | -/* 10 | #define CONFIG_FILE "/etc/whois.conf" 11 | -*/ 12 | 13 | -------------------------------------------------------------------------------- /network/analyzer/whois/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | whois 5 | Geliştirilmiş Whois istemcisi 6 | Otomatik olarak uygun whois sunucularını seçebilen akıllı bir whois istemcisidir. 7 | 8 | -------------------------------------------------------------------------------- /network/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network 3 | 4 | -------------------------------------------------------------------------------- /network/connection/0trace/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 0trace 5 | Bir hop numaralandırma aracı 6 | 0trace kurulu bir TCP bağlantısına -HTTP ya da SMTP gibi- hop ("traceroute") numaralandırması yapabilen bir araçtır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/connection/3proxy/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 3proxy 5 | Küçük bir proxy sunucusu 6 | 3proxy karşılıklı platformlarda çalışabilen bir ücretsiz proxy sunucusudur. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/connection/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.connection 3 | 4 | -------------------------------------------------------------------------------- /network/connection/connman/comar/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/network/connection/connman/comar/service.py -------------------------------------------------------------------------------- /network/connection/iw/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | iw 5 | Kablosuz cihaz sürücüleri için nl80211 tabanlı yapılandırma aracı 6 | iw mac80211 protokol yığınını kullanan kablosuz aygıt sürücüleri için nl80211 tabanlı yeni bir yapılandırma aracıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/connection/iwd/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | iwd 5 | Internet Wireless Daemon 6 | Internet Wireless Daemon 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/connection/rfkill/files/rules.d: -------------------------------------------------------------------------------- 1 | KERNEL=="rfkill", GROUP="rfkill", MODE="0664" 2 | -------------------------------------------------------------------------------- /network/connection/rfkill/files/service.block: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=RFKill-Block %I 3 | After=rfkill-unblock@all.service 4 | 5 | [Service] 6 | Type=oneshot 7 | ExecStart=/usr/bin/rfkill block %I 8 | 9 | [Install] 10 | WantedBy=multi-user.target 11 | -------------------------------------------------------------------------------- /network/connection/rfkill/files/service.unblock: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=RFKill-Unblock %I 3 | After=rfkill-block@all.service 4 | 5 | [Service] 6 | Type=oneshot 7 | ExecStart=/usr/bin/rfkill unblock %I 8 | 9 | [Install] 10 | WantedBy=multi-user.target 11 | -------------------------------------------------------------------------------- /network/connection/rfkill/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | rfkill 5 | rfkill anahtarlarını yapılandırma aracı 6 | rfkill, rfkill anahtarlarının, düğmelerinin ve altsistem arayüzlerinin mevcut durumlarını sorgulamak ve değiştirmek için geliştirilmiş ufak bir yazılımdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/connection/sqlninja/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | sqlninja 5 | SQL Enjeksiyon Aracı 6 | Microsoft SQL sunucusu kullanan ağ uygulamalarını SQL Injection yöntemiyle exploit etmeye yarayan bir araç. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/download/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.download 3 | 4 | -------------------------------------------------------------------------------- /network/download/dropbox/files/dropbox.desktop: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env xdg-open 2 | [Desktop Entry] 3 | Type=Application 4 | Version=1.0 5 | Encoding=UTF-8 6 | Name=Dropbox 7 | GenericName=Dropbox Client 8 | GenericName[tr]=Dropbox İstemcisi 9 | Comment=Sync your files across computers and to the web 10 | Comment[tr]=Dosyalarınızı her yerden eşzamanlayın 11 | Icon=dropbox 12 | Exec=/opt/dropbox/dropboxd 13 | Terminal=false 14 | StartupNotify=false 15 | Categories=Application;Network; 16 | -------------------------------------------------------------------------------- /network/download/dropbox/files/dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/network/download/dropbox/files/dropbox.png -------------------------------------------------------------------------------- /network/download/flvstreamer/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | flvstreamer 5 | Ses ve görüntü akışları için bir istemci 6 | flvstreamer, her türlü flash ya da rtmp sunucularından ses ve görüntü içeriğini alma amaçlı bir açık kaynaklı ve komut satırlı bir RTMP istemcisidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/ftp/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.ftp 3 | 4 | -------------------------------------------------------------------------------- /network/ftp/lrzsz/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | lrzsz 5 | xmodem, ymodem and zmodem file transfer protocols 6 | xmodem, ymodem and zmodem file transfer protocols 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/library/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.library 3 | 4 | -------------------------------------------------------------------------------- /network/library/daq/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | libdaq 5 | Veri-Edinme API si 6 | DAQ Snort sürüm 2.9.0 ve yukarısında kullanmak için gerekli olan bir Veri-Edinme API sidir. 7 | 8 | 9 | 10 | libdaq-devel 11 | libdaq için geliştirme dosyaları 12 | 13 | 14 | -------------------------------------------------------------------------------- /network/mail/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.mail 3 | 4 | -------------------------------------------------------------------------------- /network/misc/asio/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | asio 5 | Asenkron ağ kitaplığı 6 | Asio, geliştiricilere kararlı bir asenkron model sunarak düşük seviyeli işlemler ve ağ işlemleri için birden fazla platformda kullanılabilen bir altyapı sunar. 7 | 8 | -------------------------------------------------------------------------------- /network/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.misc 3 | 4 | -------------------------------------------------------------------------------- /network/misc/enet/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | enet 5 | UDP ağ kitaplığı 6 | enet UDP protokolü üzerinden iletişim için kullanılabilecek küçük, kolay kullanımlı ve sağlam bir kitaplıktır. 7 | 8 | 9 | 10 | enet-devel 11 | enet için geliştirme dosyaları 12 | 13 | 14 | -------------------------------------------------------------------------------- /network/misc/libdlna/files/libdlna-libav9.patch: -------------------------------------------------------------------------------- 1 | diff -burN libdlna-0.2.4.orig/src/profiles.c libdlna-0.2.4/src/profiles.c 2 | --- libdlna-0.2.4.orig/src/profiles.c 2012-02-26 20:34:00.000000000 +0100 3 | +++ libdlna-0.2.4/src/profiles.c 2013-04-21 15:11:17.158148687 +0200 4 | @@ -287,7 +287,7 @@ 5 | return NULL; 6 | } 7 | 8 | - if (av_find_stream_info (ctx) < 0) 9 | + if (avformat_find_stream_info (ctx, NULL) < 0) 10 | { 11 | if (dlna->verbosity) 12 | fprintf (stderr, "can't find stream info\n"); 13 | -------------------------------------------------------------------------------- /network/misc/libdlna/files/respect-cflags.patch: -------------------------------------------------------------------------------- 1 | Index: libdlna-0.2.3/configure 2 | =================================================================== 3 | --- libdlna-0.2.3.orig/configure 4 | +++ libdlna-0.2.3/configure 5 | @@ -596,8 +596,6 @@ if enabled optimize; then 6 | if test -n "`$cc -v 2>&1 | grep xlc`"; then 7 | add_cflags "-O5" 8 | add_ldflags "-O5" 9 | - else 10 | - add_cflags "-O3" 11 | fi 12 | fi 13 | 14 | -------------------------------------------------------------------------------- /network/misc/megasync/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "/usr/bin/python" 3 | } -------------------------------------------------------------------------------- /network/misc/megasync/files/mega.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/network/misc/megasync/files/mega.png -------------------------------------------------------------------------------- /network/misc/megasync/files/megasync.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Version=1.0 4 | GenericName=File Synchronizer 5 | Name=MEGAsync 6 | Comment=Easy automated syncing between your computers and your MEGA cloud drive. 7 | TryExec=megasync 8 | Exec=megasync 9 | Icon=mega 10 | Terminal=false 11 | Categories=Network;System; 12 | StartupNotify=false 13 | X-GNOME-Autostart-Delay=60 14 | -------------------------------------------------------------------------------- /network/misc/megasync/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | MEGAsync 5 | MEGA cloud drive 6 | Easy automated syncing between your computers and your MEGA cloud drive 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/misc/putty/files/putty.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Version=1.0 4 | Encoding=UTF-8 5 | Name=Putty 6 | Name[tr]=Putty 7 | GenericName=SSH/Telnet Client 8 | GenericName[tr]=SSH/Telnet İstemcisi 9 | Comment=A highly configurable ssh/telnet/serial console program 10 | Comment[tr]=Yüksek seviyede ayarlanabilir ssh/telnet/seri port istemcisi 11 | Icon=putty 12 | Exec=putty 13 | Terminal=false 14 | StartupNotify=false 15 | Categories=Application;Network;Remote -------------------------------------------------------------------------------- /network/misc/putty/files/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/network/misc/putty/files/putty.png -------------------------------------------------------------------------------- /network/misc/putty/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | putty 5 | Bir Telnet/SSH İstemcisi 6 | Putty, açık kaynak kodlu bir Telnet ve SSH istemcisidir. Beraberinde bir terminal emülatörü de bulunur. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/misc/stunnel/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stunnel 5 | TLS/SSL - Port Çevireci. 6 | Stunnel paketi istemciler ile güvenli kanallar üzerinden iletişim kurabilmek için rasgele TCP bağlantılarını şifreleyen bir program içerir. 7 | 8 | -------------------------------------------------------------------------------- /network/monitor/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.monitor 3 | 4 | -------------------------------------------------------------------------------- /network/monitor/iptraf/files/001-iptraf-OSmanOS.patch: -------------------------------------------------------------------------------- 1 | --- src/othptab.c.OSmanOS 2012-12-29 22:06:00.000000000 +0200 2 | +++ src/othptab.c 2012-12-29 22:10:04.689645378 +0200 3 | @@ -18,6 +18,7 @@ 4 | 5 | #include 6 | #include 7 | +#include 8 | #include 9 | #include 10 | #include 11 | -------------------------------------------------------------------------------- /network/monitor/iptraf/files/002-iptraf-OSmanOS.patch: -------------------------------------------------------------------------------- 1 | --- src/tr.c.OSmanOS 2012-12-29 22:11:53.000000000 +0200 2 | +++ src/tr.c 2012-12-29 22:13:26.594712355 +0200 3 | @@ -7,6 +7,7 @@ 4 | */ 5 | 6 | #include 7 | +#include 8 | #include 9 | #include 10 | 11 | -------------------------------------------------------------------------------- /network/monitor/iptraf/files/003-iptraf-OSmanOS.patch: -------------------------------------------------------------------------------- 1 | --- src/hostmon.c.OSmanOS 2012-12-29 22:14:29.000000000 +0200 2 | +++ src/hostmon.c 2012-12-29 22:18:42.180812375 +0200 3 | @@ -32,7 +32,7 @@ 4 | #include 5 | #include 6 | #include 7 | -#include 8 | +#include 9 | #include 10 | #include 11 | #include 12 | -------------------------------------------------------------------------------- /network/monitor/iptraf/files/004-iptraf-OSmanOS.patch: -------------------------------------------------------------------------------- 1 | --- src/packet.c.OSmanOS 2012-12-29 22:19:48.000000000 +0200 2 | +++ src/packet.c 2012-12-29 22:20:49.818858430 +0200 3 | @@ -37,7 +37,7 @@ 4 | #include 5 | #include 6 | #include 7 | -#include 8 | +#include 9 | #include 10 | #include 11 | #include 12 | -------------------------------------------------------------------------------- /network/monitor/iptraf/files/iptraf-2.4.0-Makefile.patch: -------------------------------------------------------------------------------- 1 | --- iptraf-3.0.0/src/Makefile.orig 2005-09-13 11:11:17.000000000 +0200 2 | +++ iptraf-3.0.0/src/Makefile 2006-02-03 13:22:07.000000000 +0100 3 | @@ -32,7 +32,7 @@ 4 | # modified (except for -m486 on non-Intel x86 platforms). 5 | 6 | CFLAGS = -Wall #-O2 #-m486 7 | -DIRS = -DWORKDIR=\"$(WORKDIR)\" \ 8 | +DIRS = -DWORKDIR=\"$(WORKDIR)\" -DLOCKDIR=\"$(LOCKDIR)\" \ 9 | -DLOGDIR=\"$(LOGDIR)\" -DEXECDIR=\"$(TARGET)\" 10 | LDOPTS = #-static 11 | 12 | -------------------------------------------------------------------------------- /network/monitor/iptraf/files/iptraf-3.0.0-in_trafic.patch: -------------------------------------------------------------------------------- 1 | --- iptraf-3.0.0/src/serv.c.in 2006-12-11 11:13:27.000000000 +0100 2 | +++ iptraf-3.0.0/src/serv.c 2006-12-11 11:12:49.000000000 +0100 3 | @@ -333,7 +333,7 @@ 4 | } 5 | 6 | dport_listent->ibcount += br; 7 | - dport_listent->spans.spanbr_out += br; 8 | + dport_listent->spans.spanbr_in += br; 9 | dport_listent->icount++; 10 | } 11 | if (sport_listent != NULL || dport_listent != NULL) { 12 | -------------------------------------------------------------------------------- /network/monitor/iptraf/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | iptraf 5 | Ağ trafiği izleyicisi 6 | Yerel ağlar ve bağlantı paylaşımını takip etmek için ncurses tabanlı bir uygulama 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/p2p/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.p2p 3 | 4 | -------------------------------------------------------------------------------- /network/p2p/ktorrent/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import kde5 9 | 10 | def setup(): 11 | kde5.configure() 12 | 13 | def build(): 14 | kde5.make() 15 | 16 | def install(): 17 | kde5.install() 18 | 19 | pisitools.dodoc("COPYING") 20 | -------------------------------------------------------------------------------- /network/p2p/ktorrent/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ktorrent 5 | A powerful BitTorrent client for KDE 6 | A powerful BitTorrent client for KDE 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/p2p/libktorrent/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import kde5 9 | 10 | def setup(): 11 | kde5.configure() 12 | 13 | def build(): 14 | kde5.make() 15 | 16 | def install(): 17 | kde5.install() 18 | 19 | pisitools.dodoc("COPYING") 20 | 21 | -------------------------------------------------------------------------------- /network/p2p/libktorrent/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | libktorrent 5 | A BitTorrent protocol implementation 6 | A BitTorrent protocol implementation 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/p2p/rtorrent/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | rtorrent 5 | Ncurses tabanlı BitTorrent istemcisi 6 | rtorrent, GUI tabanlı istemcilere özgü özellikleri de içinde barındıran, hız ve verimliliğe önem veren ncurses tabanlı bir BitTorrent istemcidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/p2p/torrentinfo/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/copyleft/gpl.txt. 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() 14 | 15 | -------------------------------------------------------------------------------- /network/p2p/torrentinfo/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | torrentinfo 5 | Torrent Dosyası Göstericisi 6 | TorrentInfo .torrent dosyalarını inceleyerek, içeriklerine ilişkin özet bilgisi veren basit bir komut satırı aracıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/share/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.share 3 | 4 | -------------------------------------------------------------------------------- /network/share/nfs-utils/files/exports: -------------------------------------------------------------------------------- 1 | # /etc/exports: NFS file systems being exported. See exports(5). 2 | -------------------------------------------------------------------------------- /network/share/nfs-utils/files/idmapd.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | 3 | Verbosity = 0 4 | Pipefs-Directory = /var/lib/nfs/rpc_pipefs 5 | Domain = localdomain 6 | 7 | [Mapping] 8 | 9 | Nobody-User = nobody 10 | Nobody-Group = nobody 11 | -------------------------------------------------------------------------------- /network/share/nfs-utils/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | nfs-utils 5 | NFS istemcisi ve sunucusu 6 | nfs-utils, NFS (Ağ dosya sistemi) istemcisi ve sunucusunu içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/voip/ace-voip/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ace-voip 5 | ACE, güçlü bir VoIP birleşik dizin sayma aracıdır. 6 | ACE (Automated Corporate Enumerator - Birleşik Otomasyonlu Sayaç) verilen telefonun ekranındaki arayüzündeki ad ve uzantıları indirmek için IP telefonun davranışlarını taklit edebilen güçlü bir VoIP birleşik dizin sayma aracıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/voip/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.voip 3 | 4 | -------------------------------------------------------------------------------- /network/web/anatine/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/copyleft/gpl.txt 6 | 7 | from pisi.actionsapi import get 8 | from pisi.actionsapi import pisitools 9 | from pisi.actionsapi import shelltools 10 | 11 | 12 | def install(): 13 | pisitools.insinto("/usr/share/anatine", "./*") 14 | 15 | -------------------------------------------------------------------------------- /network/web/anatine/files/anatine.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Version=1.0 4 | Encoding=UTF-8 5 | Name=Anatine 6 | GenericName=Twitter Desktop App 7 | GenericName[tr]=Anatine 8 | Comment=A simple & beautiful app for Twitter. 9 | Comment[tr]=A simple & beautiful app for Twitter. 10 | Icon=/usr/share/pixmaps/anatine.png 11 | Exec=/usr/share/anatine/Anatine 12 | Terminal=false 13 | StartupNotify=false 14 | Categories=Internet;Network;Chat 15 | -------------------------------------------------------------------------------- /network/web/anatine/files/anatine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/network/web/anatine/files/anatine.png -------------------------------------------------------------------------------- /network/web/anatine/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Facebook Desktop Messenger 5 | A simple and beautiful app for Facebook Messenger. 6 | Not an official app. No affiliation with Facebook. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/web/caprine/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/copyleft/gpl.txt 6 | 7 | from pisi.actionsapi import get 8 | from pisi.actionsapi import pisitools 9 | from pisi.actionsapi import shelltools 10 | 11 | 12 | def install(): 13 | pisitools.insinto("/usr/share/caprine", "./*") 14 | 15 | -------------------------------------------------------------------------------- /network/web/caprine/files/caprine.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Version=1.0 4 | Encoding=UTF-8 5 | Name=Caprine 6 | GenericName=Facebook Messenger 7 | GenericName[tr]=Caprine 8 | Comment=A simple & beautiful app for Facebook Messenger. 9 | Comment[tr]=A simple & beautiful app for Facebook Messenger. 10 | Icon=/usr/share/pixmaps/caprine.png 11 | Exec=/usr/share/caprine/Caprine 12 | Terminal=false 13 | StartupNotify=false 14 | Categories=Internet;Network;Chat 15 | -------------------------------------------------------------------------------- /network/web/caprine/files/caprine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/network/web/caprine/files/caprine.png -------------------------------------------------------------------------------- /network/web/caprine/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Facebook Desktop Messenger 5 | A simple and beautiful app for Facebook Messenger. 6 | Not an official app. No affiliation with Facebook. 7 | 8 | 9 | -------------------------------------------------------------------------------- /network/web/component.xml: -------------------------------------------------------------------------------- 1 | 2 | network.web 3 | 4 | -------------------------------------------------------------------------------- /office/component.xml: -------------------------------------------------------------------------------- 1 | 2 | office 3 | 4 | -------------------------------------------------------------------------------- /office/dictionary/component.xml: -------------------------------------------------------------------------------- 1 | 2 | office.dictionary 3 | 4 | -------------------------------------------------------------------------------- /office/dictionary/stardict/files/defaultdict.cfg: -------------------------------------------------------------------------------- 1 | [dict] 2 | default= 3 | default[tr_TR.utf8]= 4 | -------------------------------------------------------------------------------- /office/dictionary/stardict/files/docklet_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/office/dictionary/stardict/files/docklet_normal.png -------------------------------------------------------------------------------- /office/dictionary/stardict/files/docklet_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/office/dictionary/stardict/files/docklet_scan.png -------------------------------------------------------------------------------- /office/dictionary/stardict/files/docklet_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/office/dictionary/stardict/files/docklet_stop.png -------------------------------------------------------------------------------- /office/dictionary/stardict/files/stardict.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/office/dictionary/stardict/files/stardict.png -------------------------------------------------------------------------------- /office/dictionary/stardict/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | stardict 5 | Sözlük uygulaması 6 | Birden fazla çevrimdışı ve çevrimiçi sözlük veritabanı kullanabilen, yetenekli bir sözlük uygulaması. 7 | 8 | 9 | -------------------------------------------------------------------------------- /office/docbook/component.xml: -------------------------------------------------------------------------------- 1 | 2 | office.docbook 3 | 4 | -------------------------------------------------------------------------------- /office/docbook/linuxdoc-tools/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | linuxdoc-tools 5 | SGML kaynağını diğer biçimlere dönüştürür. 6 | LinuxDoc yüksek seviyede ayarlanabilir belge yazma metin biçimidir. SGML kaynağını diğer biçimlere dönüştürür. 7 | 8 | 9 | -------------------------------------------------------------------------------- /office/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | office.misc 3 | 4 | -------------------------------------------------------------------------------- /office/misc/epydoc/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /office/misc/epydoc/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | epydoc 5 | Python için otomatik API belgelendirme üretecidir. 6 | epydoc, Python modülleri için otomatik API belgelendirmesi üretebilen bir araçtır. 7 | 8 | -------------------------------------------------------------------------------- /office/misc/mythes/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mythes 5 | A simple thesaurus for Libreoffice 6 | Openoffice.org is a full-featured office productivity suite that provides a near drop-in replacement for Microsoft(R) Office. 7 | 8 | 9 | 10 | mythes-devel 11 | mythes için geliştirme dosyaları 12 | 13 | 14 | -------------------------------------------------------------------------------- /office/misc/pybookreader/files/ob.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Version=1.0 4 | Type=Application 5 | Exec="ob" %f 6 | Name=OrnamentBook 7 | Icon=accessories-dictionary 8 | Comment=Custom definition for "ornamentbook" 9 | -------------------------------------------------------------------------------- /office/misc/pybookreader/files/pybr.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Version=1.0 4 | Type=Application 5 | Exec="pybr" %f 6 | Name=PyBookReader 7 | Icon=accessories-dictionary 8 | Comment=Custom definition for "pybr" 9 | -------------------------------------------------------------------------------- /office/spellcheck/component.xml: -------------------------------------------------------------------------------- 1 | 2 | office.spellcheck 3 | 4 | -------------------------------------------------------------------------------- /office/spellcheck/hyphen/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | hyphen 5 | ALTLinux hyphenation library 6 | hyphen,library for high quality hyphenation and justification. 7 | 8 | 9 | 10 | hyphen-devel 11 | hyphen için geliştirme dosyaları 12 | 13 | 14 | -------------------------------------------------------------------------------- /pisi-index.xml.sha1sum: -------------------------------------------------------------------------------- 1 | 5ff8b7220283a06e36956174d74a020103bed6d6 -------------------------------------------------------------------------------- /pisi-index.xml.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/pisi-index.xml.xz -------------------------------------------------------------------------------- /pisi-index.xml.xz.sha1sum: -------------------------------------------------------------------------------- 1 | d4716ed26b6220bda6da205fd8ed11b1573240e4 -------------------------------------------------------------------------------- /programming/build/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.build 3 | 4 | -------------------------------------------------------------------------------- /programming/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming 3 | -------------------------------------------------------------------------------- /programming/debug/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.debug 3 | 4 | -------------------------------------------------------------------------------- /programming/environment/codelite/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | codelite 5 | Codelite, C/C++/PHP ve Node.js için bütünleşik geliştirme araçlarını içerisinde bulunduran özgür yazılım 6 | Codelite, C/C++/PHP ve Node.js için bütünleşik geliştirme araçlarını içerisinde bulunduran, tamamen kişiselleştirilebilen ve geliştirilebilen bütünleşik geliştirme ortamıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/environment/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.environment 3 | -------------------------------------------------------------------------------- /programming/language/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.language 3 | -------------------------------------------------------------------------------- /programming/language/dotnet/boo/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | boo 5 | Ortak dil altyapısı için bilek dostu bir programlama dili 6 | Boo, sözdizimini Python programlama dilinden ilham alan, ortak dil altyapısı için yazılmış son derece kolay nesne temelli programlama dilidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/dotnet/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.language.dotnet 3 | -------------------------------------------------------------------------------- /programming/language/dotnet/gtk-sharp/files/glib-fix-01.patch: -------------------------------------------------------------------------------- 1 | --- glib/glue/list.c.orig 2009-01-07 16:54:06.000000000 +0000 2 | +++ glib/glue/list.c 2012-04-02 23:50:36.000000000 +0100 3 | @@ -20,7 +20,7 @@ 4 | */ 5 | 6 | 7 | -#include 8 | +#include 9 | 10 | /* Forward declarations */ 11 | gpointer gtksharp_list_get_data (GList *l); -------------------------------------------------------------------------------- /programming/language/dotnet/gtk-sharp/files/glib-fix-02.patch: -------------------------------------------------------------------------------- 1 | --- glib/glue/slist.c.orig 2009-01-07 16:54:06.000000000 +0000 2 | +++ glib/glue/slist.c 2012-04-02 23:50:40.000000000 +0100 3 | @@ -20,7 +20,7 @@ 4 | */ 5 | 6 | 7 | -#include 8 | +#include 9 | 10 | /* Forward declarations */ 11 | gpointer gtksharp_slist_get_data (GSList *l); -------------------------------------------------------------------------------- /programming/language/dotnet/gtk-sharp/files/glib-fix-03.patch: -------------------------------------------------------------------------------- 1 | --- glib/glue/thread.c.orig 2009-01-07 18:54:06.000000000 +0200 2 | +++ glib/glue/thread.c 2012-10-19 19:12:18.258809980 +0300 3 | @@ -20,7 +20,7 @@ 4 | */ 5 | 6 | 7 | -#include 8 | +#include 9 | 10 | gboolean glibsharp_g_thread_supported (void); 11 | 12 | 13 | -------------------------------------------------------------------------------- /programming/language/dotnet/mono/files/mono.binfmt.d: -------------------------------------------------------------------------------- 1 | :CLR:M::MZ::/usr/bin/mono: 2 | -------------------------------------------------------------------------------- /programming/language/perl/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.language.perl 3 | 4 | -------------------------------------------------------------------------------- /programming/language/perl/perl-Bit-Vector/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | 9 | def setup(): 10 | perlmodules.configure() 11 | 12 | def build(): 13 | perlmodules.make() 14 | 15 | def build(): 16 | perlmodules.make("test") 17 | 18 | def install(): 19 | perlmodules.install() 20 | -------------------------------------------------------------------------------- /programming/language/perl/perl-Carp-Clan/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | from pisi.actionsapi import pisitools 9 | 10 | def setup(): 11 | perlmodules.configure() 12 | 13 | def build(): 14 | perlmodules.make() 15 | 16 | def check(): 17 | perlmodules.make("test") 18 | 19 | def install(): 20 | perlmodules.install() 21 | -------------------------------------------------------------------------------- /programming/language/perl/perl-DBD-SQLite/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | perl-DBD-SQLite 5 | Perl5 veritabanı arayüzü için SQLite sürücüsü 6 | Perl5 veritabanı arayüzü için sqlite sürücüsü 7 | 8 | -------------------------------------------------------------------------------- /programming/language/perl/perl-Date-Calc/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | 9 | def setup(): 10 | perlmodules.configure() 11 | 12 | def build(): 13 | perlmodules.make() 14 | 15 | def check(): 16 | perlmodules.make("test") 17 | 18 | def install(): 19 | perlmodules.install() 20 | 21 | -------------------------------------------------------------------------------- /programming/language/perl/perl-File-Find-Rule/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | 9 | def setup(): 10 | perlmodules.configure() 11 | 12 | def build(): 13 | perlmodules.make() 14 | 15 | def check(): 16 | perlmodules.make("test") 17 | 18 | def install(): 19 | perlmodules.install() 20 | -------------------------------------------------------------------------------- /programming/language/perl/perl-File-Spec-Link/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | 9 | def setup(): 10 | perlmodules.configure() 11 | 12 | def build(): 13 | perlmodules.make() 14 | 15 | def check(): 16 | perlmodules.make("test") 17 | 18 | def install(): 19 | perlmodules.install() 20 | -------------------------------------------------------------------------------- /programming/language/perl/perl-LWP-UserAgent-Cached/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | 9 | def setup(): 10 | perlmodules.configure() 11 | 12 | def build(): 13 | perlmodules.make() 14 | 15 | def check(): 16 | perlmodules.make("test") 17 | 18 | def install(): 19 | perlmodules.install() 20 | -------------------------------------------------------------------------------- /programming/language/perl/perl-Linux-Desktopfiles/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | perl-Linux-Desktopfiles 5 | Masaüstü dosyalarını almak ve ayrıştırmak için Perl modülü 6 | perl-Linux-Desktopfiles masaüstü dosyalarını almak ve ayrıştırmak için Perl modülüdür 7 | 8 | -------------------------------------------------------------------------------- /programming/language/perl/perl-Number-Compare/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | 9 | def setup(): 10 | perlmodules.configure() 11 | 12 | def build(): 13 | perlmodules.make() 14 | 15 | def check(): 16 | perlmodules.make("test") 17 | 18 | def install(): 19 | perlmodules.install() 20 | 21 | -------------------------------------------------------------------------------- /programming/language/perl/perl-Text-Glob/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import perlmodules 8 | 9 | def setup(): 10 | perlmodules.configure() 11 | 12 | def build(): 13 | perlmodules.make() 14 | 15 | def check(): 16 | perlmodules.make("test") 17 | 18 | def install(): 19 | perlmodules.install() 20 | 21 | -------------------------------------------------------------------------------- /programming/language/python/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.language.python 3 | 4 | -------------------------------------------------------------------------------- /programming/language/python/pyPdf/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import pythonmodules 9 | 10 | 11 | def install(): 12 | pythonmodules.install() 13 | 14 | pisitools.dodoc("CHANGELOG","README") 15 | -------------------------------------------------------------------------------- /programming/language/python/pyqtermwidget/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | pyqtermwidget 5 | PyQt tabanlı uygulamalar için basit bir terminal modulü 6 | 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-apipkg/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-apipkg 5 | Alanuzayı denetimi ve tembel-içe aktarma mekanizması sunan bir python modülü 6 | apipkg ile dışa aktarılmış python paketlerinin alanuzayı denetimi yaparak kullanıcılar için ciddi oranda python modüllerinin içe aktarılma sayılarını azaltabilirsiniz. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-appdirs/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-appdirs/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-appdirs 5 | Platforma özel dizin belirleyebilen küçük bir python kitaplığı. 6 | python-appdirs, yazdığınız uygulama kullanıcı verisini nerede saklamalı sorusuna yanıt vermeye çalışan küçük bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-appinfo/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import get 9 | 10 | WorkDir = 'appinfo-%s' % get.srcVERSION() 11 | 12 | def build(): 13 | pythonmodules.compile() 14 | 15 | def install(): 16 | pythonmodules.install() 17 | -------------------------------------------------------------------------------- /programming/language/python/python-appinfo/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-appinfo 5 | Paket detaylı bilgi servisi 6 | python-appinfo, uzak appinfo sunucularından paket bilgilerini getirmeye ve bu bilgiler için veritabanı yaratmaya yarayan python modülleri içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-backports.functools_lru_cache/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-backports.functools_lru_cache 5 | Python 3.3'ten functions.lru_cache modülünün backportu 6 | ActiveState tarafından yayımlandığı gibi Python 3.3'teki functools.lru_cache modülünün geriye dönüklüğünü sağlayan python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-beautifulsoup4/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | #WorkDir="beautifulsoup4-%s" % get.srcVERSION() 10 | 11 | def build(): 12 | pythonmodules.compile() 13 | 14 | def install(): 15 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-casttube/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import pisitools 9 | 10 | def build(): 11 | pythonmodules.compile() 12 | 13 | def install(): 14 | pythonmodules.install() 15 | pisitools.domove("/usr/LICENSE", "/usr/share/doc/python-casttube") -------------------------------------------------------------------------------- /programming/language/python/python-casttube/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-casttube 5 | YouTube Chromecast APIsi sağlayan python bağlayıcısı. 6 | python-casttube YouTube Chromecast APIsi ile etkileşimi sağlayan bir python kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-dnspython/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-dnspython/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-dnspython 5 | Python için DNS araç takımıdır. 6 | python-dnspython DNS araç takımıdır. Neredeyse tüm kayıt türlerini destekler; bunları sorgular, alan nakilleri ve dinamik güncelemeler yapabilir. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-dpkt/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import pythonmodules 9 | 10 | 11 | def install(): 12 | pythonmodules.install() 13 | 14 | pisitools.dodoc("AUTHORS", "CHANGES","LICENSE", "README*") 15 | pisitools.insinto("/usr/share/doc/python-dpkt/","docs/") 16 | -------------------------------------------------------------------------------- /programming/language/python/python-dpkt/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-dpkt 5 | python-dpkt, paket yaratan ve paketlerle etkileşebilen bir python kitaplığıdır. 6 | python-dpkt, temel TCP/IP protokolleri için basit ve hızlı bir paket yaratma/çözümleme python modülüdür. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-fudge/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-fudge/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-fudge 5 | Python kodlarken gerçek nesneleri sahte, gerçek olmayan nesneler ile değiştiren python modülü. 6 | Python kodlarken gerçek nesneleri sahte, gerçek olmayan nesneler ile değiştirip test yapmanıza olanak sağlayan python modülü. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-funcsigs/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def check(): 13 | pythonmodules.compile("check") 14 | 15 | def install(): 16 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-funcsigs/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-funcsigs 5 | Python için PEP362'den yordam imzalari 6 | python-funcsigs Python 3.3'un inspect modülünün geriye uyumluluk kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-future/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-future 5 | Python future modülü 6 | python-future python2 ile python3 arasındaki kayıp uyumluluk katmanıdır. Python2 ile Python3 arasında python3 uyumlu bir kod katmanı kullanabilmenizi sağlar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-fuzzywuzzy/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-fuzzywuzzy/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-fuzzywuzzy 5 | Python ile sözcük karşılaştırma/bulma modülü 6 | python-fuzzywuzzy Levenshtein uzaklığını kullanarak bölümler arası ayrımları hesaplayan kullanımı basit bir python modülüdür. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-gmusicapi/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-gmusicapi/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-gmusicapi 5 | Google music için api sunan resmi olmayan python bağlayıcısı 6 | python-gmusicapi, Google music için api sunan resmi olmayan python bağlayıcısıdır. Python kullanarak Google Music uygulamasını denetleyebilmenize olanak tanır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-gpsoauth/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-gpsoauth/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-gpsoauth 5 | Google Play Hizmetleri OAuth için bir python istemci kitaplığı 6 | python-gpsoauth, Google Play Hizmetleri OAuth için bir python istemci kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-httplib2/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-httplib2/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-httplib2 5 | HTTP istemci kitaplığı 6 | python-httplib2, diğer HTTP kütüphanelerinin desteklemediği bir çok özellik içeren bir HTTP istemci kitaplığıdır 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-ifaddr/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-ifaddr/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-ifaddr 5 | Sistemdeki tüm ağ kartlarının IP addreslerini numaralandırıp sıralayabilen bir python kitaplığıdır. 6 | python-ifaddr bilgisayarınızda bulunan tüm ağ kartlarının ip adreslerini döndürebilen bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-iniconfig/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-iniconfig 5 | iniconfig python modülü çok basit bir ini dosyası çözümleme aracıdır. 6 | iniconfig küçük ve basit, kullanışlı bir INI-dosyası çözümleyebilen python modülüdür. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-mechanicalsoup/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def check(): 13 | pythonmodules.compile("check") 14 | 15 | def install(): 16 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-mechanicalsoup/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-mechanicalsoup 5 | Ağ sayfalarıyla etkileşmeyi otomatize edebilen bir python kitaplığıdır 6 | MechanicalSoup otomatik olarak çerezleri saklayabilen ve gönderebilen, yönlendirmeler ile bağlantıları izleyebilen, form gönderebilen bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-mock/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-mock/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-mock 5 | Python mock modülü 6 | Python mock modülü python uygulamalarınızı test etmenize yarar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-monotonic/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-monotonic/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-monotonic 5 | Python2 ve 3.3'den öncesi için time.monotonic() yordamını sağlayan kitaplık 6 | Bu kitaplık geriye dönüklüğü sağlamak için hazırlanmıştır ve python 3.3 ve üst sürümlerde bulunan monotonic kitaplığını sağlar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-msgpack/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-msgpack/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-msgpack 5 | Python msgpack modülü 6 | python-msgpack, Python için binary serileştirme yapabilen verimli bir kitaplıktır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-oauth2client/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-oauth2client/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-oauth2client 5 | OAuth 2.0 için istemci kitaplığı 6 | python-oauth2client, OAuth 2.0 ile korunan kaynaklara erişmek için kullanılan bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pefile/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def check(): 13 | pythonmodules.compile("check") 14 | 15 | def install(): 16 | pythonmodules.install() 17 | -------------------------------------------------------------------------------- /programming/language/python/python-pefile/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pefile 5 | Python pefile modülü 6 | pefile, PE(Portable Executable) dosyalarını çözümleyebilen çok platformlu bir python yordamıdır. PE dosyalarının başlıklarını ve diğer bölümlerini çözümleyebilir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-plexapi/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def check(): 13 | pythonmodules.compile("check") 14 | 15 | def install(): 16 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-plexapi/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-plexapi 5 | Plex API için resmi olmayan python bağlayıcıları 6 | python-plexapi, Plex Ağ İstemcisinin tüm yeteneklerini python üzerinden denetlenmesini sağlama amacıyla yapılmış bir python kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-ply/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-ply 5 | Lex ve YACC Cözümleme araçları uygulaması 6 | PLY(Python Lex-Yacc), python için lex ve yacc cözümleyen araçları barındıran uygulamadır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-prelude/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-prelude 5 | İşlevsel programlama yapıları için python kitaplığı 6 | python-prelude python modülü Haskell ve Scala gibi dillerden işlevsel programlama yapıları sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-proboscis/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-proboscis/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-proboscis 5 | Python için TestNG özelliklerini getirebilen python kitaplığıdır 6 | python-proboscis, Python'un gömülü unittest modülünü ve Nose bağlayıcılarını TestNG'den genişleten bir test çatısıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pyasn1-modules/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-pyasn1-modules/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pyasn1-modules 5 | Python için ASN.1-temelli protokol modülleri kolleksiyonu 6 | python-pyasn1-modules Python için ASN.1-temelli protokol modülleri kolleksiyonunu içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pyasn1/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-pyasn1/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pyasn1 5 | Python için ASN.1 kitaplığı 6 | python-pyasn1 ASN.1 türleri ve DER/BER/CER kodekleri (X.208) içeren bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pycrypto/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pycrypto 5 | Python pycrypto modülü 6 | python-pycrypto, Python2 için kriptografik algoritmalar ve protokoller içeren bir kitaplıktır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pycryptodome/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pycryptodome 5 | Düşük seviye kriptografik ilkeler içeren python paketidir. 6 | PyCrypto'dan çatallanan PyCryptodome düşük seviye kriptografik ilkeler içeren bir python kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-pycryptodomex/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pycryptodomex 5 | Düşük seviye kriptografik ilkeler içeren python paketidir. 6 | PyCrypto'dan çatallanan PyCryptodomex düşük seviye kriptografik ilkeler içeren bir python kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-pyelftools/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pyelftools 5 | Python için pyelftools modülü 6 | pyelftools ELF ve DWARF dosyaları için çözümleme, inceleme ve hata ayıklamak için python ile yazılmış bir kitaplıktır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pypcap/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pypcap 5 | Python pcap modülü 6 | python-pypcap, python için basitleştirilmiş, nesne tabanlı bir sarmalayıcı modüldür. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pypdf2/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pypdf2 5 | Python pypdf2 modülü 6 | PyPDF2 artık güncellenmeyen pypdf aracının devam projesidir. PyPDF2 PDF dosyalarından veri çıkartabilir veya eski PDF'i değistirerek yeni bir PDF oluşturabilir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-pyspotify/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pyspotify 5 | Python için libspotify sarmalayıcı modülü 6 | Python için libspotify sarmalayıcı modülü sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-pyxattr/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | #def check(): 13 | # pythonmodules.compile("test") 14 | 15 | def install(): 16 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-pyxattr/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-pyxattr 5 | Python pyxattr modülü 6 | Extension Python pour les attributs étendus de fichiers. 7 | python-pyxattr, genişletilmiş dosya hakları için Python3 eklentisi 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-rsa/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-rsa 5 | Python için RSA kitaplığı 6 | python-rsa, şifreleme ve deşifrelemyi destekleyen, imzaları doğrulayan ve imzalayan ve PKC#1'e göre anahtar üretebilen bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-soupsieve/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-soupsieve/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-soupsieve 5 | Beautiful Soup için çağdaş bir CSS seçici uygulaması 6 | Soup Sieve, Beautiful Soup 4 ile kullanılmak üzere geliştirilmiş bir CSS seçici python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-sphinx-testing/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | #def check(): 13 | # pythonmodules.compile("test") 14 | 15 | def install(): 16 | pythonmodules.install("-O1") -------------------------------------------------------------------------------- /programming/language/python/python-sphinx-testing/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-sphinx-testing 5 | Sphinx eklentileri için test araç sınıfları ve yordamları 6 | sphinx-testing Sphinx eklentileri için test araç sınıfları ve yordamları sağlayan python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-spotipy/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import pisitools 9 | 10 | def build(): 11 | pythonmodules.compile() 12 | 13 | def install(): 14 | pythonmodules.install() 15 | pisitools.dodoc("LICENSE*") -------------------------------------------------------------------------------- /programming/language/python/python-spotipy/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-spotipy 5 | Spotify ağ apisi için basit bir istemci 6 | python-spotipy Spotify ağ apisini kullanabilmek için python sarmalayıcı modülü ile basit bir istemci sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-sqlalchemy/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-sqlalchemy 5 | Python SQL Araç Kiti ve İlişkisel Nesne Haritalandırıcısı 6 | SQLAlchemy, geliştiricisine SQL'in tüm güç ve esnekliğini verebilen, python sql araç kiti ve ilişkisel nesne haritalandırıcısı sunan bir python modülüdür. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python/python-validictory/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile() 11 | 12 | def install(): 13 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-validictory/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-validictory 5 | Python için genel maksatlı veri onaylama kitaplığı 6 | python-validictory, Python için genel maksatlı veri onaylama kitaplığı sunar. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/python-whoosh/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import pisitools 9 | from pisi.actionsapi import get 10 | 11 | def build(): 12 | pythonmodules.compile() 13 | 14 | def install(): 15 | pythonmodules.install() -------------------------------------------------------------------------------- /programming/language/python/python-whoosh/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python-whoosh 5 | Tamamen python ile gelistirilmis hizli metin indisleme, arama ve heceleme denetimi yapabilen python kitapligi 6 | Whoosh hizli bol ozellikli tam metin isdisleme ve arama ozellikleri bulunan tamamen python ile yazilmis bir kitapliktir 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python/sarmanpisi/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | 10 | def build(): 11 | pythonmodules.compile() 12 | 13 | 14 | def install(): 15 | pythonmodules.install() 16 | -------------------------------------------------------------------------------- /programming/language/python/sip2/files/disable-rpaths.diff: -------------------------------------------------------------------------------- 1 | --- siputils.py 2 | +++ siputils.py 3 | @@ -737,6 +737,7 @@ class Makefile: 4 | rpaths is the cannonical list of rpaths. 5 | """ 6 | flags = [] 7 | + return flags 8 | prefix = self.optional_string("RPATH") 9 | 10 | if prefix: 11 | -------------------------------------------------------------------------------- /programming/language/python/sip2/files/fix-linking.diff: -------------------------------------------------------------------------------- 1 | --- specs/linux-g++ 2009/08/31 11:59:37 1.1 2 | +++ specs/linux-g++ 2009/08/31 12:00:19 3 | @@ -53,7 +53,7 @@ 4 | QMAKE_LFLAGS = 5 | QMAKE_LFLAGS_RELEASE = 6 | QMAKE_LFLAGS_DEBUG = 7 | -QMAKE_LFLAGS_SHLIB = -shared 8 | +QMAKE_LFLAGS_SHLIB = -shared -lpython2.7 9 | QMAKE_LFLAGS_PLUGIN = $$QMAKE_LFLAGS_SHLIB 10 | QMAKE_LFLAGS_SONAME = -Wl,-soname, 11 | QMAKE_LFLAGS_THREAD = 12 | -------------------------------------------------------------------------------- /programming/language/python3/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.language.python3 3 | 4 | -------------------------------------------------------------------------------- /programming/language/python3/python3-apipkg/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-apipkg 5 | Alanuzayı denetimi ve tembel-içe aktarma mekanizması sunan bir python modülü 6 | apipkg ile dışa aktarılmış python paketlerinin alanuzayı denetimi yaparak kullanıcılar için ciddi oranda python modüllerinin içe aktarılma sayılarını azaltabilirsiniz. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-biplist/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-biplist/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-biplist 5 | İkilik plist çözümleyicisi/üreteci. 6 | python3-biplist, python için ikilik plist çözümleyicisi/üreteci sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-casttube/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import pisitools 9 | 10 | def build(): 11 | pythonmodules.compile(pyVer="3") 12 | 13 | def install(): 14 | pythonmodules.install(pyVer="3") 15 | pisitools.domove("/usr/LICENSE", "/usr/share/doc/python3-casttube") -------------------------------------------------------------------------------- /programming/language/python3/python3-casttube/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-casttube 5 | YouTube Chromecast APIsi sağlayan python3 bağlayıcısı. 6 | python3-casttube YouTube Chromecast APIsi ile etkileşimi sağlayan bir python kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-dnspython/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-dnspython/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-dnspython 5 | Python3 için DNS araç takımıdır. 6 | python3-dnspython DNS araç takımıdır. Neredeyse tüm kayıt türlerini destekler; bunları sorgular, alan nakilleri ve dinamik güncelemeler yapabilir. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-eventlet/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-eventlet/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-eventlet 5 | Yüksek seviyeli bir eşzamanlı programlama modülü 6 | python3-eventlet, nasıl kod yazdığınıza bakmayan ama kodu nasıl çalıştırdığınızı düzenleyebilen/değiştirebilen yüksek seviyeli bir ağ kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-fudge/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-fudge/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-fudge 5 | Python kodlarken gerçek nesneleri sahte, gerçek olmayan nesneler ile değiştiren python modülü. 6 | Python kodlarken gerçek nesneleri sahte, gerçek olmayan nesneler ile değiştirip test yapmanıza olanak sağlayan python modülü. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-gmusicapi/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-gmusicapi/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-gmusicapi 5 | Google music için api sunan resmi olmayan python bağlayıcısı 6 | python3-gmusicapi, Google music için api sunan resmi olmayan python bağlayıcısıdır. Python kullanarak Google Music uygulamasını denetleyebilmenize olanak tanır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-gpsoauth/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-gpsoauth/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-gpsoauth 5 | Google Play Hizmetleri OAuth için bir python istemci kitaplığı 6 | python3-gpsoauth, Google Play Hizmetleri OAuth için bir python istemci kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-httplib2/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-httplib2/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-httplib2 5 | HTTP istemci kitaplığı 6 | python3-httplib2, diğer HTTP kütüphanelerinin desteklemediği bir çok özellik içeren bir HTTP istemci kitaplığıdır 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-iniconfig/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import shelltools 8 | from pisi.actionsapi import pythonmodules 9 | 10 | shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","1.0.1") 11 | def build(): 12 | pythonmodules.compile(pyVer="3") 13 | 14 | def install(): 15 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-iniconfig/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-iniconfig 5 | iniconfig python3 modülü çok basit bir ini dosyası çözümleme aracıdır. 6 | iniconfig küçük ve basit, kullanışlı bir INI-dosyası çözümleyebilen python3 modülüdür. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-joblib/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import pythonmodules 9 | 10 | def build(): 11 | pythonmodules.compile(pyVer="3") 12 | 13 | def install(): 14 | pythonmodules.install(pyVer="3") 15 | pisitools.dodoc("LICENSE*") -------------------------------------------------------------------------------- /programming/language/python3/python3-joblib/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-joblib 5 | Python' da hafif iletişim hattı sağlayan bir araç takımı 6 | python3-joblib python' da hafif iletişim hattı sağlayan bir araç takımı sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-mechanicalsoup/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def check(): 13 | pythonmodules.compile("check", pyVer="3") 14 | 15 | def install(): 16 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-mechanicalsoup/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-mechanicalsoup 5 | Ağ sayfalarıyla etkileşmeyi otomatize edebilen bir python3 kitaplığıdır 6 | MechanicalSoup otomatik olarak çerezleri saklayabilen ve gönderebilen, yönlendirmeler ile bağlantıları izleyebilen, form gönderebilen bir python3 kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-mock/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-mock 5 | Python3 mock modülü 6 | Python mock modülü python uygulamalarınızı test etmenize yarar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-monotonic/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-monotonic/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-monotonic 5 | Python2 ve 3.3'den öncesi için time.monotonic() yordamını sağlayan kitaplık 6 | Bu kitaplık geriye dönüklüğü sağlamak için hazırlanmıştır ve python 3.3 ve üst sürümlerde bulunan monotonic kitaplığını sağlar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-msgpack/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-msgpack/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-msgpack 5 | Python3 msgpack modülü 6 | python3-msgpack, Python3 için binary serileştirme yapabilen verimli bir kitaplıktır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-oauth2client/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-oauth2client/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-oauth2client 5 | OAuth 2.0 için istemci kitaplığı 6 | python3-oauth2client, OAuth 2.0 ile korunan kaynaklara erişmek için kullanılan bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-pdfkit/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-pdfkit/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-pdfkit 5 | Webkit rendering motorunu kullanarak HTML'i PDF'e dönüştüren, Wkhtmltopdf python sarmalayıcı kitaplık. 6 | python3-pdfkit, webkit rendering motorunu kullanarak HTML'i PDF'e dönüştüren, Wkhtmltopdf python sarmalayıcı kitaplığını sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-pefile/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def check(): 13 | pythonmodules.compile("check", pyVer="3") 14 | 15 | def install(): 16 | pythonmodules.install(pyVer="3") 17 | -------------------------------------------------------------------------------- /programming/language/python3/python3-pefile/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-pefile 5 | Python3 pefile modülü 6 | pefile, PE(Portable Executable) dosyalarını çözümleyebilen çok platformlu bir python3 yordamıdır. PE dosyalarının başlıklarını ve diğer bölümlerini çözümleyebilir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-plexapi/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def check(): 13 | pythonmodules.compile("check", pyVer="3") 14 | 15 | def install(): 16 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-plexapi/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-plexapi 5 | Plex API için resmi olmayan python3 bağlayıcıları 6 | python3-plexapi, Plex Ağ İstemcisinin tüm yeteneklerini python üzerinden denetlenmesini sağlama amacıyla yapılmış bir python3 kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-ply/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-ply 5 | Lex ve YACC Cözümleme araçları uygulaması 6 | PLY(Python Lex-Yacc), python için lex ve yacc cözümleyen araçları barındıran uygulamadır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-pockets/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-pockets/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-pockets 5 | Yardımcı Python araçları 6 | python3-pockets, yardımcı python araçları içeren python kitaplığı ve araçları sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-prelude/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-prelude 5 | İşlevsel programlama yapıları için python3 kitaplığı 6 | python3-prelude python3 modülü Haskell ve Scala gibi dillerden işlevsel programlama yapıları sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-proboscis/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-proboscis/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-proboscis 5 | Python3 için TestNG özelliklerini getirebilen python kitaplığıdır 6 | python3-proboscis, Python3'un gömülü unittest modülünü ve Nose bağlayıcılarını TestNG'den genişleten bir test çatısıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-pyside2-tools/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-pyside2-tools 5 | PySide2 için araçlar 6 | PySide2 için lupdate, rcc ve uic araçları ile python3 bağlayıcılarını sağlar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-pyspotify/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-pyspotify 5 | Python için libspotify sarmalayıcı modülü 6 | Python için libspotify sarmalayıcı modülü sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-pyxattr/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | #def check(): 13 | # pythonmodules.compile("test", pyVer="3") 14 | 15 | def install(): 16 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-pyxattr/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-pyxattr 5 | Python3 pyxattr modülü 6 | Extension Python pour les attributs étendus de fichiers. 7 | python3-pyxattr, genişletilmiş dosya hakları için Python3 eklentisi 8 | 9 | 10 | -------------------------------------------------------------------------------- /programming/language/python3/python3-regex/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-regex 5 | Python ile beraber gelen re modülüne alternatif bir düzenli ifadeler modülüdür. 6 | python3-regex, python ile beraber gelen re modülüne alternatif bir düzenli ifadeler modülü sağlar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-retdec/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-retdec 5 | retdec.com'un "decompilation servisine" erişmek için onların REST API'sini kullanan python kitaplığı ve araç takımı 6 | python3-retdec, retdec.com'un "decompilation servisine" erişmek için onların REST API'sini kullanan python kitaplığı ve araç takımıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-rsa/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-rsa/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-rsa 5 | Python3 için RSA kitaplığı 6 | python3-rsa, şifreleme ve deşifrelemyi destekleyen, imzaları doğrulayan ve imzalayan ve PKC#1'e göre anahtar üretebilen bir python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-soundcloud/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-soundcloud/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-soundcloud 5 | Soundcloud APIsini kullanabilen python sarmalayıcı modülü 6 | python3-spotipy Soundcloud APIsini kullanabilen python sarmalayıcı modülü sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-sphinx-bootstrap-theme/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") 14 | 15 | -------------------------------------------------------------------------------- /programming/language/python3/python3-sphinx-testing/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install("-O1", pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-sphinx-testing/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-sphinx-testing 5 | Sphinx eklentileri için test araç sınıfları ve yordamları 6 | sphinx-testing Sphinx eklentileri için test araç sınıfları ve yordamları sağlayan python kitaplığıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/python3/python3-sphinxcontrib-napoleon/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-sphinxcontrib-napoleon/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-sphinxcontrib-napoleon 5 | Hem Google hem de Numpy tarzında belgelendirme çözümleyebilen sphinx genişleme modülü. 6 | python3-sphinxcontrib-napoleon, hem Google hem de Numpy tarzında belgelendirme çözümleyebilen sphinx genişleme modülüdür. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-spotipy/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import pythonmodules 9 | 10 | def build(): 11 | pythonmodules.compile(pyVer="3") 12 | 13 | def install(): 14 | pythonmodules.install(pyVer="3") 15 | pisitools.dodoc("LICENSE*") -------------------------------------------------------------------------------- /programming/language/python3/python3-spotipy/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-spotipy 5 | Spotify ağ apisi için basit bir istemci 6 | python3-spotipy Spotify ağ apisini kullanabilmek için python3 sarmalayıcı modülü ile basit bir istemci sunar. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-titlecase/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def build(): 10 | pythonmodules.compile(pyVer="3") 11 | 12 | def install(): 13 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-titlecase/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-titlecase 5 | Python3 titlecase modülü 6 | python3-titlecase modülü verilen söz dizisindeki tüm ilk harfleri büyük yapan python kitaplığıdır. 7 | 8 | -------------------------------------------------------------------------------- /programming/language/python3/python3-whoosh/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | from pisi.actionsapi import pisitools 9 | from pisi.actionsapi import get 10 | 11 | def build(): 12 | pythonmodules.compile(pyVer="3") 13 | 14 | def install(): 15 | pythonmodules.install(pyVer="3") -------------------------------------------------------------------------------- /programming/language/python3/python3-whoosh/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | python3-whoosh 5 | Tamamen python ile gelistirilmis hizli metin indisleme, arama ve heceleme denetimi yapabilen python kitapligi 6 | Whoosh hizli bol ozellikli tam metin isdisleme ve arama ozellikleri bulunan tamamen python ile yazilmis bir kitapliktir 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/ruby/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.language.ruby 3 | 4 | -------------------------------------------------------------------------------- /programming/language/ruby/ruby-bundler/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ruby-bundler 5 | Ruby kodu denetleme aracı 6 | ruby-bundler, ruby kodunun her makinede aynı olduğunun denetlenmesini sağlayan bir araçtır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/language/ruby/ruby-gtk2/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ruby-gtk2 5 | Ruby için GNOME 2 bağlayıcıları 6 | ruby-gtk2, GNOME 2 kütüphaneleri için bağlayıcıları içerir. 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /programming/library/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.library 3 | 4 | 5 | -------------------------------------------------------------------------------- /programming/library/ddcutil/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ddcutil 5 | ddcutil 6 | ddcutil 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/library/i2c-tools/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | i2c-tools 4 | A heterogeneous set of I2C tools for Linux 5 | A heterogeneous set of I2C tools for Linux 6 | 7 | 8 | -------------------------------------------------------------------------------- /programming/library/libcurl-gnutls/files/curl-ac.patch: -------------------------------------------------------------------------------- 1 | diff -urN curl-7.12.1.org/configure.ac curl-7.12.1/configure.ac 2 | --- curl-7.12.1.org/configure.ac 2004-08-13 02:20:37.003335512 +0200 3 | +++ curl-7.12.1/configure.ac 2004-08-13 02:21:07.172749064 +0200 4 | @@ -392,7 +392,7 @@ 5 | main() 6 | { 7 | if (socket(AF_INET6, SOCK_STREAM, 0) < 0) 8 | - exit(1); 9 | + exit(0); 10 | else 11 | exit(0); 12 | } -------------------------------------------------------------------------------- /programming/library/libdockapp/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import autotools, get 8 | 9 | def setup(): 10 | autotools.configure() 11 | 12 | def build(): 13 | autotools.make() 14 | 15 | def install(): 16 | autotools.rawInstall("DESTDIR=%s" % get.installDIR()) 17 | -------------------------------------------------------------------------------- /programming/library/yad-gtk2/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | yad-gtk2 5 | fork of zenity - display graphical dialogs from shell scripts or command line - for gtk2 6 | fork of zenity - display graphical dialogs from shell scripts or command line - for gtk2 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.misc 3 | -------------------------------------------------------------------------------- /programming/misc/cowsay/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | from pisi.actionsapi import shelltools 9 | 10 | def install(): 11 | shelltools.system("./install.sh") 12 | pisitools.remove("/usr/share/cows/mech-and-cow") 13 | pisitools.dodoc("LICENSE", "README*") -------------------------------------------------------------------------------- /programming/misc/cowsay/files/cowsay.patch: -------------------------------------------------------------------------------- 1 | --- cowsay-3.03/install.sh 1999-11-01 21:19:21.000000000 +0100 2 | +++ cowsay-3.03-new/install.sh 2003-08-15 17:14:23.000000000 +0200 3 | @@ -67,7 +67,7 @@ 4 | echo Okay, time to install this puppy. 5 | 6 | echo s,%BANGPERL%,!$usethisperl,\; > install.pl 7 | -echo s,%PREFIX%,$PREFIX,\; >> install.pl 8 | +echo s,%PREFIX%,/usr,\; >> install.pl 9 | set -x 10 | mkdir -p $PREFIX/bin || (mkdir $PREFIX; mkdir $PREFIX/bin) 11 | $usethisperl -p install.pl cowsay > $PREFIX/bin/cowsay 12 | -------------------------------------------------------------------------------- /programming/misc/cowsay/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | cowsay 5 | Konuşma balonu ayarlanabilir inek 6 | cowsay, konuşma balonu ayarlanabilir ascii biçeminde inek resmini uçbirime basar. 7 | 8 | 9 | -------------------------------------------------------------------------------- /programming/misc/dracut/files/dracutrc.d/checkisomd5@.service: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=Media check on %f 3 | DefaultDependencies=no 4 | Before=shutdown.target 5 | 6 | [Service] 7 | Type=oneshot 8 | RemainAfterExit=no 9 | ExecStart=/bin/checkisomd5 --verbose %f 10 | StandardInput=tty-force 11 | StandardOutput=inherit 12 | StandardError=inherit 13 | TimeoutSec=0 14 | SuccessExitStatus=2 15 | -------------------------------------------------------------------------------- /programming/misc/dracut/files/dracutrc.d/dmsquash-liveiso-genrules.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if [ "${root%%:*}" = "liveiso" ]; then 4 | { 5 | printf 'KERNEL=="loop-control", RUN+="/sbin/initqueue --settled --onetime --unique /sbin/dmsquash-live-root `/sbin/losetup -f --show %s`"\n' \ 6 | ${root#liveiso:} 7 | } >> /etc/udev/rules.d/99-liveiso-mount.rules 8 | fi 9 | -------------------------------------------------------------------------------- /programming/misc/dracut/files/dracutrc.d/parse-iso-scan.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # live images are specified with 3 | # root=live:backingdev 4 | 5 | isofile=$(getarg iso-scan/filename) 6 | 7 | if [ -n "$isofile" ]; then 8 | /sbin/initqueue --settled --unique /sbin/iso-scan "$isofile" 9 | fi 10 | -------------------------------------------------------------------------------- /programming/scm/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.scm 3 | 4 | -------------------------------------------------------------------------------- /programming/tool/component.xml: -------------------------------------------------------------------------------- 1 | 2 | programming.tool 3 | 4 | -------------------------------------------------------------------------------- /programming/tool/dejagnu/files/site.exp: -------------------------------------------------------------------------------- 1 | # The master configuration file should be here 2 | # There is currently not a meaningful default configuration file 3 | -------------------------------------------------------------------------------- /programming/tool/dejagnu/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | dejagnu 5 | Diğer programları test etmek için kullanılan bir çatı. 6 | Cadre de développement (Framework) de test d'autres programmes. 7 | 8 | 9 | -------------------------------------------------------------------------------- /science/astronomy/celestia/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | celestia 5 | Uzay simülasyon uygulaması 6 | Celestia, evreni üç boyutlu olarak keşfetmenizi sağlayan özgür bir uzay simulasyonu uygulamasıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /science/astronomy/component.xml: -------------------------------------------------------------------------------- 1 | 2 | science.astronomy 3 | 4 | -------------------------------------------------------------------------------- /science/chemistry/component.xml: -------------------------------------------------------------------------------- 1 | 2 | science.chemistry 3 | 4 | -------------------------------------------------------------------------------- /science/chemistry/libmsym/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | libmsym 5 | libmsym is a C library dealing with point group symmetry in molecules. 6 | libmsym, moleküllerde nokta grubu simetrisi ile ilgilenen bir C kütüphanesidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /science/chemistry/spglib/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | spglib 5 | C library for finding and handling crystal symmetries 6 | C library for finding and handling crystal symmetries 7 | 8 | 9 | -------------------------------------------------------------------------------- /science/component.xml: -------------------------------------------------------------------------------- 1 | 2 | science 3 | 4 | -------------------------------------------------------------------------------- /science/gis/component.xml: -------------------------------------------------------------------------------- 1 | 2 | science.gis 3 | 4 | -------------------------------------------------------------------------------- /science/mathematics/component.xml: -------------------------------------------------------------------------------- 1 | 2 | science.mathematics 3 | 4 | -------------------------------------------------------------------------------- /science/mathematics/onyx/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # Licensed under the GNU General Public License, version 3. 4 | # See the file http://www.gnu.org/copyleft/gpl.txt 5 | 6 | from pisi.actionsapi import autotools 7 | from pisi.actionsapi import get 8 | from pisi.actionsapi import pisitools 9 | from pisi.actionsapi import shelltools 10 | 11 | WorkDir="onyx" 12 | def install(): 13 | pisitools.insinto("/usr/share/onyx/", "onyx-1.0-947.jar") 14 | -------------------------------------------------------------------------------- /science/mathematics/onyx/files/onyx.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=Onyx 3 | GenericName=Structural Equation Modelling 4 | GenericName[tr]=Yapısal Eşitlik Modeli 5 | Comment[tr]=Yapısal Eşitlik Modelleri oluşturun 6 | Exec=java -jar /usr/share/onyx/onyx-1.0-947.jar 7 | Icon=/usr/share/pixmaps/onyx.png 8 | Terminal=false 9 | Type=Application 10 | Categories=Education;Science; 11 | MimeType=application/x-spss-sav; 12 | StartupNotify=true 13 | -------------------------------------------------------------------------------- /science/mathematics/onyx/files/onyx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/science/mathematics/onyx/files/onyx.png -------------------------------------------------------------------------------- /science/mathematics/onyx/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | junit 5 | Yapısal eşitlik modelleme 6 | Sosyal Bilimlerde sık sık kullanılan yapısal eşitlik modelleme uygulamalarına alternatif bir yazılım. 7 | 8 | 9 | -------------------------------------------------------------------------------- /science/mathematics/pspp/files/pspp.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/science/mathematics/pspp/files/pspp.mo -------------------------------------------------------------------------------- /science/mathematics/pspp/files/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/science/mathematics/pspp/files/splash.png -------------------------------------------------------------------------------- /science/mathematics/pspp/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | pspp 4 | İstatistik analiz programı 5 | Örneklenmiş veri üzerinde istatistiki analiz yapan bir program 6 | 7 | 8 | pspp-docs 9 | 10 | 11 | -------------------------------------------------------------------------------- /science/mathematics/sofastats/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/copyleft/gpl.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | 9 | def install(): 10 | pisitools.insinto("/usr/share/sofastats/", "./sofa_main/*") 11 | pisitools.insinto("/usr/bin/", "./sofa_main/start.py") 12 | pisitools.dosym("/usr/share/sofastats/start.py", "/usr/bin/sofastats") -------------------------------------------------------------------------------- /science/mathematics/sofastats/files/sofa.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=SofaStats 3 | GenericName=istatistik analiz 4 | GenericName[tr]=istatistik analiz 5 | Comment[tr]=istatistik analiz yapın 6 | Exec=sofastats 7 | Icon=/usr/share/pixmaps/sofa.png 8 | Terminal=false 9 | Type=Application 10 | Categories=Education;Science; 11 | MimeType=application; 12 | StartupNotify=true 13 | -------------------------------------------------------------------------------- /science/mathematics/sofastats/files/sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/science/mathematics/sofastats/files/sofa.png -------------------------------------------------------------------------------- /science/mathematics/sofastats/files/sofastats.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/science/mathematics/sofastats/files/sofastats.mo -------------------------------------------------------------------------------- /server/component.xml: -------------------------------------------------------------------------------- 1 | 2 | server 3 | 4 | -------------------------------------------------------------------------------- /server/web/component.xml: -------------------------------------------------------------------------------- 1 | 2 | server.web 3 | 4 | -------------------------------------------------------------------------------- /system/component.xml: -------------------------------------------------------------------------------- 1 | 2 | system 3 | 4 | -------------------------------------------------------------------------------- /system/devel/component.xml: -------------------------------------------------------------------------------- 1 | 2 | system.devel 3 | 4 | -------------------------------------------------------------------------------- /system/installer/component.xml: -------------------------------------------------------------------------------- 1 | 2 | system.installer 3 | 4 | -------------------------------------------------------------------------------- /tex/component.xml: -------------------------------------------------------------------------------- 1 | 2 | tex 3 | 4 | -------------------------------------------------------------------------------- /tex/texlive-formatsextra/comar/package.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | 4 | import subprocess 5 | 6 | def postInstall(fromVersion, fromRelease, toVersion, toRelease): 7 | 8 | print "texlive: updating the filename database..." 9 | subprocess.call(["/usr/bin/mktexlsr"]) 10 | -------------------------------------------------------------------------------- /tex/texlive-formatsextra/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | texlive-formatsextra 5 | Extra TeX Live Formatları 6 | texlive-formatsextra TexLive extra formatlarını içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /tex/texlive-langcyrillic/files/texlive-langcyrillic.maps: -------------------------------------------------------------------------------- 1 | Map cmcyr.map 2 | MixedMap mongolian.map 3 | -------------------------------------------------------------------------------- /tex/texlive-langcyrillic/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | texlive-langi-cyrillic 5 | TeX Live Slav dili betikleri 6 | texlive-langcyrillic TeX Live Slav dili betiklerini içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /tex/texlive-latexextra/files/texlive-latexextra.maps: -------------------------------------------------------------------------------- 1 | Map epiolmec.map 2 | Map scanpages.map 3 | MixedMap esint.map 4 | 5 | -------------------------------------------------------------------------------- /tex/texlive-latexextra/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | texlive-latexextra 5 | TeX Live extra LaTeX paketi 6 | texlive-latexextra TexLive extra LaTeX paketidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /tex/texlive-pictures/files/texlive-pictures.maps: -------------------------------------------------------------------------------- 1 | Map knitfont.map 2 | MixedMap xypic.map 3 | 4 | -------------------------------------------------------------------------------- /tex/texlive-pictures/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | texlive-pictures 5 | TeX Live grafik desteği 6 | texlive-pictures TexLive TeX Live grafik desteğidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /tex/texlive-science/files/texlive-science.maps: -------------------------------------------------------------------------------- 1 | Map chemarrow.map 2 | MixedMap stmaryrd.map 3 | MixedMap yhmath.map 4 | -------------------------------------------------------------------------------- /tex/texlive-science/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | texlive-science 5 | Bilgisayar ve doğal bilimler için sembol ve yazı karakterleri 6 | texlive-science bilgisayar ve doğal bilimler için sembol ve yazı karakterlerini içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/androidpincrack/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidpincrack 5 | Android PIN Kırıcı 6 | AndroidPINCrack, sözcük listesi ile de kullanılabileb bir android PIN kırıcı python betiğidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/androidsniffer/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | androidsniffer 5 | Android Dump Etme Aracı 6 | Andr01d Magic Dumper, arama geçmişi, rehber, kablosuz ağ ayarları, 3ncü parti yazılımların parolaları gibi verileri ve daha fazlasını dump etmenize yarayan bir perl betiğidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/component.xml: -------------------------------------------------------------------------------- 1 | 2 | util.admin 3 | 4 | -------------------------------------------------------------------------------- /util/admin/crunch/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | crunch 5 | Güçlü bir sözlük üreteci 6 | Verilen karakter setinin her türlü kombinasyon/permütasyonu ile sözcük listesi oluşturabilen bir sözlük üreteci. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/pdfid/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | pdfid 5 | PDF tanılama aracı 6 | Bu araç bir PDF çözümleme aracı değildir, onun yerine girdi olarak verilen bir dosyada PDF izi arar, böylece o dosyanın PDF olup olmadığını tanımlar. PDF dosyasının içerisinde çalışmaya hazır JAvascript kodu olup olmadığını bulabilir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/peepdf/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | peepdf 5 | PDF Çözümleme Aracı 6 | peepdf, bir PDF belgesinin zararlı yazılım içerip içermediğini anlamaya yarayan bir python betiğidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/vaktisalah/files/VaktiSalah.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=VaktiSalah 3 | Version=1.0 4 | Exec=VaktiSalah 5 | Comment=a Simple Prayer Times Application 6 | Icon=vaktisalah 7 | Type=Application 8 | Terminal=false 9 | StartupNotify=true 10 | Encoding=UTF-8 11 | Categories=Utility; 12 | -------------------------------------------------------------------------------- /util/admin/vaktisalah/files/vaktisalah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/util/admin/vaktisalah/files/vaktisalah.png -------------------------------------------------------------------------------- /util/admin/vaktisalah/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | vaktisalah 5 | Vakt-i Salah (Times of Prayer) 6 | Vakt-i Salah (Times of Prayer) 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/xrdp/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | xrdp 5 | xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü 6 | xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/admin/xtermcolourchart/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | xtermcolourchart 5 | Terminal renkleri göstereci 6 | Terminal ekranında terminal renklerini ve kodlarını gösterebilen özelleştirilebilen bir araç. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/antivirus/clamav-database/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import shelltools, pisitools, get 8 | 9 | WorkDir = "." 10 | 11 | def install(): 12 | for t in shelltools.ls("*.cvd"): 13 | pisitools.insinto("/var/lib/clamav", t) 14 | shelltools.chown("%s/var/lib/clamav/%s" % (get.installDIR(), t), uid = "clamav", gid = "clamav") 15 | -------------------------------------------------------------------------------- /util/antivirus/component.xml: -------------------------------------------------------------------------------- 1 | 2 | util.antivirus 3 | 4 | 5 | -------------------------------------------------------------------------------- /util/archive/atool/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | atool 5 | Arşiv dosyaları yönetmek için betikler 6 | atool; tar, tar+gzip, zip gibi arşiv dosyalarını kolayca yönetebilmeniz için hazırlanmış betiklerden oluşur. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/bchunk/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bchunk 5 | bin/cue CD dosya türlerini iso+wav/cdr türlerine çevirir 6 | 7 | 8 | -------------------------------------------------------------------------------- /util/archive/component.xml: -------------------------------------------------------------------------------- 1 | 2 | util.archive 3 | 4 | -------------------------------------------------------------------------------- /util/archive/lxsplit/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | lxsplit 5 | Hjsplit uyumlu dosya bölücü/birleştirici 6 | Lxsplit, hjsplit uyumlu bir komut satırı dosya bölücü/birleştiricidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/makeself/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | makeself 5 | Kendiliğinden açılan arşiv (SFX) üreteci. 6 | makeelf, kendiliğinden açılan arşiv dosyaların (.run) oluşturmak için kullanılan küçük bir komut satırı betiğidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/mt-st/files/mt-st-1.1-SDLT.patch: -------------------------------------------------------------------------------- 1 | --- mt-st-1.1/mt.c.sdlt 2008-04-27 18:49:00.000000000 +0200 2 | +++ mt-st-1.1/mt.c 2008-08-04 08:21:54.000000000 +0200 3 | @@ -225,6 +225,8 @@ 4 | {0x45, "QIC-3095-MC (TR-4)"}, 5 | {0x46, "LTO-4"}, 6 | {0x47, "DDS-5 or TR-5"}, 7 | + {0x48, "Quantum SDLT220"}, 8 | + {0x49, "Quantum SDLT320"}, 9 | {0x51, "IBM 3592 J1A"}, 10 | {0x52, "IBM 3592 E05"}, 11 | {0x80, "DLT 15GB uncomp. or Ecrix"}, 12 | -------------------------------------------------------------------------------- /util/archive/mt-st/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mt-st 5 | mt komutunun geliştirilmiş hali 6 | mt-st, manyetik teyp sürücülerini kontrol etmek için kullanılan mt komutunun geliştirilmiş halini içerir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/pbzip2/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | pbzip2 5 | bzip2'nin çoklu işlemci kullanabilen hali 6 | pbizp2 çoklu işlemcili bilgisayarlarda neredeyse işlemci sayısına yakın bir hız artışı sağlayan bir bzip2 gerçekleştirimidir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/rdiff-backup/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | 9 | def install(): 10 | pythonmodules.install() 11 | -------------------------------------------------------------------------------- /util/archive/rpm2targz/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | rpm2targz 5 | .rpm dosyalarını .tar.gz dosyalarına dönüştürme uygulaması 6 | Red Hat, SUSE gibi dağıtımların kullandığı RPM (RedHat Package Manager) paketlerini .tar.gz paketlerine dönüştürür. Sadece RPM sürümü olan bir dosya bulduğunuzda ve içeriğine ulaşmanız gerektiğinde kullanışlı olabilir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/sharutils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/util/archive/sharutils/.DS_Store -------------------------------------------------------------------------------- /util/archive/sharutils/files/sharutils-4.11.1-no-gets.patch: -------------------------------------------------------------------------------- 1 | --- lib/stdio.in.h.orig 2 | +++ lib/stdio.in.h 3 | @@ -125,7 +125,6 @@ 4 | so any use of gets warrants an unconditional warning. Assume it is 5 | always declared, since it is required by C89. */ 6 | #undef gets 7 | -_GL_WARN_ON_USE (gets, "gets is a security hole - use fgets instead"); 8 | 9 | #if @GNULIB_FOPEN@ 10 | # if @REPLACE_FOPEN@ 11 | -------------------------------------------------------------------------------- /util/archive/unace/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | 7 | from pisi.actionsapi import autotools 8 | from pisi.actionsapi import pisitools 9 | 10 | 11 | def build(): 12 | autotools.make() 13 | 14 | def install(): 15 | pisitools.dobin("unace") 16 | pisitools.dodoc("licence") 17 | -------------------------------------------------------------------------------- /util/archive/unace/files/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/util/archive/unace/files/.DS_Store -------------------------------------------------------------------------------- /util/archive/unace/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unace 5 | unace, ace arşivlerini açmaya yarayan araçtır. 6 | Unace aracı ticari bi yazılım olan winace'nin ace uzantılı arşiv dosyalarını açmaya görüntülemeye ve test etmeye yarayan bir arçtır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/unalz/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/copyleft/gpl.txt. 6 | 7 | from pisi.actionsapi import autotools 8 | from pisi.actionsapi import pisitools 9 | 10 | WorkDir = "unalz" 11 | 12 | def build(): 13 | autotools.make("linux-utf8") 14 | 15 | def install(): 16 | pisitools.dobin('unalz') 17 | pisitools.dodoc("readme.txt") 18 | -------------------------------------------------------------------------------- /util/archive/unalz/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unalz 5 | alzip açma uygulaması 6 | unalz alzip biçiminde sıkıştırılmış dosyaları açmak için kullanılan bir uygulamadır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/archive/unarj/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl.txt 6 | # 7 | 8 | from pisi.actionsapi import autotools 9 | from pisi.actionsapi import pisitools 10 | 11 | def build(): 12 | autotools.make() 13 | 14 | def install(): 15 | pisitools.dobin("unarj") 16 | pisitools.dodoc("unarj.txt", "technote.txt") 17 | -------------------------------------------------------------------------------- /util/archive/unarj/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unarj 5 | ARJ açma uygulaması 6 | ARJ biçiminde arşivlenmiş dosyaları açar. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/component.xml: -------------------------------------------------------------------------------- 1 | 2 | util 3 | 4 | -------------------------------------------------------------------------------- /util/crypt/aesfix/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # Licensed under the GNU General Public License, version 3. 4 | # See the file http://www.gnu.org/copyleft/gpl.txt 5 | 6 | from pisi.actionsapi import autotools 7 | from pisi.actionsapi import pisitools 8 | 9 | 10 | def build(): 11 | autotools.make() 12 | 13 | def install(): 14 | pisitools.dobin("aesfix") 15 | pisitools.insinto("/usr/share/aesfix/","samples/") 16 | pisitools.dodoc("LICENSE", "README") 17 | -------------------------------------------------------------------------------- /util/crypt/aesfix/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aesfix 5 | AES anahtar zamanlayıcısında bit hatalarını düzelten bir araç. 6 | AES anahtar zamanlayıcısında bit hatalarını düzeltir. Aeskeyfind programının çıktısıyla birlikte kullanılmalıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/crypt/aeskeyfind/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # Licensed under the GNU General Public License, version 3. 4 | # See the file http://www.gnu.org/copyleft/gpl.txt 5 | 6 | from pisi.actionsapi import autotools 7 | from pisi.actionsapi import pisitools 8 | 9 | 10 | def build(): 11 | autotools.make() 12 | 13 | def install(): 14 | pisitools.dobin("aeskeyfind") 15 | pisitools.dodoc("LICENSE", "README") 16 | -------------------------------------------------------------------------------- /util/crypt/aeskeyfind/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aeskeyfind 5 | Rastgele erişimli bellek(RAM) imajından aes anahtarı bulmaya yarayan bir araç. 6 | Bu program RAM'den alınan imajlarda 128-bit ve 256-bit AES anahtarları çeşitli algoritmalarla ve basit entropi testleriyle arayabilir. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/crypt/aespipe/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | aespipe 5 | AES-döngü desteği de olan bir AES-şifreleme aracı. 6 | aespipe standard girdiyi okuyup standard çıktıya yazabilen bir aes-şifreleme aracıdır. AES (Rijndael) şifrelemesini kullanır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/crypt/afl/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | afl 5 | American fuzzy lop, ikilik dosya biçimleri için bir fuzzing aracıdır. 6 | American fuzzy lop hedeflenen çalıştırılabilir dosyalarda yeni iç durumları tetikleyebilen, kaliteli bir derleme zamanı ve güvenlik odaklı aracıdır. Bulanıklaştırılmış kodun işlevselliğini artırır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /util/crypt/component.xml: -------------------------------------------------------------------------------- 1 | 2 | util.crypt 3 | 4 | -------------------------------------------------------------------------------- /util/crypt/johntheripper/files/john-1.7.6-jumbo-7.diff.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/util/crypt/johntheripper/files/john-1.7.6-jumbo-7.diff.gz -------------------------------------------------------------------------------- /util/crypt/skey/files/confdir.patch: -------------------------------------------------------------------------------- 1 | diff -Nur skey-1.1.5-old//skeyprune.pl skey-1.1.5/skeyprune.pl 2 | --- skey-1.1.5-old//skeyprune.pl 2010-09-12 15:03:35.695999732 +0300 3 | +++ skey-1.1.5/skeyprune.pl 2010-09-12 15:06:03.817000568 +0300 4 | @@ -14,7 +14,7 @@ 5 | die "Usage: $0 [days]\n" if $#ARGC > 0; 6 | 7 | # Pathnames 8 | -$keyfile = '/etc/skeykeys'; 9 | +$keyfile = '/etc/skey/skeykeys'; 10 | $temp = "$keyfile.tmp$$"; 11 | 12 | # Quick mapping of month name -> number 13 | -------------------------------------------------------------------------------- /util/crypt/skey/files/skey-1.1.5-fPIC.patch: -------------------------------------------------------------------------------- 1 | --- Makefile.in 2004-02-25 10:16:15.219448392 +0000 2 | +++ Makefile.in 2004-02-25 10:16:39.087583762 +0000 3 | @@ -50,6 +50,9 @@ 4 | 5 | ${LIBOBJS}: config.h 6 | 7 | +${LIBOBJS}: %.o: %.c 8 | + ${CC} ${CFLAGS} -fPIC -c $< -o $@ 9 | + 10 | libskey.a: ${LIBOBJS} 11 | ${AR} rv $@ ${LIBOBJS} 12 | ${RANLIB} $@ 13 | -------------------------------------------------------------------------------- /util/crypt/skey/files/skey-login_name_max.diff: -------------------------------------------------------------------------------- 1 | diff -ruN skey-1.1.5.orig/skeyinit.c skey-1.1.5/skeyinit.c 2 | --- skey-1.1.5.orig/skeyinit.c 2003-11-12 21:26:49.000000000 +0000 3 | +++ skey-1.1.5/skeyinit.c 2003-11-12 21:28:24.000000000 +0000 4 | @@ -62,6 +62,11 @@ 5 | #define SKEY_NAMELEN 4 6 | #endif 7 | 8 | +/* #33315 */ 9 | +#ifndef LOGIN_NAME_MAX 10 | +#define LOGIN_NAME_MAX 256 11 | +#endif 12 | + 13 | int main __P((int, char **)); 14 | 15 | int main(int argc, char **argv) 16 | -------------------------------------------------------------------------------- /util/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | util.misc 3 | 4 | -------------------------------------------------------------------------------- /util/misc/keepassx/files/gcc43.patch: -------------------------------------------------------------------------------- 1 | diff -Naur keepassx-0.3.3.orig/src/lib/random.cpp keepassx-0.3.3/src/lib/random.cpp 2 | --- keepassx-0.3.3.orig/src/lib/random.cpp 2008-05-10 12:00:47.000000000 +0300 3 | +++ keepassx-0.3.3/src/lib/random.cpp 2008-10-04 20:08:39.000000000 +0300 4 | @@ -19,6 +19,7 @@ 5 | ***************************************************************************/ 6 | 7 | #include "random.h" 8 | +#include 9 | 10 | 11 | #if defined(Q_WS_X11) || defined(Q_WS_MAC) 12 | -------------------------------------------------------------------------------- /util/misc/keepassx/files/keepassx-0.4.3-gcc47.patch: -------------------------------------------------------------------------------- 1 | diff -up keepassx-0.4.3/src/lib/random.cpp.gcc47 keepassx-0.4.3/src/lib/random.cpp 2 | --- keepassx-0.4.3/src/lib/random.cpp.gcc47 2012-03-30 18:17:25.913476536 -0400 3 | +++ keepassx-0.4.3/src/lib/random.cpp 2012-03-30 18:17:33.346409646 -0400 4 | @@ -20,6 +20,7 @@ 5 | 6 | #include "random.h" 7 | #include 8 | +#include 9 | 10 | 11 | #if defined(Q_WS_X11) || defined(Q_WS_MAC) -------------------------------------------------------------------------------- /util/misc/keepassx/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | keepassx 5 | Platform bağımsız parola yöneticisi 6 | KeePassX, parolalarınızı güvenli bir şekilde yönetebileceğiniz, açık kaynaklı/ücretsiz bir parola yöneticisidir. Bütün parolalarınızı, bir ana parola kullanarak tek bir veritanabanında saklayabilirsiniz. 7 | 8 | 9 | -------------------------------------------------------------------------------- /x11/component.xml: -------------------------------------------------------------------------------- 1 | 2 | x11 3 | 4 | -------------------------------------------------------------------------------- /x11/library/component.xml: -------------------------------------------------------------------------------- 1 | 2 | x11.library 3 | 4 | -------------------------------------------------------------------------------- /x11/library/jq/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jq 5 | jq is a lightweight and flexible command-line JSON processor. 6 | jq is a lightweight and flexible command-line JSON processor. 7 | 8 | 9 | -------------------------------------------------------------------------------- /x11/library/libclc/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | libclc 5 | Library requirements of the OpenCL C programming language 6 | Library requirements of the OpenCL C programming language 7 | 8 | 9 | -------------------------------------------------------------------------------- /x11/misc/component.xml: -------------------------------------------------------------------------------- 1 | 2 | x11.misc 3 | 4 | -------------------------------------------------------------------------------- /x11/misc/encodings/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | encodings 5 | X.org font encoding files 6 | 7 | X.org font encoding files 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /x11/misc/mkfontscale/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | mkfontscale 5 | Create an index of scalable font files for X 6 | 7 | Create an index of scalable font files for X 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /x11/misc/unifont/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import pisitools 8 | 9 | WorkDir="." 10 | 11 | def install(): 12 | pisitools.insinto("/usr/share/fonts/unifont/","*.ttf") 13 | 14 | -------------------------------------------------------------------------------- /x11/misc/unifont/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | unifont 5 | http://unifoundry.com/unifont/index.html 6 | http://unifoundry.com/unifont/index.html 7 | 8 | 9 | -------------------------------------------------------------------------------- /x11/terminal/component.xml: -------------------------------------------------------------------------------- 1 | 2 | x11.terminal 3 | 4 | -------------------------------------------------------------------------------- /x11/util/component.xml: -------------------------------------------------------------------------------- 1 | 2 | x11.util 3 | 4 | -------------------------------------------------------------------------------- /x11/wm/component.xml: -------------------------------------------------------------------------------- 1 | 2 | x11.wm 3 | 4 | -------------------------------------------------------------------------------- /x11/wm/obconf/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import shelltools, autotools, pisitools 8 | 9 | def setup(): 10 | shelltools.system("./bootstrap") 11 | autotools.configure() 12 | 13 | def build(): 14 | autotools.make() 15 | 16 | def install(): 17 | autotools.install() 18 | 19 | pisitools.dodoc("AUTHORS") 20 | -------------------------------------------------------------------------------- /x11/wm/obconf/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | obconf 5 | Openbox ayar yöneticisi 6 | ObConf, Openbox pencere yöneticisi için bir grafik yapılandırma aracıdır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /x11/wm/obkey/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import pythonmodules, pisitools 8 | 9 | WorkDir = '.' 10 | 11 | def build(): 12 | pythonmodules.compile() 13 | 14 | def install(): 15 | pythonmodules.install() 16 | 17 | pisitools.insinto('/usr/share/applications', 'misc/obkey.desktop') 18 | 19 | -------------------------------------------------------------------------------- /x11/wm/oblogout/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import pythonmodules 8 | #from pisi.actionsapi import pisitools 9 | 10 | def build(): 11 | pythonmodules.compile(pyVer = "3") 12 | 13 | def install(): 14 | pythonmodules.install(pyVer = "3") 15 | 16 | # pisitools.dodoc("") 17 | -------------------------------------------------------------------------------- /x11/wm/oblogout/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | oblogout 5 | Openbox çıkış komutları 6 | Oblogout tema ve simge değişim desteğide sunan openbox masaüstü ortamı için hazırlanmış çıkış komutlarını içeren uygulamadır. 7 | 8 | 9 | -------------------------------------------------------------------------------- /x11/wm/openbox-git/files/kedicik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pisilinux/old_contrib/1eedf7554a0581ce9a90b6f5ffc06f477dd5aa2c/x11/wm/openbox-git/files/kedicik.png -------------------------------------------------------------------------------- /x11/wm/openbox-git/files/menu.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /x11/wm/openbox-git/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | openbox 5 | Standartlara uygun, hızlı, hafif bir pencere yöneticisi 6 | Openbox, X11 pencere sistemi için pencere yöneticisidir. 7 | 8 | 9 | 10 | openbox-devel 11 | Openbox için geliştirme başlıkları 12 | 13 | 14 | -------------------------------------------------------------------------------- /x11/wm/openbox-menu/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file https://www.gnu.org/licenses/gpl-3.0.txt 6 | 7 | from pisi.actionsapi import autotools 8 | from pisi.actionsapi import pisitools 9 | from pisi.actionsapi import get 10 | 11 | def build(): 12 | autotools.make() 13 | 14 | def install(): 15 | autotools.rawInstall("DESTDIR=%s" % get.installDIR()) 16 | 17 | pisitools.dodoc("AUTHORS", "COPYING") 18 | -------------------------------------------------------------------------------- /x11/wm/openbox-menu/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | openbox 4 | Standartlara uygun, hızlı, hafif bir pencere yöneticisi 5 | Openbox, X11 pencere sistemi için pencere yöneticisidir. 6 | 7 | 8 | 9 | openbox-devel 10 | Openbox için geliştirme başlıkları 11 | 12 | -------------------------------------------------------------------------------- /x11/wm/openbox-obsession/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | openbox 4 | Standartlara uygun, hızlı, hafif bir pencere yöneticisi 5 | Openbox, X11 pencere sistemi için pencere yöneticisidir. 6 | 7 | 8 | 9 | openbox-devel 10 | Openbox için geliştirme başlıkları 11 | 12 | -------------------------------------------------------------------------------- /x11/xclip/actions.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | # -*- coding: utf-8 -*- 3 | # 4 | # Licensed under the GNU General Public License, version 3. 5 | # See the file http://www.gnu.org/copyleft/gpl.txt. 6 | 7 | from pisi.actionsapi import autotools 8 | from pisi.actionsapi import get 9 | 10 | def setup(): 11 | autotools.autoreconf() 12 | autotools.rawConfigure() 13 | 14 | def build(): 15 | autotools.make() 16 | 17 | def install(): 18 | autotools.rawInstall("DESTDIR=%s" % get.installDIR()) 19 | 20 | -------------------------------------------------------------------------------- /x11/xclip/translations.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | xclip 5 | xclip, bir X11 gerçekleştirmesi üzerinde çalışan bir sistem için tasarlanmış bir komut satırı aracıdır. 6 | xclip, bir X11 gerçekleştirmesi üzerinde çalışan bir sistem için tasarlanmış bir komut satırı aracıdır. KOmut satırından X seçilenlerine (pano) bir ara yüz sağlar. 7 | 8 | 9 | --------------------------------------------------------------------------------