Merge pull request #778 from groni/master

blinken Memory Enhancement Game, kmplot Mathematical Function Plotter
This commit is contained in:
Ertuğrul Erata
2015-11-06 23:32:36 +02:00
8 changed files with 83232 additions and 82943 deletions
+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/copyleft/gpl.txt
from pisi.actionsapi import kde5
from pisi.actionsapi import pisitools
def setup():
kde5.configure()
def build():
kde5.make()
def install():
kde5.install()
pisitools.dodoc("AUTHORS", "COPYING-sjfonts", "COPYING.DOC", "COPYING", "README.packagers")
+58
View File
@@ -0,0 +1,58 @@
<PISI>
<Source>
<Name>blinken</Name>
<Homepage>https://www.kde.org/applications/education/blinken/</Homepage>
<Packager>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>FDL</License>
<License>GPL</License>
<License>LGPL</License>
<PartOf>desktop.kde.education</PartOf>
<IsA>gui</IsA>
<Summary>Blinken - Memory Enhancement Game</Summary>
<Description>Blinken is based on an electronic game released in 1978, which challenges players to remember sequences of increasing length. On the face of the device, there are 4 different color buttons, each one with their own distinctive sound.</Description>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>kdbusaddons-devel</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency>kguiaddons-devel</Dependency>
<Dependency>ki18n-devel</Dependency>
<Dependency>kxmlgui-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
<Archive sha1sum="f27cc4017809b0247001158040a59ced5daa1037" type="tarxz">http://download.kde.org/stable/applications/15.08.2/src/blinken-15.08.2.tar.xz</Archive>
</Source>
<Package>
<Name>blinken</Name>
<Summary>Blinken - Memory Enhancement Game</Summary>
<RuntimeDependencies>
<Dependency>kconfig</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>kdbusaddons</Dependency>
<Dependency>kguiaddons</Dependency>
<Dependency>ki18n</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-phonon</Dependency>
<Dependency>qt5-svg</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-11-06</Date>
<Version>15.08.2</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import kde5
from pisi.actionsapi import pisitools
def setup():
kde5.configure()
def build():
kde5.make()
def install():
kde5.install()
pisitools.dodoc("COPYING.DOC", "COPYING")
+64
View File
@@ -0,0 +1,64 @@
<PISI>
<Source>
<Name>kmplot</Name>
<Homepage>http://kde.org/applications/education/kmplot/</Homepage>
<Packager>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Packager>
<License>FDL</License>
<License>GPL</License>
<License>LGPL</License>
<PartOf>desktop.kde.education</PartOf>
<Summary>Mathematical Function Plotter</Summary>
<Description>KmPlot is a program to draw graphs, their integrals or derivatives. It supports different systems of coordinates like the Cartesian or the polar coordinate system. The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need.</Description>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>kdelibs4-support-devel</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency>ki18n-devel</Dependency>
<Dependency>kparts-devel</Dependency>
<Dependency>kwidgetsaddons-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
<Archive type="tarxz" sha1sum="e7adf3d354b3ef9c4042f53c11a94a3fa6fbff72">http://download.kde.org/stable/applications/15.08.2/src/kmplot-15.08.2.tar.xz</Archive>
</Source>
<Package>
<Name>kmplot</Name>
<Summary>Mathematical Function Plotter</Summary>
<RuntimeDependencies>
<Dependency>kdelibs4-support</Dependency>
<Dependency>ki18n</Dependency>
<Dependency>kparts</Dependency>
<Dependency>kwidgetsaddons</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-svg</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>kconfig</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency>kservice</Dependency>
<Dependency>kcompletion</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>ktextwidgets</Dependency>
<Dependency>kconfigwidgets</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2015-11-06</Date>
<Version>15.08.2</Version>
<Comment>First Release</Comment>
<Name>Stefan Gronewold (groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
</History>
</PISI>
+83065 -82941
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
32bac8f2edc180859e1c305cef80766ea2c8d014
a99ef38c0f4ced380e6d71d5a52c3d3cf8bf1615
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
bf024be0d150669469b6aa9dc4a65d2fe5436c7f
b8fb4b8d17a1b6b6193a34be0e024e18920a1e53