libconfig-1.7.3

This commit is contained in:
4fury-c3440d8
2022-04-16 02:13:09 +03:00
parent 1ef1726f9e
commit c8726b9996
6 changed files with 132 additions and 123 deletions
-24
View File
@@ -1,24 +0,0 @@
#!/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.autoreconf("-vfi")
autotools.configure("--disable-static")
# Do not link to unused m library
pisitools.dosed("libtool", "^(postdeps=.*) -lm (.*)$", r"\1 \2")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("AUTHORS","ChangeLog","COPYING.LIB","README")
-86
View File
@@ -1,86 +0,0 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libconfig</Name>
<Homepage>http://www.hyperrealm.com/libconfig/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>C/C++ Configuration File Library</Summary>
<Description>Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code.</Description>
<Archive sha1sum="a0b282e78409f9f1a165b0c0011ae2ea78e7a390" type="targz" name="libconfig-1.7.2.tar.gz">https://github.com/hyperrealm/libconfig/archive/v1.7.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>texinfo</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libconfig</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libconfig-devel</Name>
<Summary>Development files for libconfig</Summary>
<RuntimeDependencies>
<Dependency release="current">libconfig</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="info">/usr/share/info</Path>
</Files>
</Package>
<History>
<Update release="6">
<Date>2020-11-07</Date>
<Version>1.7.2</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2020-01-12</Date>
<Version>1.7.2</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2018-08-03</Date>
<Version>1.5</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2017-02-17</Date>
<Version>1.5</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.5</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-03-04</Date>
<Version>1.4.9</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
-13
View File
@@ -1,13 +0,0 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libconfig</Name>
<Summary xml:lang="tr">C/C++ Yapılandırma Dosyası Kitaplığı</Summary>
<Description xml:lang="tr">Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz.</Description>
</Source>
<Package>
<Name>libconfig-devel</Name>
<Summary xml:lang="tr">libconfig için geliştirme dosyaları</Summary>
</Package>
</PISI>
+19
View File
@@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools, pisitools, get
def setup():
autotools.configure("--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.removeDir("/usr/share/info")
pisitools.dodoc("AUTHORS", "ChangeLog")
+100
View File
@@ -0,0 +1,100 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libconfig</Name>
<Homepage>https://hyperrealm.github.io/libconfig/</Homepage>
<Packager>
<Name>Pisilinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPL-2.1</License>
<IsA>library</IsA>
<PartOf>programming.library</PartOf>
<Summary>C/C++ library for processing configuration files.</Summary>
<Description>
Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code.
</Description>
<Archive sha1sum="4047db15a9a53bf1a680226eef56c8997ceaf124" type="targz">
https://github.com/hyperrealm/libconfig/releases/download/v1.7.3/libconfig-1.7.3.tar.gz
</Archive>
<BuildDependencies>
<Dependency>texinfo</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libconfig</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>libconfig-devel</Name>
<Summary>Development files for libconfig</Summary>
<RuntimeDependencies>
<Dependency release="current">libconfig</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="7">
<Date>2022-04-14</Date>
<Version>1.7.3</Version>
<Comment>Version bump.</Comment>
<Name>Pisilinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2020-11-07</Date>
<Version>1.7.2</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2020-01-12</Date>
<Version>1.7.2</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2018-08-03</Date>
<Version>1.5</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2017-02-17</Date>
<Version>1.5</Version>
<Comment>Rebuild</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>1.5</Version>
<Comment>Version Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2013-03-04</Date>
<Version>1.4.9</Version>
<Comment>First release</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libconfig</Name>
<Summary xml:lang="tr">C/C++ Yapılandırma Dosyası Kitaplığı</Summary>
<Description xml:lang="tr">Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz.</Description>
</Source>
<Package>
<Name>libconfig-devel</Name>
<Summary xml:lang="tr">libconfig için geliştirme dosyaları</Summary>
</Package>
</PISI>