exfatprogs-1.2.0

This commit is contained in:
Rmys
2022-10-30 19:25:23 +02:00
committed by GitHub
parent 9c1ee804d6
commit d450ddbe59
2 changed files with 184 additions and 77 deletions
+45 -6
View File
@@ -2,18 +2,57 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import autotools, pisitools, get
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def setup():
autotools.configure("--disable-static")
shelltools.unlink('pwd.lock')
pisitools.dosed("configure.ac", "-Werror")
pisitools.dosed("Makefile.am", "-Werror")
autotools.autoreconf("-vfi")
autotools.configure("--enable-sqlite \
--enable-pie \
--disable-docs \
--disable-static \
--disable-publican \
--disable-crash \
--disable-silent-rules \
--without-systemd \
--docdir=/%s/%s \
--without-rpm" % (get.docDIR(), get.srcNAME()))
def build():
autotools.make()
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("NEWS")
pisitools.dodir("/var/cache/systemtap")
pisitools.dodir("/run/systemtap")
pisitools.dodir("/var/log/stap-server")
pisitools.dodir("/etc/logrotate.d")
pisitools.dodir("/etc/stap-server/conf.d")
pisitools.dodir("/etc/systemtap/conf.d")
pisitools.dodir("/etc/systemtap/script.d")
pisitools.dobin("stap-prep")
pisitools.domove("/var/run/stap-server", "/run/")
pisitools.removeDir("var/run")
pisitools.removeDir("/usr/lib/systemd")
shelltools.copytree("testsuite", "%s/usr/share/systemtap" % get.installDIR())
pisitools.insinto("/etc/logrotate.d", "initscript/logrotate.stap-server", "stap-server")
pisitools.insinto("/etc/conf.d", "initscript/config.stap-server", "stap-server")
pisitools.insinto("/etc/systemtap", "initscript/config.systemtap", "config")
# Clean uprobes directory
#autotools.make("-C %s/usr/share/systemtap/runtime/uprobes clean" % get.installDIR())
pisitools.dodoc("COPYING", "HACKING", "INTERNALS", "README.*")
+139 -71
View File
@@ -1,76 +1,144 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>exfatprogs</Name>
<Homepage>https://github.com/exfatprogs/exfatprogs</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>GPL-2</License>
<IsA>app:console</IsA>
<PartOf>hardware.disk</PartOf>
<Summary>exFAT filesystem userspace utilities.</Summary>
<Description>As new exfat filesystem is merged into linux-5.7 kernel, exfatprogs is created as an official userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system.</Description>
<Archive sha1sum="6ff0ad86aceef6067af9d85bf7df181a86793c74" type="tarxz">
https://github.com/exfatprogs/exfatprogs/releases/download/1.1.3/exfatprogs-1.1.3.tar.xz
</Archive>
<BuildDependencies>
<!-- <Dependency></Dependency> -->
</BuildDependencies>
</Source>
<Source>
<Name>systemtap</Name>
<Homepage>http://sourceware.org/systemtap/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<IsA>app:console</IsA>
<Summary>Instrumentation System</Summary>
<Description>systemtap is an instrumentation system for systems running Linux 2.6. Developers can write instrumentation to collect data on the operation of the system.</Description>
<Archive sha1sum="fc943fc3233b111fd80c9cbd063859dc1b699dcb" type="targz">https://sourceware.org/systemtap/ftp/releases/systemtap-4.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>bzip2</Dependency>
<Dependency>nss-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>json-c-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>readline-devel</Dependency>
<Dependency>elfutils-devel</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>exfatprogs</Name>
<Conflicts>
<!-- <Package>exfat-utils</Package> -->
</Conflicts>
<RuntimeDependencies>
<!-- <Dependency></Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="man">/usr/share/man/man8</Path>
<Path fileType="doc">/usr/share/doc/exfatprogs/NEWS</Path>
</Files>
</Package>
<Package>
<Name>systemtap</Name>
<RuntimeDependencies>
<Dependency>elfutils</Dependency>
<Dependency>readline</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>python</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>bzip2</Dependency>
<Dependency>nspr</Dependency>
<Dependency>nss</Dependency>
<Dependency>boost</Dependency>
<Dependency>json-c</Dependency>
<Dependency>ncurses</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/sbin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/run/systemtap</Path>
<Path fileType="data">/run/stap-server</Path>
<Path fileType="data">/etc/logrotate.d</Path>
<Path fileType="data">/var/log/stap-server</Path>
<Path fileType="data">/var/cache/systemtap</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/systemtap/tapset</Path>
<Path fileType="data">/usr/share/systemtap/runtime</Path>
<Path fileType="executable">/usr/libexec/systemtap</Path>
<Path fileType="config">/usr/lib/tmpfiles.d/systemtap.conf</Path>
<Path fileType="data">/usr/share/systemtap/examples</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/lib/tmpfiles.d/systemtap.conf">tmpfiles.conf</AdditionalFile>
</AdditionalFiles>
<Provides>
<COMAR script="package.py">System.Package</COMAR>
</Provides>
</Package>
<History>
<Update release="5">
<Date>2021-11-17</Date>
<Version>1.1.3</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="4">
<Date>2021-06-22</Date>
<Version>1.1.2</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="3">
<Date>2021-05-04</Date>
<Version>1.1.1</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="2">
<Date>2021-03-07</Date>
<Version>1.1.0</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2021-01-26</Date>
<Version>1.0.4</Version>
<Comment>First Beta build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
<Package>
<Name>systemtap-testsuite</Name>
<Summary>Testsuite allows testing of the entire SystemTap toolchain without having to rebuild from sources</Summary>
<RuntimeDependencies>
<Dependency release="current">systemtap</Dependency>
<Dependency release="current">systemtap-sdt-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/systemtap/testsuite</Path>
</Files>
</Package>
<Package>
<Name>systemtap-sdt-devel</Name>
<Summary>Static probe support tools</Summary>
<RuntimeDependencies>
<Dependency release="current">systemtap</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>readline-devel</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>json-c-devel</Dependency>
<Dependency>boost-devel</Dependency>
<Dependency>nss-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/dtrace</Path>
<Path fileType="header">/usr/include</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2022-10-24</Date>
<Version>4.7</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2020-02-02</Date>
<Version>4.2</Version>
<Comment>Version bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2018-08-10</Date>
<Version>3.2</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2018-03-22</Date>
<Version>3.2</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2017-11-24</Date>
<Version>3.2</Version>
<Comment>First release</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
</History>
</PISI>