Merge pull request #1038 from groni/master

mpv-player based on mplayer2
This commit is contained in:
Ertuğrul Erata
2016-01-06 18:18:04 +02:00
19 changed files with 3979 additions and 7 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pythonmodules
shelltools.export("JOBS", get.makeJOBS().replace("-j", ""))
def setup():
shelltools.system("./bootstrap.py")
shelltools.system("python waf configure --prefix=/usr --confdir=/etc/mpv --enable-zsh-comp --enable-libmpv-shared --enable-cdda")
def build():
shelltools.system("python waf build -v")
def install():
shelltools.system("DESTDIR=%s python waf install" % get.installDIR())
pisitools.dodoc("Copyright", "RELEASE_NOTES", "README.md", "LICENSE")
+113
View File
@@ -0,0 +1,113 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>mpv-player</Name>
<Homepage>http://www.mplayerhq.hu/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<IsA>app:gui</IsA>
<Summary>mpv is based on mplayer2</Summary>
<Description>mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video->video and audio->audio). This allows using most of FFmpeg's filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs.</Description>
<Archive sha1sum="2b83a8bbbecdf61604b7c6b8f7bc3d9a768ac537" type="targz">https://github.com/mpv-player/mpv/archive/v0.14.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>ffmpeg-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>pkgconfig</Dependency>
<Dependency>perl</Dependency>
<Dependency>samba-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>gcc</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>libass-devel</Dependency>
<Dependency>lua-devel</Dependency>
<Dependency>yasm</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>libvdpau-devel</Dependency>
<Dependency>mesa-glu-devel</Dependency>
<Dependency>libbluray-devel</Dependency>
<Dependency>libdvdread-devel</Dependency>
<Dependency>libdvdnav-devel</Dependency>
<Dependency>enca-devel</Dependency>
<Dependency>libcdio-devel</Dependency>
<Dependency>lcms2-devel</Dependency>
<Dependency>libXinerama-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>libXScrnSaver-devel</Dependency>
<Dependency>libXv-devel</Dependency>
<Dependency>libva-devel</Dependency>
<Dependency>libdrm-devel</Dependency>
<Dependency>libv4l-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>libcaca-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>libvdpau-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>libcdio-paranoia-devel</Dependency>
<Dependency>jack-audio-connection-kit-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>mpv-player</Name>
<RuntimeDependencies>
<Dependency>lua</Dependency>
<Dependency>enca</Dependency>
<Dependency>mesa</Dependency>
<Dependency>zlib</Dependency>
<Dependency>lcms2</Dependency>
<Dependency>libXv</Dependency>
<Dependency>libva</Dependency>
<Dependency>samba</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libass</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>libv4l</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libcaca</Dependency>
<Dependency>libcdio</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>libvdpau</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libbluray</Dependency>
<Dependency>libdvdnav</Dependency>
<Dependency>libdvdread</Dependency>
<Dependency>libXinerama</Dependency>
<Dependency>libxkbcommon</Dependency>
<Dependency>libXScrnSaver</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>libcdio-paranoia</Dependency>
<Dependency>jack-audio-connection-kit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="application">/usr/share/applications</Path>
<Path fileType="icons">/usr/share/icons</Path>
<Path fileType="data">/usr/share/zsh</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-01-06</Date>
<Version>0.14</Version>
<Comment>First release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>
+40
View File
@@ -0,0 +1,40 @@
#!/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 shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def setup():
pisitools.dosed("Makefile", "^DOC_PATH=.*$", "DOC_PATH=$(PREFIX)/share/doc/smplayer")
def build():
autotools.make("PREFIX=/usr QMAKE=/usr/lib/qt5/bin/qmake LRELEASE=/usr/lib/qt5/bin/lrelease")
def install():
autotools.rawInstall("PREFIX=/usr DESTDIR=%s DOC_PATH=/usr/share/doc/%s" % (get.installDIR(),get.srcNAME()))
pisitools.copytree("../smplayer-themes-15.12.0/themes/blackPanther-Light", "%s/usr/share/smplayer/themes/blackPanther-Light" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/blackPanther-Real", "%s/usr/share/smplayer/themes/blackPanther-Real" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/blackPanther-VistaLike", "%s/usr/share/smplayer/themes/blackPanther-VistaLike" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Gnome", "%s/usr/share/smplayer/themes/Faenza" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Gnome", "%s/usr/share/smplayer/themes/Faenza-Darkest" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Gnome", "%s/usr/share/smplayer/themes/Faenza-Silver" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Gartoon", "%s/usr/share/smplayer/themes/Gartoon" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Gnome", "%s/usr/share/smplayer/themes/Gnome" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Monochrome", "%s/usr/share/smplayer/themes/Monochrome" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Noia", "%s/usr/share/smplayer/themes/Noia" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Numix-uTouch", "%s/usr/share/smplayer/themes/Numix-remix" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Numix-uTouch", "%s/usr/share/smplayer/themes/Numix-uTouch" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Nuvola", "%s/usr/share/smplayer/themes/Nuvola" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Oxygen", "%s/usr/share/smplayer/themes/Oxygen" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Oxygen-Air", "%s/usr/share/smplayer/themes/Oxygen-Air" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Oxygen-Air", "%s/usr/share/smplayer/themes/Oxygen-KDE" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Oxygen-Refit", "%s/usr/share/smplayer/themes/Oxygen-Refit" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Silk", "%s/usr/share/smplayer/themes/Silk" % get.installDIR())
pisitools.copytree("../smplayer-themes-15.12.0/themes/Tango", "%s/usr/share/smplayer/themes/Tango" % get.installDIR())
@@ -0,0 +1,20 @@
Index: smplayer-0.6.8/smplayer.desktop
===================================================================
--- smplayer-0.6.8.orig/smplayer.desktop
+++ smplayer-0.6.8/smplayer.desktop
@@ -10,6 +10,7 @@ Comment[nl]=Een uitstekend frontend voor
Comment[pl]=Świetna nakładka na Mplayer
Comment[pt]=Um óptimo interface gráfico para o MPlayer
Comment[ru]=Мощный интерфейс к MPlayer
+Comment[tr]=Gelişmiş bir MPlayer önyüzü
Comment[uk]=Потужний інтерфейс до MPlayer
Exec=smplayer %U
GenericName=Media Player
@@ -18,6 +19,7 @@ GenericName[es]=Reproductor multimedia
GenericName[hu]=Médialejátszó
GenericName[pt]=Reprodutor de Média
GenericName[ru]=Медиаплеер
+GenericName[tr]=Çokluortam Oynatıcı
GenericName[uk]=Програвач медіа
Icon=smplayer
MimeType=audio/ac3;audio/mp4;audio/mpeg;audio/vnd.rn-realaudio;audio/vorbis;audio/x-adpcm;audio/x-matroska;audio/x-mp2;audio/x-mp3;audio/x-ms-wma;audio/x-vorbis;audio/x-wav;audio/mpegurl;audio/x-mpegurl;audio/x-pn-realaudio;audio/x-scpls;video/avi;video/mp4;video/flv;video/mpeg;video/quicktime;video/vnd.rn-realvideo;video/x-matroska;video/x-ms-asf;video/x-msvideo;video/x-ms-wmv;video/x-ogm;video/x-theora;
@@ -0,0 +1,13 @@
Index: smplayer-0.6.7_20090703/src/preferences.cpp
===================================================================
--- smplayer-0.6.7_20090703.orig/src/preferences.cpp
+++ smplayer-0.6.7_20090703/src/preferences.cpp
@@ -179,7 +179,7 @@ void Preferences::reset() {
font_file = "";
font_name = "";
use_fontconfig = false;
- subcp = "ISO-8859-1";
+ subcp = "cp1254";
use_enca = false;
enca_lang = QString(QLocale::system().name()).section("_",0,0);
font_autoscale = 1;
@@ -0,0 +1,17 @@
<html><head><title>kde-48-pisi - Revision 691: /trunk/ext-apps/SMPlayer/files</title></head>
<body>
<h2>kde-48-pisi - Revision 691: /trunk/ext-apps/SMPlayer/files</h2>
<ul>
<li><a href="../">..</a></li>
<li><a href="default-to-oxygen-air.patch">default-to-oxygen-air.patch</a></li>
<li><a href="desktop.patch">desktop.patch</a></li>
<li><a href="fix-subtitle-encodings.patch">fix-subtitle-encodings.patch</a></li>
<li><a href="make-default-video-player.diff">make-default-video-player.diff</a></li>
<li><a href="shape_mplayer_output.patch">shape_mplayer_output.patch</a></li>
<li><a href="smplayer_dvd.desktop">smplayer_dvd.desktop</a></li>
<li><a href="smplayer_vcd.desktop">smplayer_vcd.desktop</a></li>
<li><a href="use-sans-instead-of-arial.patch">use-sans-instead-of-arial.patch</a></li>
<li><a href="workaround-for-qaction.diff">workaround-for-qaction.diff</a></li>
</ul>
<hr noshade><em><a href="http://code.google.com/">Google Code</a> powered by <a href="http://subversion.apache.org/">Subversion</a></em>
</body></html>
@@ -0,0 +1,13 @@
diff -Naur smplayer-0.6.7_20090703-orig/smplayer.desktop smplayer-0.6.7_20090703/smplayer.desktop
--- smplayer-0.6.7_20090703-orig/smplayer.desktop 2009-07-17 14:05:03.125530048 +0300
+++ smplayer-0.6.7_20090703/smplayer.desktop 2009-07-17 14:38:51.968427462 +0300
@@ -22,7 +22,8 @@
GenericName[uk]=Потужний інтерфейс до MPlayer
GenericName[tr]=Gelişmiş bir MPlayer önyüzü
Icon=smplayer
-MimeType=audio/ac3;audio/mp4;audio/mpeg;audio/vnd.rn-realaudio;audio/vorbis;audio/x-adpcm;audio/x-matroska;audio/x-mp2;audio/x-mp3;audio/x-ms-wma;audio/x-vorbis;audio/x-wav;audio/mpegurl;audio/x-mpegurl;audio/x-pn-realaudio;audio/x-scpls;video/avi;video/mp4;video/flv;video/mpeg;video/quicktime;video/vnd.rn-realvideo;video/x-matroska;video/x-ms-asf;video/x-msvideo;video/x-ms-wmv;video/x-ogm;video/x-theora;
+MimeType=video/avi;video/mp4;video/flv;video/mpeg;video/quicktime;video/vnd.rn-realvideo;video/x-matroska;video/x-ms-asf;video/x-msvideo;video/x-ms-wmv;video/x-ogm;video/x-theora;
+InitialPreference=14
Name=SMPlayer
Type=Application
X-KDE-StartupNotify=false
@@ -0,0 +1,57 @@
diff -Nur smplayer-0.6.6-old/src/core.cpp smplayer-0.6.6/src/core.cpp
--- smplayer-0.6.6-old/src/core.cpp 2008-12-30 01:43:28.000000000 +0200
+++ smplayer-0.6.6/src/core.cpp 2009-01-02 05:41:54.000000000 +0200
@@ -1192,6 +1192,8 @@
proc->addArgument( mplayer_bin );
proc->addArgument("-noquiet");
+ proc->addArgument("-nomsgcolor");
+ proc->addArgument("-nomsgmodule");
if (pref->fullscreen && pref->use_mplayer_window) {
proc->addArgument("-fs");
diff -Nur smplayer-0.6.6-old/src/infoprovider.cpp smplayer-0.6.6/src/infoprovider.cpp
--- smplayer-0.6.6-old/src/infoprovider.cpp 2008-10-13 11:14:07.000000000 +0300
+++ smplayer-0.6.6/src/infoprovider.cpp 2009-01-02 05:41:54.000000000 +0200
@@ -40,6 +40,8 @@
proc.addArgument("null");
proc.addArgument("-ao");
proc.addArgument("null");
+ proc.addArgument("-nomsgcolor");
+ proc.addArgument("-nomsgmodule");
proc.addArgument(filename);
proc.start();
diff -Nur smplayer-0.6.6-old/src/inforeader.cpp smplayer-0.6.6/src/inforeader.cpp
--- smplayer-0.6.6-old/src/inforeader.cpp 2008-07-05 02:53:21.000000000 +0300
+++ smplayer-0.6.6/src/inforeader.cpp 2009-01-02 05:41:54.000000000 +0200
@@ -77,7 +77,7 @@
demuxer_list.clear();
mplayer_svn = -1;
- run("-identify -vo help -ao help -demuxer help -vc help -ac help");
+ run("-identify -vo help -ao help -demuxer help -vc help -ac help -nomsgcolor -nomsgmodule");
//list();
}
diff -Nur smplayer-0.6.6-old/src/videopreview/videopreview.cpp smplayer-0.6.6/src/videopreview/videopreview.cpp
--- smplayer-0.6.6-old/src/videopreview/videopreview.cpp 2008-12-22 02:50:55.000000000 +0200
+++ smplayer-0.6.6/src/videopreview/videopreview.cpp 2009-01-02 05:41:54.000000000 +0200
@@ -262,6 +262,8 @@
bool VideoPreview::runMplayer(int seek, double aspect_ratio) {
QStringList args;
args << "-nosound";
+ args << "-nomsgcolor";
+ args << "-nomsgmodule";
if (prop.extract_format == PNG) {
args << "-vo"
@@ -442,7 +444,7 @@
p.setProcessChannelMode( QProcess::MergedChannels );
QStringList args;
- args << "-vo" << "null" << "-ao" << "null" << "-frames" << "1" << "-identify" << "-nocache" << "-noquiet" << filename;
+ args << "-vo" << "null" << "-ao" << "null" << "-frames" << "1" << "-identify" << "-nocache" << "-noquiet" << "-nomsgcolor" << "-nomsgmodule" << filename;
if (!prop.dvd_device.isEmpty()) {
args << "-dvd-device" << prop.dvd_device;
@@ -0,0 +1,11 @@
[Desktop Entry]
X-KDE-Solid-Predicate=[StorageVolume.ignored == false AND OpticalDisc.availableContent & 'VideoDvd']
Actions=SMplayer;
Type=Service
X-KDE-Priority=TopLevel
[Desktop Action SMplayer]
Name=Play DVD
Name[tr]=DVD'yi Oynat
Exec=smplayer dvdnav:///%d
Icon=smplayer
@@ -0,0 +1,11 @@
[Desktop Entry]
X-KDE-Solid-Predicate=[StorageVolume.ignored == false AND OpticalDisc.availableContent & 'VideoCd']
Actions=SMplayer;
Type=Service
X-KDE-Priority=TopLevel
[Desktop Action SMplayer]
Name=Play VCD
Name[tr]=VCD'yi Oynat
Exec=smplayer vcd:///%d
Icon=smplayer
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,26 @@
Index: smplayer-0.6.7_20090703/src/assstyles.cpp
===================================================================
--- smplayer-0.6.7_20090703.orig/src/assstyles.cpp
+++ smplayer-0.6.7_20090703/src/assstyles.cpp
@@ -23,7 +23,7 @@
#include "colorutils.h"
AssStyles::AssStyles() {
- fontname = "Arial";
+ fontname = "Sans";
fontsize = 20;
primarycolor = 0xFFFFFF;
backcolor = 0;
Index: smplayer-0.6.7_20090703/src/videopreview/videopreview.cpp
===================================================================
--- smplayer-0.6.7_20090703.orig/src/videopreview/videopreview.cpp
+++ smplayer-0.6.7_20090703/src/videopreview/videopreview.cpp
@@ -339,7 +339,7 @@ bool VideoPreview::addPicture(const QStr
// Add current time text
if (prop.display_osd) {
QString stime = QTime().addSecs(time).toString("hh:mm:ss");
- QFont font("Arial");
+ QFont font("Sans");
font.setBold(true);
QPainter painter(&scaled_picture);
painter.setPen( Qt::white );
@@ -0,0 +1,21 @@
Index: smplayer-0.6.9_20100211/src/myaction.cpp
===================================================================
--- smplayer-0.6.9_20100211.orig/src/myaction.cpp
+++ smplayer-0.6.9_20100211/src/myaction.cpp
@@ -72,14 +72,14 @@ void MyAction::change(const QIcon & icon
}
void MyAction::change(const QString & text ) {
- setText( text );
+ setText( text.trimmed() );
QString accel_text = shortcut().toString();
QString s = text;
s.replace("&","");
if (!accel_text.isEmpty()) {
- setToolTip( s + " ("+ accel_text +")");
+ setToolTip( s.trimmed() + " ("+ tr(accel_text.toAscii().constData()) +")");
setIconText( s );
}
+125
View File
@@ -0,0 +1,125 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>smplayer</Name>
<Homepage>http://smplayer.sourceforge.net</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>smplayer</Icon>
<IsA>app:gui</IsA>
<Summary>A complete front-end for MPlayer</Summary>
<Description>smplayer is Qt application which intends to be a complete front-end for MPlayer, from basic features like playing videos, DVDs, and VCDs to more advanced features like support for MPlayer filters and more.</Description>
<Archive sha1sum="e0775423ece719814e8bcffbefeaba1c4009683d" type="tarbz2">http://sourceforge.net/projects/smplayer/files/SMPlayer/15.11.0/smplayer-15.11.0.tar.bz2</Archive>
<Archive sha1sum="195c903fcc8eafa8a426b4c9477d0e3d8c642184" type="tarbz2">http://sourceforge.net/projects/smplayer/files/SMPlayer-themes/15.12.0/smplayer-themes-15.12.0.tar.bz2</Archive>
<Archive sha1sum="ab30e705a54252088e28a5fb8d17fd8e6f495b41" type="tarbz2">http://sourceforge.net/projects/smplayer/files/SMPlayer-skins/15.2.0/smplayer-skins-15.2.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-script-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>smplayer</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-script</Dependency>
<Dependency>smtube</Dependency>
<Dependency>zlib</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/smplayer</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/kde4</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/smplayer</Path>
</Files>
</Package>
<History>
<Update release="9">
<Date>2016-01-06</Date>
<Version>15.11</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="9">
<Date>2015-06-01</Date>
<Version>14.9.0.6915</Version>
<Comment>Version bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2014-12-01</Date>
<Version>14.9.0</Version>
<Comment>Rebuild Smtube Runtime Dependencies</Comment>
<Name>Ergün Salman</Name>
<Email>poyraz76@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-11-20</Date>
<Version>14.9.0</Version>
<Comment>Version bump</Comment>
<Name>Ergün Salman</Name>
<Email>poyraz76@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-29</Date>
<Version>14.3.0</Version>
<Comment>Rebuild.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-06-11</Date>
<Version>14.3.0</Version>
<Comment>Version bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-03-09</Date>
<Version>0.8.6</Version>
<Comment>Rebuild</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-20</Date>
<Version>0.8.6</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-07-06</Date>
<Version>0.8.5</Version>
<Comment>Version bump</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-03-08</Date>
<Version>0.8.3</Version>
<Comment>Fixed</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-30</Date>
<Version>0.8.3</Version>
<Comment>First release</Comment>
<Name>Idris Kalp</Name>
<Email>yaralikurt15@hotmail.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>smplayer</Name>
<Summary xml:lang="tr">Gelişmiş bir mplayer önyüzü</Summary>
<Summary xml:lang="es">SMPlayer es un frontend de Mplayer</Summary>
<Description xml:lang="tr">smplayer Qt ile yazılmış, gelişmiş bir mplayer önyüzüdür. Basit özelliklerinin yanı sıra, TV, DVD, VCD oynatma, mplayer filtrelerini kullanabilme gibi yetenekleri de bulunmaktadır.</Description>
<Description xml:lang="es">SMPlayer es un reproductor multimedia gratuito y para Windows y Linux con códecs incorporados, que puede reproducir prácticamente cualquier formato de vídeo y audio. No necesita ningún códec externo. Simplemente instala SMPlayer y podrás reproducir cualquier formato sin la molestia de tener que buscar e instalar paquetes de códecs.</Description>
</Source>
</PISI>
+325 -5
View File
@@ -101647,7 +101647,7 @@
<Summary xml:lang="tr">Altyazı çizim kitaplığı</Summary>
<Description xml:lang="en">libass is a portable subtitle rendering library for the ASS/SSA.</Description>
<Description xml:lang="tr">libass ASS/SSA altyazı çizim kitaplığıdır.</Description>
<Archive type="tarxz" sha1sum="1bffc32d0a601ee6cf289797557bb38636e185b5">https://github.com/libass/libass/releases/download/0.11.2/libass-0.11.2.tar.xz</Archive>
<Archive type="tarxz" sha1sum="a48a5d160f0644423f1baa66f88aae8fe24c9487">https://github.com/libass/libass/releases/download/0.13.1/libass-0.13.1.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="2.11">fontconfig-devel</Dependency>
<Dependency versionFrom="2.5.5">freetype-devel</Dependency>
@@ -101661,6 +101661,7 @@
<Dependency versionFrom="2.11">fontconfig</Dependency>
<Dependency versionFrom="2.5.5">freetype</Dependency>
<Dependency versionFrom="0.19">fribidi</Dependency>
<Dependency>harfbuzz</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
@@ -101672,11 +101673,11 @@
<Summary xml:lang="en">Development files for libass</Summary>
<Summary xml:lang="tr">libass için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="4">libass</Dependency>
<Dependency>harfbuzz-devel</Dependency>
<Dependency versionFrom="2.11">fontconfig-devel</Dependency>
<Dependency release="5">libass</Dependency>
<Dependency version="2.11">fontconfig-devel</Dependency>
<Dependency versionFrom="2.5.5">freetype-devel</Dependency>
<Dependency versionFrom="0.19">fribidi-devel</Dependency>
<Dependency>harfbuzz-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
@@ -101684,6 +101685,13 @@
</Files>
</Package>
<History>
<Update release="5">
<Date>2016-01-06</Date>
<Version>0.13.1</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-05-22</Date>
<Version>0.11.2</Version>
@@ -104048,6 +104056,7 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Dependency>bzip2</Dependency>
<Dependency>python</Dependency>
<Dependency>intltool</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>lame-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
@@ -104065,6 +104074,10 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Dependency>libsamplerate-devel</Dependency>
<Dependency>gst-plugins-base-next-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">Do-not-require-wget-or-curl.patch</Patch>
<Patch level="1">use-libtoolize.patch</Patch>
</Patches>
<SourceURI>multimedia/editor/handbrake/pspec.xml</SourceURI>
</Source>
<Package>
@@ -104109,7 +104122,7 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
</Package>
<History>
<Update release="6">
<Date>2015-09-26</Date>
<Date>2016-01-06</Date>
<Version>0.10.2</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold (groni)</Name>
@@ -105906,6 +105919,133 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>smplayer</Name>
<Homepage>http://smplayer.sourceforge.net</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.video</PartOf>
<Summary xml:lang="en">A complete front-end for MPlayer</Summary>
<Summary xml:lang="tr">Gelişmiş bir mplayer önyüzü</Summary>
<Summary xml:lang="es">SMPlayer es un frontend de Mplayer</Summary>
<Description xml:lang="en">smplayer is Qt application which intends to be a complete front-end for MPlayer, from basic features like playing videos, DVDs, and VCDs to more advanced features like support for MPlayer filters and more.</Description>
<Description xml:lang="tr">smplayer Qt ile yazılmış, gelişmiş bir mplayer önyüzüdür. Basit özelliklerinin yanı sıra, TV, DVD, VCD oynatma, mplayer filtrelerini kullanabilme gibi yetenekleri de bulunmaktadır.</Description>
<Description xml:lang="es">SMPlayer es un reproductor multimedia gratuito y para Windows y Linux con códecs incorporados, que puede reproducir prácticamente cualquier formato de vídeo y audio. No necesita ningún códec externo. Simplemente instala SMPlayer y podrás reproducir cualquier formato sin la molestia de tener que buscar e instalar paquetes de códecs.</Description>
<Icon>smplayer</Icon>
<Archive type="tarbz2" sha1sum="e0775423ece719814e8bcffbefeaba1c4009683d">http://sourceforge.net/projects/smplayer/files/SMPlayer/15.11.0/smplayer-15.11.0.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="195c903fcc8eafa8a426b4c9477d0e3d8c642184">http://sourceforge.net/projects/smplayer/files/SMPlayer-themes/15.12.0/smplayer-themes-15.12.0.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="ab30e705a54252088e28a5fb8d17fd8e6f495b41">http://sourceforge.net/projects/smplayer/files/SMPlayer-skins/15.2.0/smplayer-skins-15.2.0.tar.bz2</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-script-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
</BuildDependencies>
<SourceURI>multimedia/video/smplayer/pspec.xml</SourceURI>
</Source>
<Package>
<Name>smplayer</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-script</Dependency>
<Dependency>smtube</Dependency>
<Dependency>zlib</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/smplayer</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/kde4</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/smplayer</Path>
</Files>
</Package>
<History>
<Update release="9">
<Date>2016-01-06</Date>
<Version>15.11</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="9">
<Date>2015-06-01</Date>
<Version>14.9.0.6915</Version>
<Comment>Version bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2014-12-01</Date>
<Version>14.9.0</Version>
<Comment>Rebuild Smtube Runtime Dependencies</Comment>
<Name>Ergün Salman</Name>
<Email>poyraz76@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-11-20</Date>
<Version>14.9.0</Version>
<Comment>Version bump</Comment>
<Name>Ergün Salman</Name>
<Email>poyraz76@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-06-29</Date>
<Version>14.3.0</Version>
<Comment>Rebuild.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-06-11</Date>
<Version>14.3.0</Version>
<Comment>Version bump.</Comment>
<Name>Vedat Demir</Name>
<Email>vedat@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-03-09</Date>
<Version>0.8.6</Version>
<Comment>Rebuild</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-08-20</Date>
<Version>0.8.6</Version>
<Comment>Version bump</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-07-06</Date>
<Version>0.8.5</Version>
<Comment>Version bump</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-03-08</Date>
<Version>0.8.3</Version>
<Comment>Fixed</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-12-30</Date>
<Version>0.8.3</Version>
<Comment>First release</Comment>
<Name>Idris Kalp</Name>
<Email>yaralikurt15@hotmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libmatroska</Name>
@@ -107104,6 +107244,118 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>mpv-player</Name>
<Homepage>http://www.mplayerhq.hu/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.video</PartOf>
<Summary xml:lang="en">mpv is based on mplayer2</Summary>
<Description xml:lang="en">mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video-&gt;video and audio-&gt;audio). This allows using most of FFmpeg&apos;s filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs.</Description>
<Archive type="targz" sha1sum="2b83a8bbbecdf61604b7c6b8f7bc3d9a768ac537">https://github.com/mpv-player/mpv/archive/v0.14.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>ffmpeg-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>pkgconfig</Dependency>
<Dependency>perl</Dependency>
<Dependency>samba-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>gcc</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>libass-devel</Dependency>
<Dependency>lua-devel</Dependency>
<Dependency>yasm</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>libvdpau-devel</Dependency>
<Dependency>mesa-glu-devel</Dependency>
<Dependency>libbluray-devel</Dependency>
<Dependency>libdvdread-devel</Dependency>
<Dependency>libdvdnav-devel</Dependency>
<Dependency>enca-devel</Dependency>
<Dependency>libcdio-devel</Dependency>
<Dependency>lcms2-devel</Dependency>
<Dependency>libXinerama-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>libXScrnSaver-devel</Dependency>
<Dependency>libXv-devel</Dependency>
<Dependency>libva-devel</Dependency>
<Dependency>libdrm-devel</Dependency>
<Dependency>libv4l-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>libcaca-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>libvdpau-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>libcdio-paranoia-devel</Dependency>
<Dependency>jack-audio-connection-kit-devel</Dependency>
</BuildDependencies>
<SourceURI>multimedia/video/mpv-player/pspec.xml</SourceURI>
</Source>
<Package>
<Name>mpv-player</Name>
<RuntimeDependencies>
<Dependency>lua</Dependency>
<Dependency>enca</Dependency>
<Dependency>mesa</Dependency>
<Dependency>zlib</Dependency>
<Dependency>lcms2</Dependency>
<Dependency>libXv</Dependency>
<Dependency>libva</Dependency>
<Dependency>samba</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libass</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>libv4l</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libcaca</Dependency>
<Dependency>libcdio</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>libvdpau</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libbluray</Dependency>
<Dependency>libdvdnav</Dependency>
<Dependency>libdvdread</Dependency>
<Dependency>libXinerama</Dependency>
<Dependency>libxkbcommon</Dependency>
<Dependency>libXScrnSaver</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>libcdio-paranoia</Dependency>
<Dependency>jack-audio-connection-kit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="application">/usr/share/applications</Path>
<Path fileType="icons">/usr/share/icons</Path>
<Path fileType="data">/usr/share/zsh</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2016-01-06</Date>
<Version>0.14</Version>
<Comment>First release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>gstreamer-next</Name>
@@ -115102,6 +115354,74 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Update>
</History>
</SpecFile>
<Package>
<Name>mpv</Name>
<Summary xml:lang="en">mpv is based on mplayer2</Summary>
<Description xml:lang="en">mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video-&gt;video and audio-&gt;audio). This allows using most of FFmpeg&apos;s filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs.</Description>
<IsA>app:gui</IsA>
<PartOf>unknown</PartOf>
<License>GPLv2+</License>
<RuntimeDependencies>
<Dependency>lua</Dependency>
<Dependency>enca</Dependency>
<Dependency>mesa</Dependency>
<Dependency>zlib</Dependency>
<Dependency>lcms2</Dependency>
<Dependency>libXv</Dependency>
<Dependency>libva</Dependency>
<Dependency>samba</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libass</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>libv4l</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libcaca</Dependency>
<Dependency>libcdio</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>libvdpau</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libbluray</Dependency>
<Dependency>libdvdnav</Dependency>
<Dependency>libdvdread</Dependency>
<Dependency>libXinerama</Dependency>
<Dependency>libxkbcommon</Dependency>
<Dependency>libXScrnSaver</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>libcdio-paranoia</Dependency>
<Dependency>jack-audio-connection-kit</Dependency>
</RuntimeDependencies>
<History>
<Update release="1">
<Date>2016-01-05</Date>
<Version>0.14</Version>
<Comment>First release</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
<BuildHost>localhost</BuildHost>
<Distribution>PisiLinux</Distribution>
<DistributionRelease>1.0</DistributionRelease>
<Architecture>x86_64</Architecture>
<InstalledSize>3507830</InstalledSize>
<PackageSize>730495</PackageSize>
<PackageHash>60c083e2c577926cae1f8c351884b74bce2b196f</PackageHash>
<InstallTarHash>56588201e3e444f272b71bf074ed3527069a984a</InstallTarHash>
<PackageURI>multimedia/video/mpv-player/mpv-0.14-1-p01-x86_64.pisi</PackageURI>
<PackageFormat>1.2</PackageFormat>
<Source>
<Name>mpv</Name>
<Homepage>http://www.mplayerhq.hu/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
</Source>
</Package>
<Component>
<Name>system</Name>
<LocalName xml:lang="en">FIXME</LocalName>
+1 -1
View File
@@ -1 +1 @@
78ce09e6c7cfb9859691ed67f846e6ab95824637
5ab9184b2630a6d3a52bcbe02e24f828e441b8a7
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
3f39e799356af6ae46fe9fc8c5e7487f063b1751
9f0c6e5dc75219fba4b23fe71887680ea12e5808