Merge branch 'master' of github.com:pisilinux/main

This commit is contained in:
Ertuğrul Erata
2015-11-03 08:59:05 +03:00
20 changed files with 673 additions and 9 deletions
@@ -0,0 +1,23 @@
#!/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("-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr")
def build():
cmaketools.make()
def install():
pisitools.insinto("/usr/share/freshplayerplugin/", "data/freshwrapper.conf.example")
pisitools.insinto("/usr/lib/mozilla/plugins/", "libfreshwrapper-*.so")
pisitools.dosed("%s/usr/share/freshplayerplugin/freshwrapper.conf.example" % get.installDIR(), "/opt/google/chrome", "/usr/lib/chromium-browser")
pisitools.dodoc("COPYING", "LICENSE")
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>freshplayerplugin</Name>
<Homepage>https://github.com/i-rinat/freshplayerplugin</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>app:gui</IsA>
<Summary>ppapi2npapi compatibility layer</Summary>
<Description>PPAPI-host NPAPI-plugin adapter.</Description>
<Archive sha1sum="195fe1c097ac896075d0d73e71f6d08df27f97e4" type="targz">https://github.com/i-rinat/freshplayerplugin/archive/v0.3.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ragel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libva-devel</Dependency>
<Dependency>libv4l-devel</Dependency>
<Dependency>ffmpeg-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>libvdpau-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>libevent-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>freshplayerplugin</Name>
<RuntimeDependencies>
<Dependency>mesa</Dependency>
<Dependency>libva</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>libv4l</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>libevent</Dependency>
<Dependency>libvdpau</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>pepperflash</Dependency> <!-- no remove -->
<Dependency>pulseaudio-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/freshplayerplugin/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-010-30</Date>
<Version>0.3.3</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>freshplayerplugin</Name>
<Summary xml:lang="en">ppapi2npapi compatibility layer</Summary>
<Description xml:lang="en">PPAPI-host NPAPI-plugin adapter.</Description>
</Source>
</PISI>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>Google Chrome's Pepper Flash plugin for Chromium.</Summary>
<Description>Google Chrome's Pepper Flash plugin for Chromium (stable version)</Description>
<Archive sha1sum="dbe4686078af10161e431e742e6c777bc1348c0c" type="tarxz">https://dl.dropboxusercontent.com/s/8jxvv106fteve8u/PepperFlash-18.0.0.233.tar.xz</Archive>
<Archive sha1sum="5a58a7665fbbd9090a75832fa6881aff71b1fc19" type="tarxz">http://sourceforge.net/projects/pisilinux/files/source/PepperFlash-19.0.0.226.tar.xz</Archive>
</Source>
<Package>
@@ -30,6 +30,13 @@
</Package>
<History>
<Update release="2">
<Date>2015-11-02</Date>
<Version>19.0.0.226</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-08-15</Date>
<Version>18.0.0.233</Version>
+20
View File
@@ -0,0 +1,20 @@
#!/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
def setup():
autotools.configure("--disable-static \
--enable-examples")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS", "README", "COPYING", "NEWS")
+55
View File
@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>chmlib</Name>
<Homepage>http://www.jedrea.com/chmlib/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>A library for dealing with Microsoft ITSS/CHM format files</Summary>
<Description>Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files.</Description>
<Archive sha1sum="5231d7531e8808420d7f89fd1e4fdbac1ed7a167" type="tarbz2">http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2</Archive>
</Source>
<Package>
<Name>chmlib</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>chmlib-devel</Name>
<Summary>Development files for chmlib</Summary>
<RuntimeDependencies>
<Dependency release="current">chmlib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2014-01-20</Date>
<Version>0.40</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-13</Date>
<Version>0.40</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+15
View File
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>chmlib</Name>
<Summary xml:lang="tr">Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane</Summary>
<Description xml:lang="tr">Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır.</Description>
<Description xml:lang="fr">Chmlib est une librairie s'occupant des formats de fichiers Microsoft ITSS/CHM. Pour l'instant, il s'agit d'une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm.</Description>
<Description xml:lang="es">Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm.</Description>
</Source>
<Package>
<Name>chmlib-devel</Name>
<Summary xml:lang="tr">chmlib için geliştirme dosyaları</Summary>
</Package>
</PISI>
+34
View File
@@ -0,0 +1,34 @@
#!/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 = "djvulibre-%s" % get.srcVERSION() if len(get.srcVERSION().split(".")) < 4 else "djvulibre-%s" % get.srcVERSION()[:get.srcVERSION().rfind(".")]
def setup():
autotools.aclocal("-I config")
autotools.autoconf("-f")
autotools.configure("--enable-threads \
--disable-desktopfiles \
--enable-xmltools \
--enable-i18n \
--with-jpeg \
--with-tiff")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.insinto("/usr/share/mime/packages", "desktopfiles/djvulibre-mime.xml")
for size in ["22", "32", "48", "64"]:
pisitools.insinto("/usr/share/icons/hicolor/%sx%s/mimetypes" %(size, size), "desktopfiles/prebuilt-hi%s-djvu.png" % size, "image-vnd.djvu.png")
pisitools.dodoc("COPY*", "README", "NEWS")
@@ -0,0 +1,12 @@
diff -up djvulibre-3.5.22/libdjvu/GSmartPointer.h.cdefs djvulibre-3.5.22/libdjvu/GSmartPointer.h
--- djvulibre-3.5.22/libdjvu/GSmartPointer.h.cdefs 2008-03-05 01:44:20.000000000 +0000
+++ djvulibre-3.5.22/libdjvu/GSmartPointer.h 2011-01-31 13:43:37.595917364 +0000
@@ -65,6 +65,8 @@
# pragma interface
#endif
+#include <cstddef>
+
/** @name GSmartPointer.h
Files #"GSmartPointer.h"# and #"GSmartPointer.cpp"# define a smart-pointer
+13
View File
@@ -0,0 +1,13 @@
Index: djvulibre-3.5.22/config/acinclude.m4
===================================================================
--- djvulibre-3.5.22.orig/config/acinclude.m4
+++ djvulibre-3.5.22/config/acinclude.m4
@@ -408,7 +408,7 @@ case "${host_os}-${GCC}" in
# On Linux/GCC, libtool uses -nostdlib for linking, which cancel part
# of the -pthread flag effect (libpthread is not automatically linked).
# So we'll try to link with both -pthread and -lpthread first:
- acx_pthread_flags="-pthread:pthread $acx_pthread_flags"
+ acx_pthread_flags="-lpthread -pthread:pthread $acx_pthread_flags"
;;
esac
if test x"$acx_pthread_ok" = xno; then
+84
View File
@@ -0,0 +1,84 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>djvu</Name>
<Homepage>http://djvu.sourceforge.net</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<IsA>library</IsA>
<Summary>DjVu viewers, encoders and utilities</Summary>
<Description>DjVu is a web-centric format and software platform to distribute documents and images.</Description>
<Archive sha1sum="99c4f2c621c063bf8c8a1626030539fe5a8675f9" type="targz">mirrors://sourceforge/djvu/djvulibre-3.5.27.tar.gz</Archive>
<BuildDependencies>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>tiff-devel</Dependency>
<Dependency>xdg-utils</Dependency>
<Dependency>libXt-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">no-pthread.diff</Patch>
<Patch level="1">djvulibre-3.5.22-cdefs.patch</Patch>
</Patches>
</Source>
<Package>
<Name>djvu</Name>
<RuntimeDependencies>
<Dependency>shared-mime-info</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>tiff</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/djvu</Path>
<Path fileType="data">/usr/share/mime</Path>
<Path fileType="data">/opt/netscape</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>djvu-devel</Name>
<Summary>Development files for djvu</Summary>
<RuntimeDependencies>
<Dependency release="current">djvu</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2015-11-02</Date>
<Version>3.5.27</Version>
<Comment>Version Bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-22</Date>
<Version>3.5.25.3</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-10-21</Date>
<Version>3.5.25.3</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>djvu</Name>
<Summary xml:lang="tr">DjVu görüntüleyicileri, sıkıştırıcı ve ekipmanları</Summary>
<Description xml:lang="tr">Belgeleri, kitapları bilinen formatlardan çok daha yüksek sıkıştırma oranlarında sıkıştıran DjVu formatı ekipmanları.</Description>
</Source>
<Package>
<Name>djvu-devel</Name>
<Summary xml:lang="tr">djvu için geliştirme dosyaları</Summary>
</Package>
</PISI>
+255 -4
View File
@@ -17385,7 +17385,7 @@
<Summary xml:lang="tr">Google Chrome&apos;s Pepper Flash plugin for Chromium.</Summary>
<Description xml:lang="en">Google Chrome&apos;s Pepper Flash plugin for Chromium (stable version)</Description>
<Description xml:lang="tr">Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm)</Description>
<Archive type="tarxz" sha1sum="dbe4686078af10161e431e742e6c777bc1348c0c">https://dl.dropboxusercontent.com/s/8jxvv106fteve8u/PepperFlash-18.0.0.233.tar.xz</Archive>
<Archive type="tarxz" sha1sum="5a58a7665fbbd9090a75832fa6881aff71b1fc19">http://sourceforge.net/projects/pisilinux/files/source/PepperFlash-19.0.0.226.tar.xz</Archive>
<SourceURI>network/plugin/pepperflash/pspec.xml</SourceURI>
</Source>
<Package>
@@ -17402,6 +17402,13 @@
</AdditionalFiles>
</Package>
<History>
<Update release="2">
<Date>2015-11-02</Date>
<Version>19.0.0.226</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-08-15</Date>
<Version>18.0.0.233</Version>
@@ -17427,8 +17434,8 @@
<Description xml:lang="en">Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash.</Description>
<Description xml:lang="tr">Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama.</Description>
<Icon>flash-player-properties</Icon>
<Archive type="targz" sha1sum="691f4b8682b548fd0ac143638aa3653c6c37ff34" target="i686">http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.491/install_flash_player_11_linux.i386.tar.gz</Archive>
<Archive type="targz" sha1sum="e8175d37d7311fda9806daa0f78e57cb145b5b12" target="x86_64">http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.491/install_flash_player_11_linux.x86_64.tar.gz</Archive>
<Archive type="targz" sha1sum="ad6c660511dbc7b178790944e1f59eab6d1e8337" target="i686">http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.540/install_flash_player_11_linux.i386.tar.gz</Archive>
<Archive type="targz" sha1sum="43aeb0be5a2982f605a1dcdb2b60830cd4034ff3" target="x86_64">http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.540/install_flash_player_11_linux.x86_64.tar.gz</Archive>
<BuildDependencies>
<Dependency>nss</Dependency>
<Dependency>gtk2</Dependency>
@@ -17468,6 +17475,13 @@
</Files>
</Package>
<History>
<Update release="30" type="security">
<Date>2015-11-02</Date>
<Version>11.2.202.540</Version>
<Comment>security update</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="29" type="security">
<Date>2015-07-17</Date>
<Version>11.2.202.491</Version>
@@ -17673,6 +17687,67 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>freshplayerplugin</Name>
<Homepage>https://github.com/i-rinat/freshplayerplugin</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<IsA>app:gui</IsA>
<PartOf>network.plugin</PartOf>
<Summary xml:lang="en">ppapi2npapi compatibility layer</Summary>
<Description xml:lang="en">PPAPI-host NPAPI-plugin adapter.</Description>
<Archive type="targz" sha1sum="195fe1c097ac896075d0d73e71f6d08df27f97e4">https://github.com/i-rinat/freshplayerplugin/archive/v0.3.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ragel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>libva-devel</Dependency>
<Dependency>libv4l-devel</Dependency>
<Dependency>ffmpeg-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>libvdpau-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>libevent-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
</BuildDependencies>
<SourceURI>network/plugin/freshflashplugin/pspec.xml</SourceURI>
</Source>
<Package>
<Name>freshplayerplugin</Name>
<RuntimeDependencies>
<Dependency>mesa</Dependency>
<Dependency>libva</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>libv4l</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>libevent</Dependency>
<Dependency>libvdpau</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>pepperflash</Dependency>
<Dependency>pulseaudio-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/freshplayerplugin/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-010-30</Date>
<Version>0.3.3</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libqmi</Name>
@@ -50310,6 +50385,63 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>chmlib</Name>
<Homepage>http://www.jedrea.com/chmlib/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<PartOf>office.misc</PartOf>
<Summary xml:lang="en">A library for dealing with Microsoft ITSS/CHM format files</Summary>
<Summary xml:lang="tr">Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane</Summary>
<Description xml:lang="fr">Chmlib est une librairie s&apos;occupant des formats de fichiers Microsoft ITSS/CHM. Pour l&apos;instant, il s&apos;agit d&apos;une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm.</Description>
<Description xml:lang="en">Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files.</Description>
<Description xml:lang="tr">Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır.</Description>
<Description xml:lang="es">Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm.</Description>
<Archive type="tarbz2" sha1sum="5231d7531e8808420d7f89fd1e4fdbac1ed7a167">http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2</Archive>
<SourceURI>office/misc/chmlib/pspec.xml</SourceURI>
</Source>
<Package>
<Name>chmlib</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>chmlib-devel</Name>
<Summary xml:lang="en">Development files for chmlib</Summary>
<Summary xml:lang="tr">chmlib için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="2">chmlib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2014-01-20</Date>
<Version>0.40</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2010-10-13</Date>
<Version>0.40</Version>
<Comment>First release</Comment>
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>mdbtools</Name>
@@ -50684,6 +50816,90 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>djvu</Name>
<Homepage>http://djvu.sourceforge.net</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<IsA>library</IsA>
<PartOf>office.misc</PartOf>
<Summary xml:lang="en">DjVu viewers, encoders and utilities</Summary>
<Summary xml:lang="tr">DjVu görüntüleyicileri, sıkıştırıcı ve ekipmanları</Summary>
<Description xml:lang="en">DjVu is a web-centric format and software platform to distribute documents and images.</Description>
<Description xml:lang="tr">Belgeleri, kitapları bilinen formatlardan çok daha yüksek sıkıştırma oranlarında sıkıştıran DjVu formatı ekipmanları.</Description>
<Archive type="targz" sha1sum="99c4f2c621c063bf8c8a1626030539fe5a8675f9">mirrors://sourceforge/djvu/djvulibre-3.5.27.tar.gz</Archive>
<BuildDependencies>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>tiff-devel</Dependency>
<Dependency>xdg-utils</Dependency>
<Dependency>libXt-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">no-pthread.diff</Patch>
<Patch level="1">djvulibre-3.5.22-cdefs.patch</Patch>
</Patches>
<SourceURI>office/misc/djvu/pspec.xml</SourceURI>
</Source>
<Package>
<Name>djvu</Name>
<RuntimeDependencies>
<Dependency>shared-mime-info</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>tiff</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/djvu</Path>
<Path fileType="data">/usr/share/mime</Path>
<Path fileType="data">/opt/netscape</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>djvu-devel</Name>
<Summary xml:lang="en">Development files for djvu</Summary>
<Summary xml:lang="tr">djvu için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="3">djvu</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2015-11-02</Date>
<Version>3.5.27</Version>
<Comment>Version Bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2014-01-22</Date>
<Version>3.5.25.3</Version>
<Comment>Rebuild</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-10-21</Date>
<Version>3.5.25.3</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>iso-codes</Name>
@@ -53931,6 +54147,41 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>ragel</Name>
<Homepage>http://www.complang.org/ragel/</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>programming.misc</PartOf>
<Summary xml:lang="en">Ragel compiles executable finite state machines from regular languages.</Summary>
<Description xml:lang="en">Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby.</Description>
<Archive type="targz" sha1sum="70a7fe77aee8423be610fa14c3fa1f96b3119e1d">http://fossies.org/linux/misc/ragel-6.9.tar.gz</Archive>
<SourceURI>programming/misc/ragel/pspec.xml</SourceURI>
</Source>
<Package>
<Name>ragel</Name>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/vim/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-04-25</Date>
<Version>6.9</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>json-glib</Name>
@@ -57125,7 +57376,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-qt5-devel</Dependency>
<Dependency>python3-sip</Dependency>
<Dependency>python-sip</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qtermwidget5-devel</Dependency>
</BuildDependencies>
+1 -1
View File
@@ -1 +1 @@
9bc00aa759ad96446de81c3305668f27a8425e6a
1c45502eb4444519d7b7c04d553e337303d97f7f
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
65c7e2fd7be29968a0b8d7c092413218b7d0396f
9827df3d9e4314abb7d04333bae24be4987cb218
@@ -13,11 +13,11 @@
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-qt5-devel</Dependency>
<Dependency>python3-sip</Dependency>
<Dependency>python-sip</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qtermwidget5-devel</Dependency>
</BuildDependencies>
<Archive type="targz" sha1sum="5309a4270e797e7086746ee22e778e168db281e2">https://github.com/hrngultekin/pyqtermwidget5/archive/pyqtermwidget5-v0.1.tar.gz</Archive>
<Archive sha1sum="5309a4270e797e7086746ee22e778e168db281e2" type="targz">https://github.com/hrngultekin/pyqtermwidget5/archive/pyqtermwidget5-v0.1.tar.gz</Archive>
</Source>
<Package>
<Name>pyqtermwidget5</Name>
+21
View File
@@ -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
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.install()
pisitools.insinto("/usr/share/vim/vimfiles/syntax/", "ragel.vim")
pisitools.dodoc("COPYING", "ChangeLog", "AUTHORS")
+37
View File
@@ -0,0 +1,37 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>ragel</Name>
<Homepage>http://www.complang.org/ragel/</Homepage>
<Packager>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>Ragel compiles executable finite state machines from regular languages.</Summary>
<Description>Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby.</Description>
<Archive sha1sum="70a7fe77aee8423be610fa14c3fa1f96b3119e1d" type="targz">http://fossies.org/linux/misc/ragel-6.9.tar.gz</Archive>
</Source>
<Package>
<Name>ragel</Name>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/vim/</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-04-25</Date>
<Version>6.9</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>ragel</Name>
<Summary xml:lang="en">Ragel compiles executable finite state machines from regular languages.</Summary>
<Description xml:lang="en">Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby.</Description>
</Source>
</PISI>