add argyllcms, colord, colord-gtk, colord-kde
This commit is contained in:
@@ -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/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import kde5
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
def setup():
|
||||
kde5.configure()
|
||||
|
||||
def build():
|
||||
kde5.make()
|
||||
|
||||
def install():
|
||||
kde5.install()
|
||||
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>colord-kde</Name>
|
||||
<Homepage>http://www.kde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Colord support for KDE</Summary>
|
||||
<Description>KDE support for colord including KDE Daemon module and System Settings module.</Description>
|
||||
<Archive sha1sum="489a042b31932c9b9197d170ff502a11328fc393" type="tarxz">mirrors://kde/stable/colord-kde/0.5.0/src/colord-kde-0.5.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
<Dependency>kconfig-devel</Dependency>
|
||||
<Dependency>kconfigwidgets-devel</Dependency>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>kdbusaddons-devel</Dependency>
|
||||
<Dependency>kiconthemes-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>kservice-devel</Dependency>
|
||||
<Dependency>kcmutils-devel</Dependency>
|
||||
<Dependency>kio-devel</Dependency>
|
||||
<Dependency>knotifications-devel</Dependency>
|
||||
<Dependency>plasma-framework-devel</Dependency>
|
||||
<Dependency>kwidgetsaddons-devel</Dependency>
|
||||
<Dependency>kwindowsystem-devel</Dependency>
|
||||
<Dependency>kitemviews-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>colord-kde</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>kconfig</Dependency>
|
||||
<Dependency>kconfigwidgets</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>kservice</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>kcoreaddons</Dependency>
|
||||
<Dependency>kdbusaddons</Dependency>
|
||||
<Dependency>kwidgetsaddons</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>0.5.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>colord-kde</Name>
|
||||
<Summary xml:lang="en">Colord support for KDE</Summary>
|
||||
<Description xml:lang="en">KDE support for colord including KDE Daemon module and System Settings module.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>colord-kde-devel</Name>
|
||||
<Summary xml:lang="tr">colord-kde için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,26 @@
|
||||
#!/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 pisitools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-gtk-doc \
|
||||
--enable-vala \
|
||||
--disable-static \
|
||||
--disable-rpath \
|
||||
--disable-dependency-tracking")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc("ABOUT-NLS", "AUTHORS", "COPYING", "MAINTAINERS", "NEWS", "README", "TODO")
|
||||
@@ -0,0 +1,105 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>colord-gtk</Name>
|
||||
<Homepage>http://www.freedesktop.org/software/colord/</Homepage>
|
||||
<Packager>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3+</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>GTK support library for colord</Summary>
|
||||
<Description>colord-gtk is a GTK+ support library.</Description>
|
||||
<Archive sha1sum="60b85227d93758a66f5dc30d0a98f8f58415103d" type="tarxz">http://www.freedesktop.org/software/colord/releases/colord-gtk-0.1.26.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>colord-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>vala</Dependency>
|
||||
<Dependency>gobject-introspection </Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>colord-gtk</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>colord</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/vala/vapi/</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>colord-gtk-devel</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">colord-gtk</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>colord-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/</Path>
|
||||
<Path fileType="header">/usr/include/colord-1/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>0.1.26</Version>
|
||||
<Comment>Rebuild for Pisi Linux 2.0.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2015-01-25</Date>
|
||||
<Version>0.1.26</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Hakan Yıldız</Name>
|
||||
<Email>hknyldz93@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-06</Date>
|
||||
<Version>0.1.25</Version>
|
||||
<Comment>Rebuild Unused</Comment>
|
||||
<Name>Varol Maksutoğlu</Name>
|
||||
<Email>waroi@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-21</Date>
|
||||
<Version>0.1.25</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-08-30</Date>
|
||||
<Version>0.1.25</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>colord-gtk</Name>
|
||||
<Summary xml:lang="en">GTK support library for colord</Summary>
|
||||
<Description xml:lang="en">colord-gtk is a GTK+ support library.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>colord-gtk-devel</Name>
|
||||
<Summary xml:lang="tr">colord-gtk için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+334
@@ -39441,6 +39441,107 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>colord-gtk</Name>
|
||||
<Homepage>http://www.freedesktop.org/software/colord/</Homepage>
|
||||
<Packager>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3+</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.toolkit</PartOf>
|
||||
<Summary xml:lang="en">GTK support library for colord</Summary>
|
||||
<Description xml:lang="en">colord-gtk is a GTK+ support library.</Description>
|
||||
<Archive type="tarxz" sha1sum="60b85227d93758a66f5dc30d0a98f8f58415103d">http://www.freedesktop.org/software/colord/releases/colord-gtk-0.1.26.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>atk-devel</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>cairo-devel</Dependency>
|
||||
<Dependency>pango-devel</Dependency>
|
||||
<Dependency>colord-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>vala</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/toolkit/colord-gtk/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>colord-gtk</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>atk</Dependency>
|
||||
<Dependency>gtk3</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>pango</Dependency>
|
||||
<Dependency>colord</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/vala/vapi/</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>colord-gtk-devel</Name>
|
||||
<Summary xml:lang="tr">colord-gtk için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="5">colord-gtk</Dependency>
|
||||
<Dependency>gtk3-devel</Dependency>
|
||||
<Dependency>colord-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/</Path>
|
||||
<Path fileType="header">/usr/include/colord-1/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>0.1.26</Version>
|
||||
<Comment>Rebuild for Pisi Linux 2.0.</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2015-01-25</Date>
|
||||
<Version>0.1.26</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Hakan Yıldız</Name>
|
||||
<Email>hknyldz93@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-06</Date>
|
||||
<Version>0.1.25</Version>
|
||||
<Comment>Rebuild Unused</Comment>
|
||||
<Name>Varol Maksutoğlu</Name>
|
||||
<Email>waroi@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-21</Date>
|
||||
<Version>0.1.25</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-08-30</Date>
|
||||
<Version>0.1.25</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>qtcreator</Name>
|
||||
@@ -79340,6 +79441,83 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>colord-kde</Name>
|
||||
<Homepage>http://www.kde.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.kde.admin</PartOf>
|
||||
<Summary xml:lang="en">Colord support for KDE</Summary>
|
||||
<Description xml:lang="en">KDE support for colord including KDE Daemon module and System Settings module.</Description>
|
||||
<Archive type="tarxz" sha1sum="489a042b31932c9b9197d170ff502a11328fc393">mirrors://kde/stable/colord-kde/0.5.0/src/colord-kde-0.5.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libxcb-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
<Dependency>kconfig-devel</Dependency>
|
||||
<Dependency>kconfigwidgets-devel</Dependency>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>kdbusaddons-devel</Dependency>
|
||||
<Dependency>kiconthemes-devel</Dependency>
|
||||
<Dependency>gettext-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>kservice-devel</Dependency>
|
||||
<Dependency>kcmutils-devel</Dependency>
|
||||
<Dependency>kio-devel</Dependency>
|
||||
<Dependency>knotifications-devel</Dependency>
|
||||
<Dependency>plasma-framework-devel</Dependency>
|
||||
<Dependency>kwidgetsaddons-devel</Dependency>
|
||||
<Dependency>kwindowsystem-devel</Dependency>
|
||||
<Dependency>kitemviews-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/kde/admin/colord-kde/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>colord-kde</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>kconfig</Dependency>
|
||||
<Dependency>kconfigwidgets</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>kservice</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>kcoreaddons</Dependency>
|
||||
<Dependency>kdbusaddons</Dependency>
|
||||
<Dependency>kwidgetsaddons</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>0.5.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>digikam</Name>
|
||||
@@ -105365,6 +105543,162 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>colord</Name>
|
||||
<Homepage>http://www.freedesktop.org/software/colord</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>x11.misc</PartOf>
|
||||
<Summary xml:lang="en">Colord is a system activated daemon that maps devices to color profiles.</Summary>
|
||||
<Summary xml:lang="pl">Usługa systemowa do zarządzania urządzeniami obsługującymi kolory</Summary>
|
||||
<Description xml:lang="en">colord to niskopoziomowa usługa systemowa odwzorowująca urządzenia obsługujące kolory na profile kolorów w kontekście systemu.</Description>
|
||||
<Archive type="tarxz" sha1sum="401f4b5c2f38895b14be4cfa36590ed3ce40cce4">https://www.freedesktop.org/software/colord/releases/colord-1.3.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
<Dependency>docbook2x</Dependency>
|
||||
<Dependency>argyllcms</Dependency>
|
||||
<Dependency>vala</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>libgusb-devel</Dependency>
|
||||
<Dependency>sane-backends-devel</Dependency>
|
||||
<Dependency>bash-completion</Dependency>
|
||||
<Dependency>vala</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libgudev-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>x11/misc/colord/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>colord</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libgusb</Dependency>
|
||||
<Dependency>shared-color-profiles</Dependency>
|
||||
<Dependency>sane-backends</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>polkit</Dependency>
|
||||
<Dependency>eudev</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libgudev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/lib</Path>
|
||||
<Path fileType="libexec">/usr/libexec/colord-session</Path>
|
||||
<Path fileType="data">/var/lib/colord/icc/</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/libexec/colord</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/polkit-1</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/var</Path>
|
||||
<Path fileType="data">/usr/share/colord</Path>
|
||||
<Path fileType="data">/usr/share/glib-2.0</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="data">/usr/libexec/colord-sane</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>colord-devel</Name>
|
||||
<Summary xml:lang="en">Development files for colord</Summary>
|
||||
<Summary xml:lang="tr">Colord için geliştirme başlıkları</Summary>
|
||||
<Summary xml:lang="pl">Pliki nagłówkowe colord</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">colord</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>libgusb-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/vala/vapi/colord.vapi</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>shared-color-profiles</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/color</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>1.3.3</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>argyllcms</Name>
|
||||
<Homepage>http://gitorious.org/hargyllcms</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>osman.erkan@pislinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<License>MIT</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>x11.misc</PartOf>
|
||||
<Summary xml:lang="en">ICC compatible color management system</Summary>
|
||||
<Description xml:lang="en">The Argyll color management system supports accurate ICC profile creation for acquisition devices, CMYK printers, film recorders and calibration and profiling of displays.</Description>
|
||||
<Archive type="tarxz" sha1sum="8d30ec223f0b8ba6b990fc07c01e3b759a6ac900">https://people.freedesktop.org/~hughsient/releases/hargyllcms-1.9.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
<Dependency>libXxf86vm-devel</Dependency>
|
||||
<Dependency>libXinerama-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>x11/misc/argyllcms/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>argyllcms</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>libXxf86vm</Dependency>
|
||||
<Dependency>libXinerama</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/color</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>1.9.2</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>xkeyboard-config</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
c9bc1cd39eec9cdc115b63cda60e1a17602e183e
|
||||
255a2252540e610f24e38508fb113a7f597bfc87
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
2c2bae55066af4d71b22b7ec79aa92946a5d49c5
|
||||
771674a91aee3212ff4dda4bcecc21c72bd239dd
|
||||
@@ -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/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.system("./legal.sh")
|
||||
autotools.autoreconf("-vif")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
# for fix unused dependency
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "COPYING", "README")
|
||||
Executable
+54
@@ -0,0 +1,54 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>argyllcms</Name>
|
||||
<Homepage>http://gitorious.org/hargyllcms</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>osman.erkan@pislinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<License>MIT</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>ICC compatible color management system</Summary>
|
||||
<Description>The Argyll color management system supports accurate ICC profile creation for acquisition devices, CMYK printers, film recorders and calibration and profiling of displays.</Description>
|
||||
<Archive sha1sum="8d30ec223f0b8ba6b990fc07c01e3b759a6ac900" type="tarxz">https://people.freedesktop.org/~hughsient/releases/hargyllcms-1.9.2.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>libXrandr-devel</Dependency>
|
||||
<Dependency>libXxf86vm-devel</Dependency>
|
||||
<Dependency>libXinerama-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>argyllcms</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libXext</Dependency>
|
||||
<Dependency>libXrandr</Dependency>
|
||||
<Dependency>libXxf86vm</Dependency>
|
||||
<Dependency>libXinerama</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/color</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>1.9.2</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>argyllcms</Name>
|
||||
<Summary xml:lang="en">ICC compatible color management system</Summary>
|
||||
<Description xml:lang="en">The Argyll color management system supports accurate ICC profile creation for acquisition devices, CMYK printers, film recorders and calibration and profiling of displays.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,32 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-print-profiles \
|
||||
--disable-examples \
|
||||
--disable-static \
|
||||
--disable-rpath \
|
||||
--disable-silent-rules \
|
||||
--enable-polkit \
|
||||
--enable-systemd-login=no \
|
||||
--with-daemon-user=colord \
|
||||
--with-systemdsystemunitdir=no \
|
||||
--enable-introspection \
|
||||
--enable-vala ")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "TODO", "README.md")
|
||||
@@ -0,0 +1,29 @@
|
||||
from comar.service import *
|
||||
import os
|
||||
|
||||
serviceType = "local"
|
||||
serviceDesc = _({
|
||||
"en": "Color Management Daemon",
|
||||
"tr": "Renk Yönetimi Servisi",
|
||||
})
|
||||
serviceDefault = "on"
|
||||
|
||||
pidFile = "/run/colord.pid"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
startService(command="/usr/libexec/colord",
|
||||
pidfile=pidFile,
|
||||
makepid=True,
|
||||
detach=True,
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile=pidFile,
|
||||
donotify=True)
|
||||
os.unlink(pidFile)
|
||||
|
||||
def status():
|
||||
return isServiceRunning(pidFile)
|
||||
|
||||
Executable
+105
@@ -0,0 +1,105 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>colord</Name>
|
||||
<Homepage>http://www.freedesktop.org/software/colord</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Colord is a system activated daemon that maps devices to color profiles</Summary>
|
||||
<Description>Colord is a system activated daemon that maps devices to color profiles. It is used by GNOME Color Manager for system integration and use when there are no users logged in.</Description>
|
||||
<Archive sha1sum="401f4b5c2f38895b14be4cfa36590ed3ce40cce4" type="tarxz">https://www.freedesktop.org/software/colord/releases/colord-1.3.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
<Dependency>docbook2x</Dependency>
|
||||
<Dependency>argyllcms</Dependency>
|
||||
<Dependency>vala</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>libgusb-devel</Dependency>
|
||||
<Dependency>sane-backends-devel</Dependency>
|
||||
<Dependency>bash-completion</Dependency>
|
||||
<Dependency>vala</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libgudev-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>colord</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>libgusb</Dependency>
|
||||
<Dependency>shared-color-profiles</Dependency>
|
||||
<Dependency>sane-backends</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>polkit</Dependency>
|
||||
<Dependency>eudev</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libgudev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/lib</Path>
|
||||
<Path fileType="libexec">/usr/libexec/colord-session</Path>
|
||||
<Path fileType="data">/var/lib/colord/icc/</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/libexec/colord</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/polkit-1</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/var</Path>
|
||||
<Path fileType="data">/usr/share/colord</Path>
|
||||
<Path fileType="data">/usr/share/glib-2.0</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="data">/usr/libexec/colord-sane</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>colord-devel</Name>
|
||||
<Summary>Development files for colord</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">colord</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>libgusb-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/vala/vapi/colord.vapi</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>shared-color-profiles</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/color</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-13</Date>
|
||||
<Version>1.3.3</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>colord</Name>
|
||||
<Summary xml:lang="en">Colord is a system activated daemon that maps devices to color profiles.</Summary>
|
||||
<Summary xml:lang="pl">Usługa systemowa do zarządzania urządzeniami obsługującymi kolory</Summary>
|
||||
<Description xml:lang="en">Colord is a system activated daemon that maps devices to color profiles. It is used by GNOME Color Manager for system integration and use when there are no users logged in. </Description>
|
||||
<Description xml:lang="en">colord to niskopoziomowa usługa systemowa odwzorowująca urządzenia obsługujące kolory na profile kolorów w kontekście systemu.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>colord-devel</Name>
|
||||
<Summary xml:lang="tr">Colord için geliştirme başlıkları</Summary>
|
||||
<Summary xml:lang="pl">Pliki nagłówkowe colord</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user