forked from pool/libeconf
Accepting request 733498 from devel:kubic
- Update to version 0.3.2+git20190926.fea4a03: * Release version 0.3.2 * Fix merging an empty file (#105) * Add test cases for merge function - Update to version 0.3.1+git20190924.822cf5b: * release version 0.3.1 * Set delimiter in readFile * Change parser interface to store file name and line numbers per key * Update ccpp.yml OBS-URL: https://build.opensuse.org/request/show/733498 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libeconf?expand=0&rev=4
This commit is contained in:
parent
10ca8c4b61
commit
d4c10581a4
5
_service
5
_service
@ -1,11 +1,10 @@
|
|||||||
<services>
|
<services>
|
||||||
<service name="tar_scm" mode="disabled">
|
<service name="tar_scm" mode="disabled">
|
||||||
<param name="version">0.3.0</param>
|
<param name="version">0.3.2</param>
|
||||||
<param name="versionformat">0.3.0+git%cd.%h</param>
|
<param name="versionformat">0.3.2+git%cd.%h</param>
|
||||||
<param name="url">git://github.com/openSUSE/libeconf.git</param>
|
<param name="url">git://github.com/openSUSE/libeconf.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="changesgenerate">enable</param>
|
<param name="changesgenerate">enable</param>
|
||||||
<param name="changesauthor">kukuk@suse.de</param>
|
|
||||||
</service>
|
</service>
|
||||||
<service name="recompress" mode="disabled">
|
<service name="recompress" mode="disabled">
|
||||||
<param name="compression">xz</param>
|
<param name="compression">xz</param>
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<servicedata>
|
<servicedata>
|
||||||
<service name="tar_scm">
|
<service name="tar_scm">
|
||||||
<param name="url">git://github.com/openSUSE/libeconf.git</param>
|
<param name="url">git://github.com/openSUSE/libeconf.git</param>
|
||||||
<param name="changesrevision">82dae5154f1a386ec4e5147da8c166d2236e568e</param>
|
<param name="changesrevision">fea4a03631c42bd4edc7ac94bbab5675d2dc54a9</param>
|
||||||
</service>
|
</service>
|
||||||
</servicedata>
|
</servicedata>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:48ddc17089f4beaf7d19f5197316db74b2001043ec703f3205a654b11c3bf9b4
|
|
||||||
size 27756
|
|
3
libeconf-0.3.2+git20190926.fea4a03.tar.xz
Normal file
3
libeconf-0.3.2+git20190926.fea4a03.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0362ab31ae8bbac994a74798dd9ab9867662ae18ae687a83924f246c12a34b52
|
||||||
|
size 28432
|
@ -1,3 +1,20 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 26 17:43:54 UTC 2019 - kukuk@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.3.2+git20190926.fea4a03:
|
||||||
|
* Release version 0.3.2
|
||||||
|
* Fix merging an empty file (#105)
|
||||||
|
* Add test cases for merge function
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 24 12:52:52 UTC 2019 - rbrown@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.3.1+git20190924.822cf5b:
|
||||||
|
* release version 0.3.1
|
||||||
|
* Set delimiter in readFile
|
||||||
|
* Change parser interface to store file name and line numbers per key
|
||||||
|
* Update ccpp.yml
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Sep 06 10:53:32 UTC 2019 - kukuk@suse.de
|
Fri Sep 06 10:53:32 UTC 2019 - kukuk@suse.de
|
||||||
|
|
||||||
|
@ -18,17 +18,17 @@
|
|||||||
|
|
||||||
%define lname libeconf0
|
%define lname libeconf0
|
||||||
Name: libeconf
|
Name: libeconf
|
||||||
Version: 0.3.0+git20190906.0e60a88
|
Version: 0.3.2+git20190926.fea4a03
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Enhanced config file parser ala systemd
|
Summary: Enhanced config file parser ala systemd
|
||||||
License: LGPL-2.1-or-later
|
License: LGPL-2.1-or-later
|
||||||
Url: https://github.com/openSUSE/libeconf
|
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
|
Url: https://github.com/openSUSE/libeconf
|
||||||
Source: libeconf-%{version}.tar.xz
|
Source: libeconf-%{version}.tar.xz
|
||||||
Source2: baselibs.conf
|
Source2: baselibs.conf
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: libtool
|
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
|
BuildRequires: libtool
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -37,6 +37,7 @@ in several locations into one.
|
|||||||
|
|
||||||
%package -n %{lname}
|
%package -n %{lname}
|
||||||
Summary: Enhanced config file parser ala systemd
|
Summary: Enhanced config file parser ala systemd
|
||||||
|
Group: Development/Libraries/C and C++
|
||||||
|
|
||||||
%description -n %{lname}
|
%description -n %{lname}
|
||||||
Enhanced config file parser, which merges config files placed
|
Enhanced config file parser, which merges config files placed
|
||||||
|
Loading…
Reference in New Issue
Block a user