new packages: libmirage, cdemu-daemon, cdemu-client
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE='Release' \
|
||||
-DCMAKE_INSTALL_PREFIX='/usr' \
|
||||
-DCMAKE_INSTALL_LIBDIR='lib' \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DBUILD_STATIC_LIBS=OFF", sourceDir="..")
|
||||
|
||||
def build():
|
||||
cmaketools.make("-B build")
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# pisitools.dodoc("COPYING", "README")
|
||||
|
||||
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cdemu-client</Name>
|
||||
<Homepage>https://cdemu.sourceforge.io/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<Icon>cdemu-client</Icon>
|
||||
<Summary>Simple command-line client for controlling cdemu-daemon</Summary>
|
||||
<Description>CDemu - a virtual CD/DVD drive for Linux. Project includes Linux kernel module, userspace utilities.</Description>
|
||||
<Archive sha1sum="951b1f6ee1ebc9692c8a7de0176a885a27a6d23b" type="tarxz">mirrors://sourceforge/cdemu/cdemu-client/cdemu-client-3.2.5.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>bash-completion</Dependency>
|
||||
<Dependency>python3-pygobject3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cdemu-client</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>cdemu-daemon</Dependency>
|
||||
<Dependency>python3-pygobject3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion/completions/cdemu</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-06-21</Date>
|
||||
<Version>3.2.5</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cdemu-client</Name>
|
||||
<Summary xml:lang="tr">Cdemu-daemon'u kontrol etmek için basit komut satırı istemcisi</Summary>
|
||||
<Description xml:lang="tr">CDemu - Linux için sanal bir CD/DVD sürücüsü. Proje, Linux çekirdek modülü ve kullanıcı alanı yardımcı programlarını içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,30 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE='Release' \
|
||||
-DCMAKE_INSTALL_PREFIX='/usr' \
|
||||
-DCMAKE_INSTALL_LIBDIR='lib' \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DBUILD_STATIC_LIBS=OFF", sourceDir="..")
|
||||
|
||||
def build():
|
||||
cmaketools.make("-B build")
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# pisitools.dodoc("COPYING", "README")
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cdemu-daemon</Name>
|
||||
<Homepage>https://cdemu.sourceforge.io/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>cdemu-daemon</Icon>
|
||||
<Summary>CD/DVD-ROM device emulator daemon</Summary>
|
||||
<Description>This is CDEmu daemon, the daemon part of the cdemu suite, a free, GPL CD/DVD-ROM device emulator for linux.</Description>
|
||||
<Archive sha1sum="152d5d352e9c19e8651293ee174728e7582a5767" type="tarxz">mirrors://sourceforge/cdemu/cdemu-daemon/cdemu-daemon-3.2.6.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>libao-devel</Dependency>
|
||||
<Dependency>libmirage-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cdemu-daemon</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libao</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libmirage</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/cdemu-daemon</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-06-21</Date>
|
||||
<Version>3.2.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cdemu-daemon</Name>
|
||||
<Summary xml:lang="tr">CD/DVD-ROM aygıt emülatör arka plan programı</Summary>
|
||||
<Description xml:lang="tr">Bu, cdemu paketinin arka plan programı olan CDEmu arka plan programıdır, linux için ücretsiz bir GPL CD/DVD-ROM aygıt öykünücüsüdür.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,31 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.makedirs("build")
|
||||
shelltools.cd("build")
|
||||
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE='None' \
|
||||
-DCMAKE_INSTALL_PREFIX='/usr' \
|
||||
-DCMAKE_INSTALL_LIBDIR='lib' \
|
||||
-DBUILD_SHARED_LIBS=ON \
|
||||
-DPOST_INSTALL_HOOKS=OFF \
|
||||
-DBUILD_STATIC_LIBS=OFF", sourceDir="..")
|
||||
|
||||
def build():
|
||||
cmaketools.make("-B build")
|
||||
|
||||
def install():
|
||||
shelltools.cd("build")
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# pisitools.dodoc("COPYING", "README")
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmirage</Name>
|
||||
<Homepage>https://cdemu.sourceforge.io/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPL</License>
|
||||
<IsA>library</IsA>
|
||||
<Icon>libmirage</Icon>
|
||||
<Summary>CD-ROM image (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) access library</Summary>
|
||||
<Description>CD-ROM image (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) access library</Description>
|
||||
<Archive sha1sum="fd4e694125ac77b84532fbce3fa389deb8fbee35" type="tarxz">mirrors://sourceforge/cdemu/libmirage/libmirage-3.2.6.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>gtk-doc</Dependency>
|
||||
<Dependency>xz-devel</Dependency>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>vala-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>shared-mime-info</Dependency>
|
||||
<Dependency>libsndfile-devel</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch></Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmirage</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>xz</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libsndfile</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="library">/usr/lib/girepository-1.0/Mirage-3.2.typelib</Path>
|
||||
<Path fileType="library">/usr/lib/libmirage-3.2</Path>
|
||||
<Path fileType="library">/usr/lib/libmirage.so*</Path>
|
||||
<Path fileType="data">/usr/share/vala/vapi/libmirage.vapi</Path>
|
||||
<Path fileType="doc">/usr/share/gtk-doc/html/libmirage</Path>
|
||||
<Path fileType="data">/usr/share/mime/packages</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libmirage-devel</Name>
|
||||
<Summary>Development files for libmirage</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency release="current">libmirage</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2023-06-21</Date>
|
||||
<Version>3.2.6</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmirage</Name>
|
||||
<Summary xml:lang="tr">CD-ROM görüntüsü (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) erişim kitaplığı</Summary>
|
||||
<Description xml:lang="tr">CD-ROM görüntüsü (B6T/C2D/CCD/CDI/CIF/CUE/ISO/MDS/MDX/NRG/TOC) erişim kitaplığı</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+393589
-392564
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
248a823cdd809e9d8d66e3ed6b588c179ef0fd84
|
||||
9966afbe8846c22cc6dd0c1c2ec49359aa89a2ab
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
58bb25ebf9b75f57888a7d5361d2ac3664be839f
|
||||
fb133e65681e31c8ac67eb8cc4ea191b5f451f02
|
||||
Reference in New Issue
Block a user