diff --git a/desktop/lookandfeel/icon-theme-hicolor/pspec.xml b/desktop/lookandfeel/icon-theme-hicolor/pspec.xml index f4a4ca6dda..fe05497326 100644 --- a/desktop/lookandfeel/icon-theme-hicolor/pspec.xml +++ b/desktop/lookandfeel/icon-theme-hicolor/pspec.xml @@ -13,7 +13,7 @@ data Default icon theme Hicolor icon theme contains the basic directories and files needed for icon theme support. - http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.tar.gz + https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.15.tar.xz @@ -26,8 +26,8 @@ - 2013-08-26 - 0.12 + 2016-04-09 + 0.15 First release Serdar Soytetir kaptan@pisilinux.org diff --git a/multimedia/misc/sdl2-net/actions.py b/multimedia/misc/sdl2-net/actions.py new file mode 100644 index 0000000000..700a889fbd --- /dev/null +++ b/multimedia/misc/sdl2-net/actions.py @@ -0,0 +1,21 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +WorkDir = "SDL2_net-%s" % get.srcVERSION() + +def setup(): + autotools.configure("--disable-static") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.dodoc("CHANGES.txt", "COPYING.txt", "README.txt") diff --git a/multimedia/misc/sdl2-net/pspec.xml b/multimedia/misc/sdl2-net/pspec.xml new file mode 100644 index 0000000000..8e3182be5c --- /dev/null +++ b/multimedia/misc/sdl2-net/pspec.xml @@ -0,0 +1,54 @@ + + + + + sdl2-net + http://www.libsdl.org/projects/SDL_net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + SDL network library 2.0 series + sdl-mixer is a SDL library for network access. + http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz + + libsdl2-devel + + + + + sdl2-net + + libsdl2 + + + /usr/lib + /usr/share/doc + + + + + sdl2-net-devel + Development files for sdl-net + + sdl2-net + libsdl2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2016-04-11 + 2.0.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + \ No newline at end of file diff --git a/multimedia/misc/sdl2-net/translations.xml b/multimedia/misc/sdl2-net/translations.xml new file mode 100644 index 0000000000..3097dfaf29 --- /dev/null +++ b/multimedia/misc/sdl2-net/translations.xml @@ -0,0 +1,14 @@ + + + + sdl2-net + SDL ağ kütüphanesi 2.0 serisi + Librairie réseau de SDL. + sdl-net, SDL için ağ erişim kitaplığıdır. + + + + sdl2-net-devel + sdl2-net için geliştirme dosyaları + + \ No newline at end of file diff --git a/multimedia/misc/sdl2-ttf/actions.py b/multimedia/misc/sdl2-ttf/actions.py new file mode 100644 index 0000000000..61898a8d86 --- /dev/null +++ b/multimedia/misc/sdl2-ttf/actions.py @@ -0,0 +1,39 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +WorkDir = "SDL2_ttf-%s" % get.srcVERSION() + +def setup(): + options = "--disable-dependency-tracking \ + --disable-static \ + --with-x" + + if get.buildTYPE() == "emul32": + #options += " --prefix=/emul32 \ + options += " --includedir=/usr/include \ + --libdir=/usr/lib32" + + shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") + shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS()) + shelltools.export("CXXFLAGS", "%s -m32" % get.CXXFLAGS()) + shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS()) + + autotools.configure(options) + +def build(): + pisitools.dosed("Makefile", "-lz -lbz2", "") + + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("CHANGES.txt", "COPYING.txt", "README.txt") diff --git a/multimedia/misc/sdl2-ttf/pspec.xml b/multimedia/misc/sdl2-ttf/pspec.xml new file mode 100644 index 0000000000..139520fc90 --- /dev/null +++ b/multimedia/misc/sdl2-ttf/pspec.xml @@ -0,0 +1,80 @@ + + + + + sdl2-ttf + http://www.libsdl.org/projects/SDL_ttf/ + + Mathias Freire + mathiasfreire45@gmail.com + + LGPLv2.1 + library + TrueType font support for SDL2 + SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. + http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz + + libsdl2-devel + freetype-devel + + + + + sdl2-ttf + + libsdl2 + harfbuzz + freetype + + + /usr/lib + /usr/share/doc + + + + + sdl2-ttf-devel + Development files for sdl2-ttf + + libsdl2-devel + sdl2-ttf + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + sdl2-ttf-32bit + emul32 + 32-bit shared libraries for sdl2-ttf + emul32 + + libsdl2-32bit + freetype-32bit + + + glibc-32bit + libpng-32bit + libsdl2-32bit + harfbuzz-32bit + freetype-32bit + sdl2-ttf + + + /usr/lib32/ + + + + + + 2016-04-11 + 2.0.14 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + \ No newline at end of file diff --git a/multimedia/misc/sdl2-ttf/translations.xml b/multimedia/misc/sdl2-ttf/translations.xml new file mode 100644 index 0000000000..5f2b62b1f6 --- /dev/null +++ b/multimedia/misc/sdl2-ttf/translations.xml @@ -0,0 +1,20 @@ + + + + sdl2-ttf + SDL2 TTF kitaplığı + SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır. + SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle. + SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable. + + + + sdl2-ttf-devel + sdl2-ttf için geliştirme dosyaları + + + + sdl2-ttf-32bit + sdl2-ttf için 32-bit paylaşımlı kitaplıklar + + \ No newline at end of file diff --git a/office/libreoffice/libreoffice/actions.py b/office/libreoffice/libreoffice/actions.py index 931a590c38..78f3a002ad 100644 --- a/office/libreoffice/libreoffice/actions.py +++ b/office/libreoffice/libreoffice/actions.py @@ -16,6 +16,7 @@ LoVersion = "%s" % get.srcVERSION() OurWorkDir = "%s/libreoffice-%s" % (get.workDIR(), LoVersion) def setup(): + shelltools.system('sed -i "s:mdds >= 0.12.0:mdds-1.0 >= 0.12.0:g" configure.ac') shelltools.chmod("%s/bin/unpack-sources" % OurWorkDir) shelltools.export("LO_PREFIX", "/usr") shelltools.export("PYTHON", "python2.7") @@ -71,4 +72,4 @@ def install(): pisitools.insinto("/usr/share/appdata/", "sysui/desktop/appstream-appdata/libreoffice-*.xml") for pix in ["libreoffice-base.png", "libreoffice-calc.png", "libreoffice-draw.png", "libreoffice-impress.png", "libreoffice-main.png", "libreoffice-math.png", "libreoffice-startcenter.png", "libreoffice-writer.png"]: - pisitools.dosym("/usr/share/icons/hicolor/32x32/apps/%s" % pix, "/usr/share/pixmaps/%s" %pix) \ No newline at end of file + pisitools.dosym("/usr/share/icons/hicolor/32x32/apps/%s" % pix, "/usr/share/pixmaps/%s" %pix) diff --git a/office/libreoffice/libreoffice/files/remove_unnecessary_orcus_external_usage_from_makefiles.diff b/office/libreoffice/libreoffice/files/remove_unnecessary_orcus_external_usage_from_makefiles.diff new file mode 100644 index 0000000000..33bc08876e --- /dev/null +++ b/office/libreoffice/libreoffice/files/remove_unnecessary_orcus_external_usage_from_makefiles.diff @@ -0,0 +1,124 @@ +From 07d4c443e21cd22545d4516515c50b1c8dd39a9b Mon Sep 17 00:00:00 2001 +From: Michael Stahl +Date: Tue, 8 Mar 2016 15:01:59 +0100 +Subject: sc: remove unnecessary orcus external usage from makefiles + +This caused incremental builds to fail after today's orcus upgrade. + +The cxx files of these tests don't actually include orcus headers, so +the libraries were not re-linked in incremental builds. + +Change-Id: Ibfcf216a7848f3c0adfae4ef59c4b756c290d6b2 + +diff --git a/sc/CppunitTest_sc_bugfix_test.mk b/sc/CppunitTest_sc_bugfix_test.mk +index 55311cd..712f444 100644 +--- a/sc/CppunitTest_sc_bugfix_test.mk ++++ b/sc/CppunitTest_sc_bugfix_test.mk +@@ -16,8 +16,6 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sc_bugfix_test, \ + $(eval $(call gb_CppunitTest_use_externals,sc_bugfix_test, \ + boost_headers \ + mdds_headers \ +- orcus \ +- orcus-parser \ + libxml2 \ + )) + +diff --git a/sc/CppunitTest_sc_copypaste.mk b/sc/CppunitTest_sc_copypaste.mk +index 7df4f51..641709c 100644 +--- a/sc/CppunitTest_sc_copypaste.mk ++++ b/sc/CppunitTest_sc_copypaste.mk +@@ -16,8 +16,6 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sc_copypaste, \ + $(eval $(call gb_CppunitTest_use_externals,sc_copypaste, \ + boost_headers \ + mdds_headers \ +- orcus \ +- orcus-parser \ + libxml2 \ + )) + +diff --git a/sc/CppunitTest_sc_filters_test.mk b/sc/CppunitTest_sc_filters_test.mk +index 4fbf489..db445f53 100644 +--- a/sc/CppunitTest_sc_filters_test.mk ++++ b/sc/CppunitTest_sc_filters_test.mk +@@ -22,8 +22,6 @@ endif + $(eval $(call gb_CppunitTest_use_externals,sc_filters_test, \ + boost_headers \ + mdds_headers \ +- orcus \ +- orcus-parser \ + )) + + $(eval $(call gb_CppunitTest_use_libraries,sc_filters_test, \ +diff --git a/sc/CppunitTest_sc_opencl_test.mk b/sc/CppunitTest_sc_opencl_test.mk +index 86605a2..ea93111 100644 +--- a/sc/CppunitTest_sc_opencl_test.mk ++++ b/sc/CppunitTest_sc_opencl_test.mk +@@ -16,8 +16,6 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sc_opencl_test, \ + $(eval $(call gb_CppunitTest_use_externals,sc_opencl_test, \ + boost_headers \ + mdds_headers \ +- orcus \ +- orcus-parser \ + )) + + $(eval $(call gb_CppunitTest_use_libraries,sc_opencl_test, \ +diff --git a/sc/CppunitTest_sc_rangelst_test.mk b/sc/CppunitTest_sc_rangelst_test.mk +index 2bf6f0f..fa6f690 100644 +--- a/sc/CppunitTest_sc_rangelst_test.mk ++++ b/sc/CppunitTest_sc_rangelst_test.mk +@@ -16,18 +16,12 @@ $(eval $(call gb_CppunitTest_use_externals,sc_rangelst_test, \ + icuuc \ + libxml2 \ + mdds_headers \ +- orcus \ +- orcus-parser \ + )) + + $(eval $(call gb_CppunitTest_add_exception_objects,sc_rangelst_test, \ + sc/qa/unit/rangelst_test \ + )) + +-$(eval $(call gb_CppunitTest_use_library_objects,sc_rangelst_test, \ +- scqahelper \ +-)) +- + $(eval $(call gb_CppunitTest_use_libraries,sc_rangelst_test, \ + basegfx \ + comphelper \ +@@ -45,6 +39,7 @@ $(eval $(call gb_CppunitTest_use_libraries,sc_rangelst_test, \ + sax \ + sb \ + sc \ ++ scqahelper \ + sfx \ + sot \ + svl \ +diff --git a/sc/CppunitTest_sc_subsequent_export_test.mk b/sc/CppunitTest_sc_subsequent_export_test.mk +index 1cfaf69..6c2c9e5 100644 +--- a/sc/CppunitTest_sc_subsequent_export_test.mk ++++ b/sc/CppunitTest_sc_subsequent_export_test.mk +@@ -16,8 +16,6 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sc_subsequent_export_test, \ + $(eval $(call gb_CppunitTest_use_externals,sc_subsequent_export_test, \ + boost_headers \ + mdds_headers \ +- orcus \ +- orcus-parser \ + libxml2 \ + )) + +diff --git a/sc/CppunitTest_sc_subsequent_filters_test.mk b/sc/CppunitTest_sc_subsequent_filters_test.mk +index 08dedbb..845206b 100644 +--- a/sc/CppunitTest_sc_subsequent_filters_test.mk ++++ b/sc/CppunitTest_sc_subsequent_filters_test.mk +@@ -16,8 +16,6 @@ $(eval $(call gb_CppunitTest_add_exception_objects,sc_subsequent_filters_test, \ + $(eval $(call gb_CppunitTest_use_externals,sc_subsequent_filters_test, \ + boost_headers \ + mdds_headers \ +- orcus \ +- orcus-parser \ + libxml2 \ + )) + +-- +cgit v0.10.2 + diff --git a/office/libreoffice/libreoffice/pspec.xml b/office/libreoffice/libreoffice/pspec.xml index 069db76414..997351c0d2 100644 --- a/office/libreoffice/libreoffice/pspec.xml +++ b/office/libreoffice/libreoffice/pspec.xml @@ -15,9 +15,12 @@ LibreOffice office suite LibreOffice is an open source, multi-platform office productivity suite. It includes key desktop applications such as a word processor, a spreadsheet application, a presentation creator-viewer, a formula editor and a drawing program, with a user interface and feature set similar to other office suites. Sophisticated and flexible, LibreOffice also works transparently with a variety of file formats, including those of Microsoft Office. http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-5.1.2.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-help-5.1.2.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-dictionaries-5.1.2.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-translations-5.1.2.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-help-5.1.2.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-dictionaries-5.1.2.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-translations-5.1.2.2.tar.xz + + remove_unnecessary_orcus_external_usage_from_makefiles.diff + ant gperf @@ -94,14 +97,6 @@ libjpeg-turbo gstreamer-next - - libreoffice-base - libreoffice-calc - libreoffice-draw - libreoffice-math - libreoffice-writer - libreoffice-impress - /etc /usr/share/man @@ -128,9 +123,6 @@ libreoffice-common-dictionaries LibreOffice additional dictionaries LibreOffice additional dictionaries - - libreoffice-writer - /usr/lib/libreoffice/share/extensions @@ -1008,9 +1000,6 @@ locale:af libre-lang-af libreoffice-af, Afrikaans language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_af /usr/lib/libreoffice/share/autotext/af @@ -1043,9 +1032,6 @@ locale:ar libre-lang-ar libreoffice-ar, Arabic language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ar /usr/lib/libreoffice/share/autotext/ar @@ -1062,9 +1048,6 @@ locale:as libre-lang-as libreoffice-as, Assamese (India) language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_as /usr/lib/libreoffice/share/autotext/as @@ -1168,9 +1151,6 @@ locale:bg libre-lang-bg libreoffice-bg, Bulgarian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_bg /usr/lib/libreoffice/share/autotext/bg @@ -1187,9 +1167,6 @@ locale:bn libre-lang-bn libreoffice-bn, Bengali language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_bn /usr/lib/libreoffice/share/autotext/bn @@ -1238,9 +1215,6 @@ locale:br libre-lang-br libreoffice-br, Breton language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_br /usr/lib/libreoffice/share/autotext/br @@ -1289,9 +1263,6 @@ locale:ca libre-lang-ca libreoffice-ca, Catalan language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ca /usr/lib/libreoffice/share/autotext/ca @@ -1324,9 +1295,6 @@ locale:cs libre-lang-cs libreoffice-cs, Czech language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_cs /usr/lib/libreoffice/share/autotext/cs @@ -1343,9 +1311,6 @@ locale:cy libre-lang-cy libreoffice-cy, Welsh language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_cy /usr/lib/libreoffice/share/autotext/cy @@ -1362,9 +1327,6 @@ locale:da libre-lang-da libreoffice-da, Danish language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_da /usr/lib/libreoffice/share/autotext/da @@ -1381,9 +1343,6 @@ locale:de libre-lang-de libreoffice-de, German language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_de /usr/lib/libreoffice/share/autotext/de @@ -1416,9 +1375,6 @@ locale:dz libre-lang-dz libreoffice-dz, Dzongkha language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_dz /usr/lib/libreoffice/share/autotext/dz @@ -1435,9 +1391,6 @@ locale:el libre-lang-el libreoffice-el, Greek language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_el /usr/lib/libreoffice/share/autotext/el @@ -1470,9 +1423,6 @@ locale:en-US libre-lang-en-US libreoffice-en-US, English (US) language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_en-US /usr/lib/libreoffice/share/autotext/en-US @@ -1521,9 +1471,6 @@ locale:es libre-lang-es libreoffice-es, Spanish language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_es /usr/lib/libreoffice/share/autotext/es @@ -1540,9 +1487,6 @@ locale:et libre-lang-et libreoffice-et, Estonian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_et /usr/lib/libreoffice/share/autotext/et @@ -1559,9 +1503,6 @@ locale:eu libre-lang-eu libreoffice-eu, Basque language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_eu /usr/lib/libreoffice/share/autotext/eu @@ -1578,9 +1519,6 @@ locale:fa libre-lang-fa libreoffice-fa, Persian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_fa /usr/lib/libreoffice/share/autotext/fa @@ -1597,9 +1535,6 @@ locale:fi libre-lang-fi libreoffice-fi, Finnish language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_fi /usr/lib/libreoffice/share/autotext/fi @@ -1616,9 +1551,6 @@ locale:fr libre-lang-fr libreoffice-fr, French language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_fr /usr/lib/libreoffice/share/autotext/fr @@ -1635,9 +1567,6 @@ locale:ga libre-lang-ga libreoffice-ga, Irish language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ga /usr/lib/libreoffice/share/autotext/ga @@ -1670,9 +1599,6 @@ locale:gl libre-lang-gl libreoffice-gl, Galician language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_gl /usr/lib/libreoffice/share/autotext/gl @@ -1689,9 +1615,6 @@ locale:gu libre-lang-gu libreoffice-gu, Gujarati language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_gu /usr/lib/libreoffice/share/autotext/gu @@ -1708,9 +1631,6 @@ locale:he libre-lang-he libreoffice-he, Hebrew language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_he /usr/lib/libreoffice/share/autotext/he @@ -1743,9 +1663,6 @@ locale:hr libre-lang-hr libreoffice-hr, Croatian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_hr /usr/lib/libreoffice/share/autotext/hr @@ -1762,9 +1679,6 @@ locale:hu libre-lang-hu libreoffice-hu, Hungarian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_hu /usr/lib/libreoffice/share/autotext/hu @@ -1868,9 +1782,6 @@ locale:it libre-lang-it libreoffice-it, Italian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_it /usr/lib/libreoffice/share/autotext/it @@ -1887,9 +1798,6 @@ locale:ja libre-lang-ja libreoffice-ja, Japanese language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ja /usr/lib/libreoffice/share/autotext/ja @@ -1970,9 +1878,6 @@ locale:kn libre-lang-kn libreoffice-kn, Kannada language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_kn /usr/lib/libreoffice/share/autotext/kn @@ -1989,9 +1894,6 @@ locale:ko libre-lang-ko libreoffice-ko, Korean language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ko /usr/lib/libreoffice/share/autotext/ko @@ -2104,9 +2006,6 @@ locale:mai libre-lang-mai libreoffice-mai, Maithili language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_mai /usr/lib/libreoffice/share/autotext/mai @@ -2139,9 +2038,6 @@ locale:ml libre-lang-ml libreoffice-ml, Malayalam language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ml /usr/lib/libreoffice/share/autotext/ml @@ -2190,9 +2086,6 @@ locale:mr libre-lang-mr libreoffice-mr, Marathi language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_mr /usr/lib/libreoffice/share/autotext/mr @@ -2209,9 +2102,6 @@ locale:my libre-lang-my libreoffice-my, Burmese language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_my /usr/lib/libreoffice/share/autotext/my @@ -2228,9 +2118,6 @@ locale:nb libre-lang-nb libreoffice-nb, Norwegian Bokmal language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_nb /usr/lib/libreoffice/share/autotext/nb @@ -2263,9 +2150,6 @@ locale:nl libre-lang-nl libreoffice-nl, Dutch language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_nl /usr/lib/libreoffice/share/autotext/nl @@ -2282,9 +2166,6 @@ locale:nn libre-lang-nn libreoffice-nn, Norwegian Nynorsk language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_nn /usr/lib/libreoffice/share/autotext/nn @@ -2301,9 +2182,6 @@ locale:nr libre-lang-nr libreoffice-nr, Ndebele (South) language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_nr /usr/lib/libreoffice/share/autotext/nr @@ -2368,9 +2246,6 @@ locale:or libre-lang-or libreoffice-or, Oriya language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_or /usr/lib/libreoffice/share/autotext/or @@ -2387,9 +2262,6 @@ locale:pa-IN libre-lang-pa-IN libreoffice-pa-IN, Punjabi (India) language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_pa-IN /usr/lib/libreoffice/share/autotext/pa-IN @@ -2406,9 +2278,6 @@ locale:pl libre-lang-pl libreoffice-pl, Polish language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_pl /usr/lib/libreoffice/share/autotext/pl @@ -2425,9 +2294,6 @@ locale:pt libre-lang-pt libreoffice-pt, Portuguese language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_pt /usr/lib/libreoffice/share/autotext/pt @@ -2444,9 +2310,6 @@ locale:pt-BR libre-lang-pt-BR libreoffice-pt-BR, Portuguese (Brasil) language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_pt-BR /usr/lib/libreoffice/share/autotext/pt-BR @@ -2463,9 +2326,6 @@ locale:ro libre-lang-ro libreoffice-ro, Romanian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ro /usr/lib/libreoffice/share/autotext/ro @@ -2482,9 +2342,6 @@ locale:ru libre-lang-ru libreoffice-ru, Russian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ru /usr/lib/libreoffice/share/autotext/ru @@ -2565,9 +2422,6 @@ locale:si libre-lang-si libreoffice-si, Singhalese language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_si /usr/lib/libreoffice/share/autotext/si @@ -2655,9 +2509,6 @@ locale:sk libre-lang-sk libreoffice-sk, Slovak language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_sk /usr/lib/libreoffice/share/autotext/sk @@ -2674,9 +2525,6 @@ locale:sl libre-lang-sl libreoffice-sl, Slovenian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_sl /usr/lib/libreoffice/share/autotext/sl @@ -2709,9 +2557,6 @@ locale:sr libre-lang-sl libreoffice-sr, Serbian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_sr /usr/lib/libreoffice/share/autotext/sr @@ -2799,9 +2644,6 @@ locale:ss libre-lang-ss libreoffice-ss, Swati language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ss /usr/lib/libreoffice/share/autotext/ss @@ -2820,9 +2662,6 @@ locale:st libre-lang-st libreoffice-st, Southern Sotho language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_st /usr/lib/libreoffice/share/autotext/st @@ -2893,9 +2732,6 @@ locale:sv libre-lang-sv libreoffice-sv, Swedish language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_sv /usr/lib/libreoffice/share/autotext/sv @@ -2928,9 +2764,6 @@ locale:ta libre-lang-ta libreoffice-ta, Tamil language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ta /usr/lib/libreoffice/share/autotext/ta @@ -2947,9 +2780,6 @@ locale:te libre-lang-te libreoffice-te, Telugu language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_te /usr/lib/libreoffice/share/autotext/te @@ -2982,9 +2812,6 @@ locale:th libre-lang-th libreoffice-th, Thai language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_th /usr/lib/libreoffice/share/autothxt/th @@ -3001,9 +2828,6 @@ locale:tn libre-lang-tn libreoffice-tn, Tswana language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_tn /usr/lib/libreoffice/share/autothxt/tn @@ -3075,9 +2899,6 @@ locale:tr libre-lang-tr libreoffice-tr, Turkish language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_tr /usr/lib/libreoffice/share/autothxt/tr @@ -3094,9 +2915,6 @@ locale:ts libre-lang-ts libreoffice-ts, Tsonga language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ts /usr/lib/libreoffice/share/autothxt/ts @@ -3145,9 +2963,6 @@ locale:uk libre-lang-uk libreoffice-uk, Ukrainian language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_uk /usr/lib/libreoffice/share/autothxt/uk @@ -3180,9 +2995,6 @@ locale:ve libre-lang-ve libreoffice-ve, Venda language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_ve /usr/lib/libreoffice/share/autothxt/ve @@ -3215,9 +3027,6 @@ locale:xh libre-lang-xh libreoffice-xh, Xhosa language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_xh /usr/lib/libreoffice/share/autothxt/xh @@ -3250,9 +3059,6 @@ locale:zh-TW libre-lang-zh-TW libreoffice-zh-TW, Chinese (traditional) language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_zh-TW /usr/lib/libreoffice/share/autothxt/zh-TW @@ -3269,9 +3075,6 @@ locale:zu libre-lang-zu libreoffice-zu, Zulu language pack for LibreOffice. - - libreoffice-writer - /usr/lib/libreoffice/readmes/*_zu /usr/lib/libreoffice/share/autothxt/zu @@ -3285,11 +3088,11 @@ - 2016-04-08 + 2016-04-03 5.1.2.2 First release - Stefan Gronewold - groni@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org diff --git a/pisi-index.xml b/pisi-index.xml index 03199c90b9..9dd431c391 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -11296,6 +11296,88 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + + sdl2-ttf + http://www.libsdl.org/projects/SDL_ttf/ + + Mathias Freire + mathiasfreire45@gmail.com + + LGPLv2.1 + library + multimedia.misc + TrueType font support for SDL2 + SDL2 TTF kitaplığı + SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle. + SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. + SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır. + SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable. + http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz + + libsdl2-devel + freetype-devel + + multimedia/misc/sdl2-ttf/pspec.xml + + + sdl2-ttf + + libsdl2 + harfbuzz + freetype + + + /usr/lib + /usr/share/doc + + + + sdl2-ttf-devel + Development files for sdl2-ttf + sdl2-ttf için geliştirme dosyaları + + libsdl2-devel + sdl2-ttf + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl2-ttf-32bit + 32-bit shared libraries for sdl2-ttf + sdl2-ttf için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl2-32bit + freetype-32bit + + + glibc-32bit + libpng-32bit + libsdl2-32bit + harfbuzz-32bit + freetype-32bit + sdl2-ttf + + + /usr/lib32/ + + + + + 2016-04-11 + 2.0.14 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + libid3tag @@ -12202,6 +12284,61 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + + sdl2-net + http://www.libsdl.org/projects/SDL_net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie réseau de SDL. + SDL network library 2.0 series + SDL ağ kütüphanesi 2.0 serisi + sdl-mixer is a SDL library for network access. + sdl-net, SDL için ağ erişim kitaplığıdır. + http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz + + libsdl2-devel + + multimedia/misc/sdl2-net/pspec.xml + + + sdl2-net + + libsdl2 + + + /usr/lib + /usr/share/doc + + + + sdl2-net-devel + Development files for sdl-net + sdl2-net için geliştirme dosyaları + + sdl2-net + libsdl2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2016-04-11 + 2.0.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + libpano13 @@ -17238,7 +17375,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2016-03-19 + 2016-04-12 1.0.9 First release İbrahim KARAGÜZEL @@ -27722,6 +27859,60 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + physfs + http://icculus.org/physfs/ + + PisiLinux Community + admins@pisilinux.org + + ZLIB + library + programming.misc + Filesystem library + Dosya sistemi kitaplığı + Warstwa abstrakcji plików dla gier + Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux. + Abstraction layer for filesystems. + physfs dosya sistemi katmanı kitaplığıdır. + Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos + PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów. + http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2 + + cmake + zlib + + programming/misc/physfs/pspec.xml + + + physfs + + /usr/lib + /usr/share/doc + + + + physfs-devel + Development files for physfs + physfs için geliştirme dosyaları + + physfs + + + /usr/include + + + + + 2016-04-11 + 2.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + xerces-c @@ -30273,9 +30464,9 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol LibreOffice, pek çok farklı işletim sisteminde çalışabilen açık kaynak kodlu bir yazılım projesidir. LibreOffice, kelime işlemci, hesap tablosu, sunum ve çizim programları, formül düzenleyici gibi temel masaüstü ofis uygulamalarını içerir ve alışılmış ofis programlarının özelliklerini sunar. Microsoft Office dosyaları da dahil olmak üzere bilinen ofis dosya formatlarıyla uyumlu çalışır. libreoffice-startcenter http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-5.1.2.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-help-5.1.2.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-dictionaries-5.1.2.2.tar.xz - http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-translations-5.1.2.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-help-5.1.2.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-dictionaries-5.1.2.2.tar.xz + http://download.documentfoundation.org/libreoffice/src/5.1.2/libreoffice-translations-5.1.2.2.tar.xz ant gperf @@ -30309,6 +30500,9 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol gtk3-devel gtk2-devel + + remove_unnecessary_orcus_external_usage_from_makefiles.diff + office/libreoffice/libreoffice/pspec.xml @@ -30370,14 +30564,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/share/gir-1.0/LOKDocView-0.1.gir /usr/lib/girepository-1.0/LOKDocView-0.1.typelib - - libreoffice-base - libreoffice-calc - libreoffice-draw - libreoffice-math - libreoffice-writer - libreoffice-impress - libreoffice-splash.png @@ -30389,9 +30575,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/extensions - - libreoffice-writer - libreoffice-base @@ -31177,9 +31360,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/af.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/af.zip - - libreoffice-writer - libreoffice-am @@ -31210,9 +31390,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ar.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ar.zip - - libreoffice-writer - libreoffice-as @@ -31228,9 +31405,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/as.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/as.zip - - libreoffice-writer - libreoffice-ast @@ -31331,9 +31505,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/bg.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/bg.zip - - libreoffice-writer - libreoffice-bn @@ -31349,9 +31520,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/bn.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/bn.zip - - libreoffice-writer - libreoffice-bn-IN @@ -31397,9 +31565,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/br.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/br.zip - - libreoffice-writer - libreoffice-brx @@ -31445,9 +31610,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ca.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ca.zip - - libreoffice-writer - libreoffice-ca-valencia @@ -31478,9 +31640,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/cs.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/cs.zip - - libreoffice-writer - libreoffice-cy @@ -31496,9 +31655,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/cy.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/cy.zip - - libreoffice-writer - libreoffice-da @@ -31514,9 +31670,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/da.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/da.zip - - libreoffice-writer - libreoffice-de @@ -31532,9 +31685,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/de.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/de.zip - - libreoffice-writer - libreoffice-dgo @@ -31565,9 +31715,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/dz.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/dz.zip - - libreoffice-writer - libreoffice-el @@ -31583,9 +31730,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/el.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/el.zip - - libreoffice-writer - libreoffice-en-GB @@ -31616,9 +31760,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/en-US.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/en-US.zip - - libreoffice-writer - libreoffice-en-ZA @@ -31664,9 +31805,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/es.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/es.zip - - libreoffice-writer - libreoffice-et @@ -31682,9 +31820,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/et.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/et.zip - - libreoffice-writer - libreoffice-eu @@ -31700,9 +31835,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/eu.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/eu.zip - - libreoffice-writer - libreoffice-fa @@ -31718,9 +31850,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/fa.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/fa.zip - - libreoffice-writer - libreoffice-fi @@ -31736,9 +31865,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/fi.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/fi.zip - - libreoffice-writer - libreoffice-fr @@ -31754,9 +31880,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/fr.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/fr.zip - - libreoffice-writer - libreoffice-ga @@ -31772,9 +31895,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ga.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ga.zip - - libreoffice-writer - libreoffice-gd @@ -31805,9 +31925,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/gl.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/gl.zip - - libreoffice-writer - libreoffice-gu @@ -31823,9 +31940,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/gu.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/gu.zip - - libreoffice-writer - libreoffice-he @@ -31841,9 +31955,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/he.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/he.zip - - libreoffice-writer - libreoffice-hi @@ -31874,9 +31985,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/hr.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/hr.zip - - libreoffice-writer - libreoffice-hu @@ -31892,9 +32000,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/hu.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/hu.zip - - libreoffice-writer - libreoffice-id @@ -31995,9 +32100,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/it.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/it.zip - - libreoffice-writer - libreoffice-ja @@ -32013,9 +32115,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ja.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ja.zip - - libreoffice-writer - libreoffice-ka @@ -32091,9 +32190,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/kn.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/kn.zip - - libreoffice-writer - libreoffice-ko @@ -32109,9 +32205,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ko.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ko.zip - - libreoffice-writer - libreoffice-kok @@ -32217,9 +32310,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/mai.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/mai.zip - - libreoffice-writer - libreoffice-mk @@ -32250,9 +32340,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ml.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ml.zip - - libreoffice-writer - libreoffice-mn @@ -32298,9 +32385,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/mr.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/mr.zip - - libreoffice-writer - libreoffice-my @@ -32316,9 +32400,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/my.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/my.zip - - libreoffice-writer - libreoffice-nb @@ -32334,9 +32415,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nb.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nb.zip - - libreoffice-writer - libreoffice-ne @@ -32367,9 +32445,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nl.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nl.zip - - libreoffice-writer - libreoffice-nn @@ -32385,9 +32460,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nn.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nn.zip - - libreoffice-writer - libreoffice-nr @@ -32403,9 +32475,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/nr.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/nr.zip - - libreoffice-writer - libreoffice-nso @@ -32466,9 +32535,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/or.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/or.zip - - libreoffice-writer - libreoffice-pa-IN @@ -32484,9 +32550,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pa-IN.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pa-IN.zip - - libreoffice-writer - libreoffice-pl @@ -32502,9 +32565,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pl.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pl.zip - - libreoffice-writer - libreoffice-pt @@ -32520,9 +32580,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pt.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pt.zip - - libreoffice-writer - libreoffice-pt-BR @@ -32538,9 +32595,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/pt-BR.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/pt-BR.zip - - libreoffice-writer - libreoffice-ro @@ -32556,9 +32610,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ro.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ro.zip - - libreoffice-writer - libreoffice-ru @@ -32574,9 +32625,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ru.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ru.zip - - libreoffice-writer - libreoffice-rw @@ -32652,9 +32700,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/si.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/si.zip - - libreoffice-writer - libreoffice-sid @@ -32740,9 +32785,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sk.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sk.zip - - libreoffice-writer - libreoffice-sl @@ -32758,9 +32800,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sl.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sl.zip - - libreoffice-writer - libreoffice-sq @@ -32791,9 +32830,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sr.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sr.zip - - libreoffice-writer - libreoffice-sr-Latn @@ -32881,9 +32917,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ss.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ss.zip - - libreoffice-writer - libreoffice-st @@ -32953,9 +32986,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/st.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/st.zip - - libreoffice-writer - libreoffice-sv @@ -32971,9 +33001,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/sv.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/sv.zip - - libreoffice-writer - libreoffice-sw-TZ @@ -33004,9 +33031,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ta.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ta.zip - - libreoffice-writer - libreoffice-te @@ -33022,9 +33046,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/te.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/te.zip - - libreoffice-writer - libreoffice-tg @@ -33055,9 +33076,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/th.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/th.zip - - libreoffice-writer - libreoffice-tn @@ -33128,9 +33146,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/tn.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/tn.zip - - libreoffice-writer - libreoffice-tr @@ -33146,9 +33161,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/tr.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/tr.zip - - libreoffice-writer - libreoffice-ts @@ -33164,9 +33176,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ts.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ts.zip - - libreoffice-writer - libreoffice-tt @@ -33212,9 +33221,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/uk.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/uk.zip - - libreoffice-writer - libreoffice-uz @@ -33245,9 +33251,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/ve.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/ve.zip - - libreoffice-writer - libreoffice-vi @@ -33278,9 +33281,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/xh.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/xh.zip - - libreoffice-writer - libreoffice-zh-CN @@ -33311,9 +33311,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/zh-TW.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/zh-TW.zip - - libreoffice-writer - libreoffice-zu @@ -33329,17 +33326,14 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/zu.zip /usr/lib/libreoffice/share/config/soffice.cfg/*/*/ui/res/zu.zip - - libreoffice-writer - - 2016-04-08 + 2016-04-03 5.1.2.2 First release - Stefan Gronewold - groni@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org @@ -82674,7 +82668,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol Temel simge teması Hicolor icon theme contains the basic directories and files needed for icon theme support. Hicolor, simge teması desteği için ihtiyaç duyulan temel dizin ve dosyalarıni içeren temel bir simge temasıdır. - http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.tar.gz + https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.15.tar.xz desktop/lookandfeel/icon-theme-hicolor/pspec.xml @@ -82686,8 +82680,8 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2013-08-26 - 0.12 + 2016-04-09 + 0.15 First release Serdar Soytetir kaptan@pisilinux.org diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 2b3d9352d6..ee770e5574 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -2b46357e05b4f5f47f4eed9923bdd989b555dda5 \ No newline at end of file +9b0a783fe8af9a9f757259d8e3eec6c8f900075d \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index c924f15185..ff879beee9 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index e270f88d13..42ecf2b9fd 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -5c3e378b80c6a11de1f95b157816824182a30e93 \ No newline at end of file +66c78da2b327cea2745faf8cf2eea268e6acef2f \ No newline at end of file diff --git a/programming/misc/physfs/actions.py b/programming/misc/physfs/actions.py new file mode 100644 index 0000000000..bee0aa2fd4 --- /dev/null +++ b/programming/misc/physfs/actions.py @@ -0,0 +1,28 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + + +def setup(): + cmaketools.configure("-DPHYSFS_BUILD_STATIC=OFF \ + -DPHYSFS_BUILD_SHARED=ON \ + -DPHYSFS_ARCHIVE_7Z=OFF \ + -DPHYSFS_BUILD_TEST=OFF \ + -DPHYSFS_BUILD_WX_TEST=OFF \ + -DPHYSFS_INTERNAL_ZLIB=OFF \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr ") + +def build(): + cmaketools.make() + +def install(): + cmaketools.rawInstall('DESTDIR="%s"' % get.installDIR()) + + pisitools.dodoc("CHANGELOG.txt", "CREDITS.txt", "TODO.txt") diff --git a/programming/misc/physfs/pspec.xml b/programming/misc/physfs/pspec.xml new file mode 100644 index 0000000000..f60035f24e --- /dev/null +++ b/programming/misc/physfs/pspec.xml @@ -0,0 +1,50 @@ + + + + + physfs + http://icculus.org/physfs/ + + PisiLinux Community + admins@pisilinux.org + + ZLIB + library + Filesystem library + Abstraction layer for filesystems. + http://icculus.org/physfs/downloads/physfs-2.0.3.tar.bz2 + + cmake + zlib + + + + + physfs + + /usr/lib + /usr/share/doc + + + + + physfs-devel + Development files for physfs + + physfs + + + /usr/include + + + + + + 2016-04-11 + 2.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + \ No newline at end of file diff --git a/programming/misc/physfs/translations.xml b/programming/misc/physfs/translations.xml new file mode 100644 index 0000000000..f2d949f70b --- /dev/null +++ b/programming/misc/physfs/translations.xml @@ -0,0 +1,17 @@ + + + + physfs + Dosya sistemi kitaplığı + Warstwa abstrakcji plików dla gier + physfs dosya sistemi katmanı kitaplığıdır. + Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux. + Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos + PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów. + + + + physfs-devel + physfs için geliştirme dosyaları + +