@@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env 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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
#shelltools.system("./autogen.sh")
|
||||
autotools.configure("--without-gtk-doc \
|
||||
--without-nvdimm \
|
||||
--without-dm")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE")
|
||||
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libblockdev</Name>
|
||||
<Homepage>https://github.com/storaged-project/libblockdev</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>A library for manipulating block devices</Summary>
|
||||
<Description>Blok cihazlarını değiştirmek için bir kütüphane</Description>
|
||||
<Archive sha1sum="5066dbd1098e433fe713a04b14033d130d041888" type="targz">https://github.com/storaged-project/libblockdev/releases/download/2.20-1/libblockdev-2.20.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>nss-devel</Dependency>
|
||||
<Dependency>mdadm</Dependency>
|
||||
<Dependency>util-linux</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>parted-devel</Dependency>
|
||||
<Dependency>libyaml-devel</Dependency>
|
||||
<Dependency>libkmod-devel</Dependency>
|
||||
<Dependency>volume_key-devel</Dependency>
|
||||
<Dependency>libbytesize-devel</Dependency>
|
||||
<Dependency>libcryptsetup-devel</Dependency>
|
||||
<Dependency>libutil-linux-devel</Dependency>
|
||||
<Dependency>device-mapper-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libblockdev</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>eudev</Dependency>
|
||||
<Dependency>parted</Dependency>
|
||||
<Dependency>libyaml</Dependency>
|
||||
<Dependency>libkmod</Dependency>
|
||||
<Dependency>volume_key</Dependency>
|
||||
<Dependency>libbytesize</Dependency>
|
||||
<Dependency>libcryptsetup</Dependency>
|
||||
<Dependency>libutil-linux</Dependency>
|
||||
<Dependency>device-mapper</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libblockdev-devel</Name>
|
||||
<Summary>Development files for libblockdev</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libblockdev</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-12-26</Date>
|
||||
<Version>2.20</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libblockdev</Name>
|
||||
<Summary xml:lang="tr">A library for manipulating block devices</Summary>
|
||||
<Description xml:lang="tr">Blok cihazlarını değiştirmek için bir kütüphane</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env 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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
#shelltools.system("./autogen.sh")
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE", "README*")
|
||||
@@ -0,0 +1,62 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libbytesize</Name>
|
||||
<Homepage>https://github.com/storaged-project/libbytesize</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv3</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>A tiny library providing a C "class" for working with arbitrary big sizes in bytes</Summary>
|
||||
<Description>Bayt cinsinden rastgele büyük boyutlarla çalışmak için C sınıfı olan kütüphane</Description>
|
||||
<Archive sha1sum="ef29982499abeeeeffc71cfa500eea15ab64ceb5" type="targz">https://github.com/storaged-project/libbytesize/releases/download/1.4/libbytesize-1.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libpcre-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>mpfr-devel</Dependency>
|
||||
<Dependency>gmp-devel</Dependency>
|
||||
<!-- <Dependency>gtk-doc</Dependency> -->
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libbytesize</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libpcre</Dependency>
|
||||
<Dependency>mpfr</Dependency>
|
||||
<Dependency>gmp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libbytesize-devel</Name>
|
||||
<Summary>Development files for libbytesize</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libbytesize</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-12-29</Date>
|
||||
<Version>1.4</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libbytesize</Name>
|
||||
<Summary xml:lang="tr">A tiny library providing a C "class" for working with arbitrary big sizes in bytes</Summary>
|
||||
<Description xml:lang="tr">Bayt cinsinden rastgele büyük boyutlarla çalışmak için C sınıfı olan kütüphane</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/env 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()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>volume_key</Name>
|
||||
<Homepage>https://pagure.io/volume_key</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>A library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases</Summary>
|
||||
<Description>Depolama birimi şifreleme anahtarlarını değiştirmek ve unutulan parolaları işlemek için bunları ayrı birimlerden saklamak için bir kütüphane</Description>
|
||||
<Archive sha1sum="6b78342047d234fcccb3d1baa6b558f656c44be6" type="tarxz">https://releases.pagure.org/volume_key/volume_key-0.3.11.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>swig</Dependency>
|
||||
<Dependency>nss-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gpgme-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>libassuan</Dependency> -->
|
||||
<Dependency>libgpg-error</Dependency> -->
|
||||
<Dependency>libutil-linux-devel</Dependency>
|
||||
<Dependency>libcryptsetup-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>volume_key</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>nspr</Dependency>
|
||||
<Dependency>nss</Dependency>
|
||||
<Dependency>gettext</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>gpgme</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>libassuan</Dependency>
|
||||
<Dependency>libgpg-error</Dependency>
|
||||
<Dependency>libutil-linux</Dependency>
|
||||
<Dependency>libcryptsetup</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>volume_key-devel</Name>
|
||||
<Summary>Development files for volume_key</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">volume_key</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-12-29</Date>
|
||||
<Version>0.3.11</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>volume_key</Name>
|
||||
<Summary xml:lang="tr">A library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases</Summary>
|
||||
<Description xml:lang="tr">Depolama birimi şifreleme anahtarlarını değiştirmek ve unutulan parolaları işlemek için bunları ayrı birimlerden saklamak için bir kütüphane</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
+561
-78
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
d9ed501e85c994e0309f10862548e54e3461dd23
|
||||
24f8adce1fe42d198ded6713ebe0545397e7d9ae
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
a02d49d687c6dd8633a7f5e44a54e254a780db91
|
||||
bb7226b6783da2a9792deaf3691e7544c8986019
|
||||
Reference in New Issue
Block a user