Merge pull request #6879 from ertugerata/master
add smartcard component
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#!/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
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--enable-twinserial \
|
||||
--enable-serialconfdir=/etc/reader.conf.d \
|
||||
--sysconfdir=/etc \
|
||||
--disable-static \
|
||||
--disable-dependency-tracking")
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.insinto("/etc/", "src/Info.plist", "libccid_Info.plist")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ccid</Name>
|
||||
<Homepage>https://ccid.apdu.fr</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Generic USB CCID(Chip/Smart Card Interface Devices) device drivers</Summary>
|
||||
<Description>ccid provides the source code for a generic USB CCID (Chip/Smart Card Interface Devices) driver and ICCD (Integrated Circuit(s) Card Devices).</Description>
|
||||
<Archive sha1sum="f21605dd2bf82710b69f454b0379ce68fe5aba5e" type="tarbz2">https://ccid.apdu.fr/files/ccid-1.4.29.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>pcsc-lite-devel</Dependency>
|
||||
<Dependency>libusb-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>ccid</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libusb</Dependency>
|
||||
<Dependency>pcsc-lite</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/</Path>
|
||||
<Path fileType="library">/usr/lib/</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-05-19</Date>
|
||||
<Version>1.4.29</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>ccid</Name>
|
||||
<Summary xml:lang="tr">USB CCID kart okuyucu sürücüleri</Summary>
|
||||
<Description xml:lang="tr">ccid USB CCID protokolünü destekleyen akıllı kart okuyucular için açık kaynaklı aygıt sürücülerini içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>hardware.smartcard</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,52 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#USBDROPDIR = "/usr/lib%s/pcsc/drivers" % ("32" if \
|
||||
# get.buildTYPE() == "emul32" else "")
|
||||
|
||||
USBDROPDIR = "/usr/lib/pcsc/drivers"
|
||||
|
||||
def setup():
|
||||
options = "--enable-usbdropdir=%s \
|
||||
--disable-libsystemd \
|
||||
--disable-dependency-tracking \
|
||||
--disable-static" % USBDROPDIR
|
||||
|
||||
"""
|
||||
if get.buildTYPE() == "emul32":
|
||||
options += " --prefix=/emul32 \
|
||||
--libdir=/usr/lib32"
|
||||
shelltools.export("CFLAGS", "%s -m32" % get.CFLAGS())
|
||||
"""
|
||||
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure(options)
|
||||
|
||||
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodir(USBDROPDIR)
|
||||
|
||||
"""
|
||||
if get.buildTYPE() == "emul32":
|
||||
pisitools.removeDir("/emul32")
|
||||
return
|
||||
"""
|
||||
|
||||
pisitools.dodir("/etc/reader.conf.d")
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "HELP", "NEWS",
|
||||
"README", "SECURITY", "doc/README.DAEMON")
|
||||
@@ -0,0 +1,29 @@
|
||||
from comar.service import *
|
||||
|
||||
serviceType = "local"
|
||||
serviceDefault = "on"
|
||||
serviceDesc = _({"en": "PC/SC SmartCard Reader Service",
|
||||
"tr": "PC/SC Akıllı Kart Okuyucu Servisi"})
|
||||
|
||||
PIDFILE = "/run/pcscd/pcscd.pid"
|
||||
|
||||
@synchronized
|
||||
def start():
|
||||
# pcscd wont start if these exist
|
||||
import os
|
||||
try:
|
||||
os.unlink("/run/pcscd/pcscd.comm")
|
||||
os.unlink("/run/pcscd/pcscd.pub")
|
||||
except OSError:
|
||||
pass
|
||||
|
||||
startService(command="/usr/sbin/pcscd",
|
||||
donotify=True)
|
||||
|
||||
@synchronized
|
||||
def stop():
|
||||
stopService(pidfile=PIDFILE,
|
||||
donotify=True)
|
||||
|
||||
def status():
|
||||
return isServiceRunning(pidfile=PIDFILE)
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pcsc-lite</Name>
|
||||
<Homepage>https://pcsclite.apdu.fr</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>PC/SC drivers for smart card readers</Summary>
|
||||
<Description>pcsc-lite is middleware to access a smart card using SCard API (PC/SC).</Description>
|
||||
<Archive sha1sum="a5d48615cddb2b7050b4dc195e938a5d39ef62c4" type="tarbz2">https://pcsclite.apdu.fr/files/pcsc-lite-1.8.24.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pcsc-lite</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>eudev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/reader.conf.d</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="library">/usr/lib/pcsc/drivers</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>pcsc-lite-devel</Name>
|
||||
<Summary>Development files for pcsc-lite</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">pcsc-lite</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-05-19</Date>
|
||||
<Version>1.8.24</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pcsc-lite</Name>
|
||||
<Summary xml:lang="tr">Akıllı kart okuyucuları için PC/SC sürücüleri</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pcsc-lite-devel</Name>
|
||||
<Summary xml:lang="tr">pcsc-lite için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>pcsc-lite-32bit</Name>
|
||||
<Summary xml:lang="tr">pcsc-lite için 32-bit paylaşımlı kitaplıklar</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+159
-17
@@ -4162,7 +4162,7 @@
|
||||
<Homepage>http://www.pgmodeler.com.br/</Homepage>
|
||||
<Packager>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.comAR</Email>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app:gui</IsA>
|
||||
@@ -21973,6 +21973,112 @@
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>ccid</Name>
|
||||
<Homepage>https://ccid.apdu.fr</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>library</IsA>
|
||||
<PartOf>hardware.smartcard</PartOf>
|
||||
<Summary xml:lang="en">Generic USB CCID(Chip/Smart Card Interface Devices) device drivers</Summary>
|
||||
<Summary xml:lang="tr">USB CCID kart okuyucu sürücüleri</Summary>
|
||||
<Description xml:lang="en">ccid provides the source code for a generic USB CCID (Chip/Smart Card Interface Devices) driver and ICCD (Integrated Circuit(s) Card Devices).</Description>
|
||||
<Description xml:lang="tr">ccid USB CCID protokolünü destekleyen akıllı kart okuyucular için açık kaynaklı aygıt sürücülerini içerir.</Description>
|
||||
<Archive type="tarbz2" sha1sum="f21605dd2bf82710b69f454b0379ce68fe5aba5e">https://ccid.apdu.fr/files/ccid-1.4.29.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>pcsc-lite-devel</Dependency>
|
||||
<Dependency>libusb-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>hardware/smartcard/ccid/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>ccid</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libusb</Dependency>
|
||||
<Dependency>pcsc-lite</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/</Path>
|
||||
<Path fileType="library">/usr/lib/</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-05-19</Date>
|
||||
<Version>1.4.29</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>pcsc-lite</Name>
|
||||
<Homepage>https://pcsclite.apdu.fr</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>hardware.smartcard</PartOf>
|
||||
<Summary xml:lang="en">PC/SC drivers for smart card readers</Summary>
|
||||
<Summary xml:lang="tr">Akıllı kart okuyucuları için PC/SC sürücüleri</Summary>
|
||||
<Description xml:lang="en">pcsc-lite is middleware to access a smart card using SCard API (PC/SC).</Description>
|
||||
<Archive type="tarbz2" sha1sum="a5d48615cddb2b7050b4dc195e938a5d39ef62c4">https://pcsclite.apdu.fr/files/pcsc-lite-1.8.24.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>hardware/smartcard/pcsc-lite/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>pcsc-lite</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>eudev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/reader.conf.d</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="library">/usr/lib/pcsc/drivers</Path>
|
||||
</Files>
|
||||
<Provides>
|
||||
<COMAR script="service.py">System.Service</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>pcsc-lite-devel</Name>
|
||||
<Summary xml:lang="en">Development files for pcsc-lite</Summary>
|
||||
<Summary xml:lang="tr">pcsc-lite için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">pcsc-lite</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2019-05-19</Date>
|
||||
<Version>1.8.24</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libburn</Name>
|
||||
@@ -37719,7 +37825,7 @@
|
||||
<Summary xml:lang="tr">Google Chrome's Pepper Flash plugin for Chromium.</Summary>
|
||||
<Description xml:lang="en">Google Chrome's Pepper Flash plugin for Chromium (stable version)</Description>
|
||||
<Description xml:lang="tr">Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm)</Description>
|
||||
<Archive type="targz" sha1sum="5b2e2a8904bca102915edb748c8da771585f5bd9">https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.156/flash_player_ppapi_linux.x86_64.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="0e49a535e0d10169eb18ec7f950cd8d62f58b473">https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.171/flash_player_ppapi_linux.x86_64.tar.gz</Archive>
|
||||
<SourceURI>network/plugin/pepperflash/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
@@ -37737,6 +37843,13 @@
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="16">
|
||||
<Date>2019-05-08</Date>
|
||||
<Version>32.0.0.171</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2019-03-23</Date>
|
||||
<Version>32.0.0.156</Version>
|
||||
@@ -38011,8 +38124,8 @@
|
||||
<Description xml:lang="en">Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash.</Description>
|
||||
<Description xml:lang="tr">Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama.</Description>
|
||||
<Icon>flash-player-properties</Icon>
|
||||
<Archive type="targz" sha1sum="955d34eff2bf267478e87bb96e1397d3840072b3" target="i686">https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.156/flash_player_npapi_linux.i386.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="d8afde6461b189d04ca86a3fc6b77f418c9fd9aa" target="x86_64">https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.156/flash_player_npapi_linux.x86_64.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="90f851fd686b238ae3a5f69da7d32c62b2934546" target="i686">https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.171/flash_player_npapi_linux.i386.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="8795d1ac0ccf248e15f0421af46881cfe9e49043" target="x86_64">https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.171/flash_player_npapi_linux.x86_64.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>gtk2</Dependency>
|
||||
@@ -38055,6 +38168,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="15">
|
||||
<Date>2019-05-08</Date>
|
||||
<Version>32.0.0.171</Version>
|
||||
<Comment>Version Bump</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2019-03-23</Date>
|
||||
<Version>32.0.0.156</Version>
|
||||
@@ -65704,7 +65824,7 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>mlt</Name>
|
||||
<Homepage>http://www.mltframework.org/twiki/bin/view/MLT/</Homepage>
|
||||
<Homepage>https://www.mltframework.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -91425,7 +91545,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>qscintilla2</Name>
|
||||
<Homepage>http://www.riverbankcomputing.co.uk/qscintilla/</Homepage>
|
||||
<Homepage>https://www.riverbankcomputing.com/software/qscintilla/intro</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
@@ -148747,7 +148867,7 @@ cleaner, which will allow to add new features in the future.</Description>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>kdenlive</Name>
|
||||
<Homepage>http://www.kdenlive.org</Homepage>
|
||||
<Homepage>https://kdenlive.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -185233,7 +185353,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>module-nvidia340</Name>
|
||||
<Homepage>http://www.nvidia.com</Homepage>
|
||||
<Homepage>https://www.nvidia.com/</Homepage>
|
||||
<Packager>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
@@ -185248,7 +185368,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<AdditionalFile target="kernel-4.11.patch">kernel-4.11.patch</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<BuildDependencies>
|
||||
<Dependency version="4.19.34">kernel-module-headers</Dependency>
|
||||
<Dependency version="4.19.42">kernel-module-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>kernel/drivers/module-nvidia340/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -185260,7 +185380,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Flag>noDelta</Flag>
|
||||
</BuildFlags>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="4.19.34">kernel</Dependency>
|
||||
<Dependency version="4.19.42">kernel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library" permanent="true">/lib/modules</Path>
|
||||
@@ -185310,7 +185430,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Dependency>zlib-32bit</Dependency>
|
||||
<Dependency>libX11-32bit</Dependency>
|
||||
<Dependency>libXext-32bit</Dependency>
|
||||
<Dependency release="24">xorg-video-nvidia340</Dependency>
|
||||
<Dependency release="25">xorg-video-nvidia340</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib32</Path>
|
||||
@@ -185325,6 +185445,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Provides>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="25">
|
||||
<Date>2019-12-05</Date>
|
||||
<Version>340.107</Version>
|
||||
<Comment>Rebuild for new kernel.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="24">
|
||||
<Date>2019-04-06</Date>
|
||||
<Version>340.107</Version>
|
||||
@@ -185995,7 +186122,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<AdditionalFile target="nvidia-304.137-bionic-18.04.patch">nvidia-304.137-bionic-18.04.patch</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<BuildDependencies>
|
||||
<Dependency version="4.19.34">kernel-module-headers</Dependency>
|
||||
<Dependency version="4.19.42">kernel-module-headers</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>kernel/drivers/module-nvidia304/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -186007,7 +186134,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
<Flag>noDelta</Flag>
|
||||
</BuildFlags>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="4.19.34">kernel</Dependency>
|
||||
<Dependency version="4.19.42">kernel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library" permanent="true">/lib/modules</Path>
|
||||
@@ -186042,6 +186169,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Provides>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="25">
|
||||
<Date>2019-12-05</Date>
|
||||
<Version>304.137</Version>
|
||||
<Comment>Rebuild for new kernel.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="24">
|
||||
<Date>2019-04-06</Date>
|
||||
<Version>304.137</Version>
|
||||
@@ -198434,7 +198568,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>python3-qt5</Name>
|
||||
<Homepage>http://www.riverbankcomputing.co.uk/software/pyqt</Homepage>
|
||||
<Homepage>https://www.riverbankcomputing.com/software/pyqt/intro</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
@@ -204260,6 +204394,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<Dependency>libSM-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>jdk7-openjdk</Dependency>
|
||||
<Dependency>libffi-devel</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>giflib-devel</Dependency>
|
||||
@@ -204523,7 +204658,7 @@ to create header files and sources from protocol files.</Description>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2019-04-28</Date>
|
||||
<Date>2019-05-15</Date>
|
||||
<Version>7u_201.2.6.17</Version>
|
||||
<Comment>Version bump devir 3.</Comment>
|
||||
<Name>Pisi Linux Community</Name>
|
||||
@@ -205973,7 +206108,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>python-qt5</Name>
|
||||
<Homepage>http://www.riverbankcomputing.co.uk/software/pyqt</Homepage>
|
||||
<Homepage>https://www.riverbankcomputing.com/software/pyqt/intro</Homepage>
|
||||
<Packager>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
@@ -209183,7 +209318,7 @@ to create header files and sources from protocol files.</Description>
|
||||
<Description xml:lang="fr">Cache de Compilation rapide</Description>
|
||||
<Description xml:lang="en">ccache is a compiler cache. It speeds up recompilation of C/C++ code by caching previous compiles and detecting when the same compile is being done.</Description>
|
||||
<Description xml:lang="tr">ccache bir derleme önbelleğidir. Önceki derlemeleri önbelleğinde saklayıp, aynı derlemelerde bu önbelleği kullanarak C/C++ kodlarının yeniden derlenmelerini hızlandırır.</Description>
|
||||
<Archive type="tarxz" sha1sum="5acfdea35d379cadf192363e21f3e25e0f35b01c">http://samba.org/ftp/ccache/ccache-3.4.3.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="76c0c6c864dd1e91f006a1f1970c771436c100cf">https://github.com/ccache/ccache/releases/download/v3.7.1/ccache-3.7.1.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
@@ -209203,6 +209338,13 @@ to create header files and sources from protocol files.</Description>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2019-05-06</Date>
|
||||
<Version>3.7.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2018-09-12</Date>
|
||||
<Version>3.4.3</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
07fbe68b6d88d621e1e225bcec7db9bdd7166b86
|
||||
82c23f967431a9e3e7b2716c939c914b7713def8
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
51bfb0ba165ba15a3e4a0b9c797f3d6b46496f6d
|
||||
b25d906c059079f8a0f71b15611e539ac423b574
|
||||
Reference in New Issue
Block a user