Accepting request 650740 from Base:System
OBS-URL: https://build.opensuse.org/request/show/650740 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libsmbios?expand=0&rev=44
This commit is contained in:
commit
bb33f700b7
13
_service
Normal file
13
_service
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<services>
|
||||||
|
<service mode="disabled" name="obs_scm">
|
||||||
|
<param name="url">https://github.com/dell/libsmbios.git</param>
|
||||||
|
<param name="scm">git</param>
|
||||||
|
<param name="versionformat">2.4.2</param>
|
||||||
|
</service>
|
||||||
|
<service mode="buildtime" name="tar"/>
|
||||||
|
<service mode="buildtime" name="recompress">
|
||||||
|
<param name="file">*.tar</param>
|
||||||
|
<param name="compression">gz</param>
|
||||||
|
</service>
|
||||||
|
<service mode="disabled" name="set_version" />
|
||||||
|
</services>
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ad200d0b8db681d04336afb64c765808b3bfdfc18619e24621576c03564e629f
|
|
||||||
size 667796
|
|
3
libsmbios-2.4.2.obscpio
Normal file
3
libsmbios-2.4.2.obscpio
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:45096754f3769b47f7c2e53b611825fa0e4a18948de665cd9f7e1ccd9772cbf3
|
||||||
|
size 3537421
|
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Nov 21 13:49:06 UTC 2018 - Enno Gotthold <egotthold@suse.com>
|
||||||
|
|
||||||
|
- Fixed build through adding a recrompress at buildtime and changing the
|
||||||
|
Source in the specfile.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Nov 09 10:37:47 UTC 2018 - egotthold@suse.de
|
||||||
|
|
||||||
|
- Updated _service file to the modern obs_scm, so that the maintenance
|
||||||
|
is less time cosuming and the obs needs less space to store the sources.
|
||||||
|
- Update to version 2.4.2:
|
||||||
|
* Fix misspelling in doc/getopt/README
|
||||||
|
* Fix bus errors with small memory files (Closes: #58)
|
||||||
|
* trivial: fix line endings
|
||||||
|
* Correct the location some headers are installed to (Closes: #50)
|
||||||
|
* Conditionalize build of man pages properly (Closes: #49)
|
||||||
|
* install include headers with make install (Closes: #47)
|
||||||
|
* Revert "Allow python34 or python36 to resolve the python3 requirements"
|
||||||
|
* Allow python34 or python36 to resolve the python3 requirements
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri May 18 07:45:07 UTC 2018 - tchvatal@suse.com
|
Fri May 18 07:45:07 UTC 2018 - tchvatal@suse.com
|
||||||
|
|
||||||
|
5
libsmbios.obsinfo
Normal file
5
libsmbios.obsinfo
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
name: libsmbios
|
||||||
|
version: 2.4.2
|
||||||
|
mtime: 1540996923
|
||||||
|
commit: 26e7363636273835444659e0904762a70d03446a
|
||||||
|
|
@ -12,20 +12,20 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
%define libname libsmbios_c2
|
%define libname libsmbios_c2
|
||||||
Name: libsmbios
|
Name: libsmbios
|
||||||
Version: 2.4.1
|
Version: 2.4.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: SMBIOS table library and utilities
|
Summary: SMBIOS table library and utilities
|
||||||
License: GPL-2.0-or-later OR OSL-2.1
|
License: GPL-2.0-or-later OR OSL-2.1
|
||||||
Group: Hardware/Other
|
Group: Hardware/Other
|
||||||
URL: https://github.com/dell/libsmbios
|
URL: https://github.com/dell/libsmbios
|
||||||
Source: https://github.com/dell/libsmbios/archive/v2.4.1.tar.gz#/%{name}-%{version}.tar.gz
|
Source: %{name}-%{version}.tar.gz
|
||||||
Source1: libsmbios-rpmlintrc
|
Source1: %{name}-rpmlintrc
|
||||||
BuildRequires: autoconf
|
BuildRequires: autoconf
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: chrpath
|
BuildRequires: chrpath
|
||||||
@ -147,7 +147,9 @@ chrpath --replace '$ORIGIN' %{buildroot}%{_sbindir}/smbios-sys-info-lite
|
|||||||
|
|
||||||
# include files
|
# include files
|
||||||
mkdir -p %{buildroot}/%{_includedir}
|
mkdir -p %{buildroot}/%{_includedir}
|
||||||
cp -a src/include/* %{buildroot}/%{_includedir}/
|
cd src/include
|
||||||
|
find . -name "*.h" -exec install -m 0644 -D {} %{buildroot}/%{_includedir}/{} \;
|
||||||
|
cd ../..
|
||||||
cp -a out/public-include/* %{buildroot}%{_includedir}/
|
cp -a out/public-include/* %{buildroot}%{_includedir}/
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user