From 9e827701cd8dca9926feb55f441be473cb6b37d6 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 2 Jan 2021 12:28:52 +0000 Subject: [PATCH 1/3] gromit-mpx. --- desktop/misc/gromit-mpx/actions.py | 26 ++++++ desktop/misc/gromit-mpx/pspec.xml | 61 +++++++++++++ .../library/libappindicator/actions.py | 23 +++++ programming/library/libappindicator/pspec.xml | 89 +++++++++++++++++++ programming/library/libindicator/actions.py | 27 ++++++ programming/library/libindicator/pspec.xml | 62 +++++++++++++ 6 files changed, 288 insertions(+) create mode 100644 desktop/misc/gromit-mpx/actions.py create mode 100644 desktop/misc/gromit-mpx/pspec.xml create mode 100644 programming/library/libappindicator/actions.py create mode 100644 programming/library/libappindicator/pspec.xml create mode 100644 programming/library/libindicator/actions.py create mode 100644 programming/library/libindicator/pspec.xml diff --git a/desktop/misc/gromit-mpx/actions.py b/desktop/misc/gromit-mpx/actions.py new file mode 100644 index 0000000000..cb56919b93 --- /dev/null +++ b/desktop/misc/gromit-mpx/actions.py @@ -0,0 +1,26 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + shelltools.makedirs("build") + shelltools.cd("build") + cmaketools.configure("-DCMAKE_INSTALL_SYSCONFDIR=/etc -L", sourceDir = '..') + +def build(): + shelltools.cd("build") + cmaketools.make() + +def install(): + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("../AUTHORS", "../ChangeLog", "../NEWS.md", "../README.md") + diff --git a/desktop/misc/gromit-mpx/pspec.xml b/desktop/misc/gromit-mpx/pspec.xml new file mode 100644 index 0000000000..faf4376f48 --- /dev/null +++ b/desktop/misc/gromit-mpx/pspec.xml @@ -0,0 +1,61 @@ + + + + + gromit-mpx + https://github.com/bk138/gromit-mpx + + fury + wascheme@tuta.io + + GPLv2 + app + desktop.misc + Gromit-MPX is a multi-pointer GTK3 port of the original Gromit desktop annotation tool. + + It enables graphical annotations with several pointers at once and is A LOT faster than its predecessor since it uses the XCOMPOSITE extension where available. + + + https://github.com/bk138/gromit-mpx/archive/1.4.tar.gz + + + cmake + gtk3-devel + libXi-devel + libX11-devel + libdbusmenu-devel + libappindicator-devel + + + + + gromit-mpx + + gtk3 + cairo + glib2 + libXi + libX11 + gdk-pixbuf + libappindicator + + + /usr/bin + /etc/gromit-mpx + /usr/share + /usr/share/man + /usr/share/doc + + + + + + 2020-12-26 + 1.4 + First build. + fury + wascheme@tuta.io + + + + diff --git a/programming/library/libappindicator/actions.py b/programming/library/libappindicator/actions.py new file mode 100644 index 0000000000..62179a13b7 --- /dev/null +++ b/programming/library/libappindicator/actions.py @@ -0,0 +1,23 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import autotools, pisitools, get + +def setup(): + pisitools.dosed("src/Makefile.am", "-Werror", "") + autotools.autoreconf("-fiv") + autotools.configure("--with-gtk=3 --disable-static") + + pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog") + diff --git a/programming/library/libappindicator/pspec.xml b/programming/library/libappindicator/pspec.xml new file mode 100644 index 0000000000..87ed7b08a7 --- /dev/null +++ b/programming/library/libappindicator/pspec.xml @@ -0,0 +1,89 @@ + + + + + libappindicator + https://lazka.github.io/pgi-docs/AppIndicator3-0.1/index.html + + fury + wascheme@tuta.io + + LGPL + library + programming.library + A library to allow applications to export a menu into the Unity Menu bar. + A library to allow applications to export a menu into the Unity Menu bar. + + https://launchpad.net/libappindicator/12.10/12.10.0/+download/libappindicator-12.10.0.tar.gz + + + gtk2-devel + gtk3-devel + python-gtk-devel + libdbusmenu-gtk3 + libdbusmenu-devel + libindicator-devel + python-pygobject-devel + python-pygobject3-devel + gobject-introspection-devel + + + + + + + + libappindicator + + atk + gtk3 + glib2 + cairo + pango + gdk-pixbuf + libindicator + libdbusmenu-glib + libdbusmenu-gtk3 + + + /usr/lib + /usr/share + /usr/share/doc + + + + + libappindicator-devel + + libappindicator + gtk3-devel + libdbusmenu-glib + libdbusmenu-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + libappindicator-docs + + libappindicator + + + /usr/share/gtk-doc + + + + + + 2020-12-26 + 12.10.0 + First build. + fury + wascheme@tuta.io + + + + diff --git a/programming/library/libindicator/actions.py b/programming/library/libindicator/actions.py new file mode 100644 index 0000000000..f36fbb7340 --- /dev/null +++ b/programming/library/libindicator/actions.py @@ -0,0 +1,27 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import autotools, pisitools, get + +def setup(): + pisitools.dosed("libindicator/Makefile.am", "-Werror", "") + pisitools.dosed("tools/Makefile.am", "-Werror", "") + autotools.autoreconf("-fiv") + autotools.configure("--with-gtk=3 --disable-tests --disable-static --disable-deprecations") + # fix autotypo. + pisitools.dosed("libindicator/Makefile", "-lglib-2.0-lm", "-lglib-2.0 -lm") + pisitools.dosed("tools/Makefile", "-lglib-2.0-lm", "-lglib-2.0 -lm") + + pisitools.dosed("libtool", " -shared ", " -Wl,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS") + diff --git a/programming/library/libindicator/pspec.xml b/programming/library/libindicator/pspec.xml new file mode 100644 index 0000000000..f605488178 --- /dev/null +++ b/programming/library/libindicator/pspec.xml @@ -0,0 +1,62 @@ + + + + + libindicator + https://launchpad.net/libindicator + + fury + wascheme@tuta.io + + GPLv3 + library + programming.library + A set of symbols and convience functions that all indicators would like to use. + A set of symbols and convience functions that all indicators would like to use. Not of real use outside of the Ayatana indicators project. + + https://launchpad.net/libindicator/12.10/12.10.1/+download/libindicator-12.10.1.tar.gz + + + gtk3-devel + glib2-devel + + + + + libindicator + + gtk3 + glib2 + gdk-pixbuf + + + /usr/libexec + /usr/lib + /usr/share + /usr/share/doc + + + + + libindicator-devel + + libindicator + gtk3-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2020-12-26 + 12.10.1 + First build. + fury + wascheme@tuta.io + + + + From f4d4c4b0653d712c1500c005e5bd5b3c454117a0 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 2 Jan 2021 13:03:13 +0000 Subject: [PATCH 2/3] terminus bitmap font. --- desktop/font/terminus-font/actions.py | 27 ++++++++++++ desktop/font/terminus-font/pspec.xml | 49 +++++++++++++++++++++ desktop/font/terminus-font/translations.xml | 10 +++++ 3 files changed, 86 insertions(+) create mode 100644 desktop/font/terminus-font/actions.py create mode 100644 desktop/font/terminus-font/pspec.xml create mode 100644 desktop/font/terminus-font/translations.xml diff --git a/desktop/font/terminus-font/actions.py b/desktop/font/terminus-font/actions.py new file mode 100644 index 0000000000..79e8c0f1b2 --- /dev/null +++ b/desktop/font/terminus-font/actions.py @@ -0,0 +1,27 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import shelltools +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + pisitools.dosed("75-yes-terminus.conf", "Term", "xos4 Term") + autotools.configure("--x11dir=/usr/share/fonts/misc --otbdir=/usr/share/fonts/misc --psfdir=/usr/share/kbd/consolefonts") + +def build(): + autotools.make("all otb") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + pisitools.insinto("/etc/fonts/conf.avail", "75-yes-terminus.conf", "75-yes-terminus.conf") + for t in shelltools.ls("*.otb"): + pisitools.insinto("/usr/share/fonts/misc", t) + pisitools.dosym("../conf.avail/75-yes-terminus.conf", "/etc/fonts/conf.d/75-yes-terminus.conf") + + pisitools.dodoc("AUTHORS", "CHANGES", "README") + diff --git a/desktop/font/terminus-font/pspec.xml b/desktop/font/terminus-font/pspec.xml new file mode 100644 index 0000000000..47d3859212 --- /dev/null +++ b/desktop/font/terminus-font/pspec.xml @@ -0,0 +1,49 @@ + + + + + terminus-font + http://terminus-font.sourceforge.net/ + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + OFL + GPLv2 + data + desktop.font + Fixed width bitmap font. + + Terminus Font is a clean, fixed width bitmap font, designed for long (8 and more hours per day) work with computers. + + + mirrors://sourceforge/terminus-font/terminus-font-4.49.1.tar.gz + + + python3 + xorg-app + + + + + terminus-font + + /etc/fonts/conf.avail/75-yes-terminus.conf + /etc/fonts/conf.d/75-yes-terminus.conf + /usr/share/kbd/consolefonts + /usr/share/fonts/misc + /usr/share/doc + + + + + + 2021-01-02 + 4.49.1 + Beta rebuild. + fury + wascheme@tuta.io + + + + diff --git a/desktop/font/terminus-font/translations.xml b/desktop/font/terminus-font/translations.xml new file mode 100644 index 0000000000..4ba7218cce --- /dev/null +++ b/desktop/font/terminus-font/translations.xml @@ -0,0 +1,10 @@ + + + + terminus-font + Sabit boyutlu yazıtipi + Terminus yazıtipi bilgisayar karşısında uzun süreler (günde 8 saat ve fazlası) geçiren insanlar için tasarlanmıştır. + La fonte Terminus est conçue pour travailler longtemps (8 heures ou plus par jour) devant l'ordinateur. + Die Terminus Schrift ist für lange Arbeitszeiten (8 Stunden und mehr pro Tag) ausgelegt + + From 16b10e66e6abf92890d9d0087396401589d275e4 Mon Sep 17 00:00:00 2001 From: 4fury-c3440d8 Date: Sat, 2 Jan 2021 13:24:49 +0000 Subject: [PATCH 3/3] no otb. --- desktop/font/terminus-font/actions.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/desktop/font/terminus-font/actions.py b/desktop/font/terminus-font/actions.py index 79e8c0f1b2..7bc8a45ba8 100644 --- a/desktop/font/terminus-font/actions.py +++ b/desktop/font/terminus-font/actions.py @@ -11,16 +11,14 @@ from pisi.actionsapi import get def setup(): pisitools.dosed("75-yes-terminus.conf", "Term", "xos4 Term") - autotools.configure("--x11dir=/usr/share/fonts/misc --otbdir=/usr/share/fonts/misc --psfdir=/usr/share/kbd/consolefonts") + autotools.configure("--x11dir=/usr/share/fonts/misc --psfdir=/usr/share/kbd/consolefonts") def build(): - autotools.make("all otb") + autotools.make() def install(): autotools.rawInstall("DESTDIR=%s" % get.installDIR()) pisitools.insinto("/etc/fonts/conf.avail", "75-yes-terminus.conf", "75-yes-terminus.conf") - for t in shelltools.ls("*.otb"): - pisitools.insinto("/usr/share/fonts/misc", t) pisitools.dosym("../conf.avail/75-yes-terminus.conf", "/etc/fonts/conf.d/75-yes-terminus.conf") pisitools.dodoc("AUTHORS", "CHANGES", "README")