From e139ead9751ee68352525fe836bb3ac958b7cba7 Mon Sep 17 00:00:00 2001 From: namso-01 Date: Mon, 2 Nov 2015 23:06:20 +0200 Subject: [PATCH 1/3] PeppefFlash: version Bump --- network/plugin/pepperflash/pspec.xml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/network/plugin/pepperflash/pspec.xml b/network/plugin/pepperflash/pspec.xml index c4b8290b55..ae49439ee2 100644 --- a/network/plugin/pepperflash/pspec.xml +++ b/network/plugin/pepperflash/pspec.xml @@ -12,7 +12,7 @@ library Google Chrome's Pepper Flash plugin for Chromium. Google Chrome's Pepper Flash plugin for Chromium (stable version) - https://dl.dropboxusercontent.com/s/8jxvv106fteve8u/PepperFlash-18.0.0.233.tar.xz + http://sourceforge.net/projects/pisilinux/files/source/PepperFlash-19.0.0.226.tar.xz @@ -30,6 +30,13 @@ + + 2015-11-02 + 19.0.0.226 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + 2015-08-15 18.0.0.233 From 3deff59c16c58875fc88119a7ad39f828053fbb2 Mon Sep 17 00:00:00 2001 From: namso-01 Date: Mon, 2 Nov 2015 23:07:28 +0200 Subject: [PATCH 2/3] freshflashplugin: version Bump --- network/plugin/freshflashplugin/actions.py | 23 +++++++ network/plugin/freshflashplugin/pspec.xml | 63 +++++++++++++++++++ .../plugin/freshflashplugin/translations.xml | 8 +++ 3 files changed, 94 insertions(+) create mode 100644 network/plugin/freshflashplugin/actions.py create mode 100644 network/plugin/freshflashplugin/pspec.xml create mode 100644 network/plugin/freshflashplugin/translations.xml diff --git a/network/plugin/freshflashplugin/actions.py b/network/plugin/freshflashplugin/actions.py new file mode 100644 index 0000000000..22722b59d4 --- /dev/null +++ b/network/plugin/freshflashplugin/actions.py @@ -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") \ No newline at end of file diff --git a/network/plugin/freshflashplugin/pspec.xml b/network/plugin/freshflashplugin/pspec.xml new file mode 100644 index 0000000000..46b9e99699 --- /dev/null +++ b/network/plugin/freshflashplugin/pspec.xml @@ -0,0 +1,63 @@ + + + + + freshplayerplugin + https://github.com/i-rinat/freshplayerplugin + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + app:gui + ppapi2npapi compatibility layer + PPAPI-host NPAPI-plugin adapter. + https://github.com/i-rinat/freshplayerplugin/archive/v0.3.3.tar.gz + + cmake + ragel + gtk2-devel + libva-devel + libv4l-devel + ffmpeg-devel + openssl-devel + libvdpau-devel + alsa-lib-devel + libevent-devel + libXrandr-devel + libXcursor-devel + pulseaudio-libs-devel + + + + + freshplayerplugin + + mesa + libva + ffmpeg + libv4l + alsa-lib + libevent + libvdpau + libXrandr + pepperflash + pulseaudio-libs + + + /usr/lib + /usr/share/doc + /usr/share/freshplayerplugin/ + + + + + + 2015-010-30 + 0.3.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + \ No newline at end of file diff --git a/network/plugin/freshflashplugin/translations.xml b/network/plugin/freshflashplugin/translations.xml new file mode 100644 index 0000000000..e13c1a8b98 --- /dev/null +++ b/network/plugin/freshflashplugin/translations.xml @@ -0,0 +1,8 @@ + + + + freshplayerplugin + ppapi2npapi compatibility layer + PPAPI-host NPAPI-plugin adapter. + + \ No newline at end of file From 82d6c105a79faefcfd4106d83fd1644514ad6f1c Mon Sep 17 00:00:00 2001 From: namso-01 Date: Mon, 2 Nov 2015 23:08:48 +0200 Subject: [PATCH 3/3] ragel: required for freshflashplugin --- programming/misc/ragel/actions.py | 21 ++++++++++++++ programming/misc/ragel/pspec.xml | 37 +++++++++++++++++++++++++ programming/misc/ragel/translations.xml | 8 ++++++ 3 files changed, 66 insertions(+) create mode 100644 programming/misc/ragel/actions.py create mode 100644 programming/misc/ragel/pspec.xml create mode 100644 programming/misc/ragel/translations.xml diff --git a/programming/misc/ragel/actions.py b/programming/misc/ragel/actions.py new file mode 100644 index 0000000000..408eb13bc0 --- /dev/null +++ b/programming/misc/ragel/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 + +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") \ No newline at end of file diff --git a/programming/misc/ragel/pspec.xml b/programming/misc/ragel/pspec.xml new file mode 100644 index 0000000000..7fc85d2030 --- /dev/null +++ b/programming/misc/ragel/pspec.xml @@ -0,0 +1,37 @@ + + + + + ragel + http://www.complang.org/ragel/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + Ragel compiles executable finite state machines from regular languages. + Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. + http://fossies.org/linux/misc/ragel-6.9.tar.gz + + + + ragel + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/vim/ + + + + + + 2015-04-25 + 6.9 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + \ No newline at end of file diff --git a/programming/misc/ragel/translations.xml b/programming/misc/ragel/translations.xml new file mode 100644 index 0000000000..239879303f --- /dev/null +++ b/programming/misc/ragel/translations.xml @@ -0,0 +1,8 @@ + + + + ragel + Ragel compiles executable finite state machines from regular languages. + Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. + + \ No newline at end of file