Merge pull request #4215 from ertugerata/new_ConsoleKit

New consolekit
This commit is contained in:
Ertuğrul Erata
2017-12-13 15:49:16 +00:00
committed by GitHub
6 changed files with 142 additions and 4 deletions
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>GObject wrapper for libusb.</Summary>
<Description>GLib wrapper around libusb1.</Description>
<Archive sha1sum="9116ead26ad89180c151709b711a9a7f97f4ba08" type="tarxz">https://people.freedesktop.org/~hughsient/releases/libgusb-0.2.9.tar.xz</Archive>
<Archive sha1sum="9b565359d03908b0d39613294656ddd6d93c8d8c" type="tarxz">https://people.freedesktop.org/~hughsient/releases/libgusb-0.2.11.tar.xz</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>vala-devel</Dependency>
@@ -56,6 +56,13 @@
</Package>
<History>
<Update release="8">
<Date>2017-12-13</Date>
<Version>0.2.11</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="7">
<Date>2017-02-06</Date>
<Version>0.2.9</Version>
-1
View File
@@ -67,7 +67,6 @@
desktop/toolkit/qt5/qt5-webkit (7 > 6)
desktop/toolkit/qtermwidget5 (5 > 4)
editor/bluefish (5 > 2)
hardware/virtualization/virtualbox (11 > 12)
multimedia/nightingale (2 > 1)
multimedia/sound/timidity-shompatches (3 > 1)
programming/language/python/notify-python (3 > 2)
+1 -1
View File
@@ -29,7 +29,7 @@
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="locale">/usr/share/aclocal</Path>
<Path fileType="library">/usr/lib/*</Path>
<Path fileType="library">/usr/lib/</Path>
</Files>
</Package>
<Package>
+8 -1
View File
@@ -12,7 +12,7 @@
<IsA>library</IsA>
<Summary>A framework for defining and tracking users, login sessions, and seats</Summary>
<Description>ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. which keyboard and mouse they use).</Description>
<Archive sha1sum="c87d1417e261992a2030e71147ab6959f5434705" type="tarbz2">https://github.com/ConsoleKit2/ConsoleKit2/releases/download/1.2.0/ConsoleKit2-1.2.0.tar.bz2</Archive>
<Archive sha1sum="28869807eed0cc4a7a1d98030be1f2c7e5700d0e" type="tarbz2">https://github.com/ConsoleKit2/ConsoleKit2/releases/download/1.2.1/ConsoleKit2-1.2.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>acl-devel</Dependency>
<Dependency>pam-devel</Dependency>
@@ -87,6 +87,13 @@
</Package>
<History>
<Update release="5">
<Date>2017-12-13</Date>
<Version>1.2.1</Version>
<Comment>Version bump.</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="4">
<Date>2017-07-23</Date>
<Version>1.2.0</Version>
+31
View File
@@ -0,0 +1,31 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright 2017 TUBITAK/UEKAE
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
shelltools.system("meson .. --prefix=/usr --sysconfdir=/etc --localstatedir=/var -Dsystemd=false -Dconsolekit=true -Dplugin_uefi_labels=false -Dplugin_thunderbolt=false -Dgtkdoc=false -Dman=false")
def build():
shelltools.cd("build")
shelltools.system("ninja")
def install():
shelltools.cd("build")
shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
#pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
+94
View File
@@ -0,0 +1,94 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pardus.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>fwupd</Name>
<Homepage>https://fwupd.org</Homepage>
<Packager>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Packager>
<License>GPLv2</License>
<Summary>Aims to make updating firmware on Linux automatic, safe and reliable</Summary>
<Description>Aims to make updating firmware on Linux automatic, safe and reliable</Description>
<Archive sha1sum="15fbcf460a79efb2d0015e017d9d76a28db50d0f" type="targz">https://github.com/hughsie/fwupd/archive/1.0.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>appstream-glib-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>libusb-devel</Dependency>
<Dependency>libgusb-devel</Dependency>
<Dependency>gnutls-devel</Dependency>
<Dependency>gpgme-devel</Dependency>
<Dependency>fwupdate-devel</Dependency>
<Dependency>efivar-devel</Dependency>
<Dependency>colord-devel</Dependency>
<Dependency>python3-pillow</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>polkit-devel</Dependency>
<Dependency>ConsoleKit-devel</Dependency>
<Dependency>libsmbios-devel</Dependency>
<Dependency>meson</Dependency>
</BuildDependencies>
<Patches>
<!--
<Patch level="1"></Patch>
-->
</Patches>
</Source>
<Package>
<Name>fwupd</Name>
<RuntimeDependencies>
<Dependency>glib2</Dependency>
<Dependency>colord</Dependency>
<Dependency>efivar</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libgusb</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>fwupdate</Dependency>
<Dependency>libgudev</Dependency>
<Dependency>elfutils</Dependency>
<Dependency>libsmbios</Dependency>
<Dependency>libarchive</Dependency>
<Dependency>libutil-linux</Dependency>
<Dependency>appstream-glib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/lib</Path>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/polkit-1</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
<Path fileType="data">/usr/share/fwupd</Path>
<Path fileType="data">/usr/share/metainfo</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/installed-tests</Path>
<Path fileType="data">/var</Path>
</Files>
</Package>
<Package>
<Name>fwupd-devel</Name>
<RuntimeDependencies>
<Dependency release="current">fwupd</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2017-12-12</Date>
<Version>1.0.2</Version>
<Comment>First release</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
</History>
</PISI>