Accepting request 768059 from system:install:head

submitted by snwint via jenkins

OBS-URL: https://build.opensuse.org/request/show/768059
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libx86emu?expand=0&rev=30
This commit is contained in:
Dominique Leuenberger 2020-01-30 08:38:26 +00:00 committed by Git OBS Bridge
commit 73e05fde25
4 changed files with 33 additions and 10 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:20f53df60e1c76025c06d16332fda64d28f7ec5e87b56c32a1ff1b2ab34fd7da
size 86596

3
libx86emu-3.1.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b5bfd248d2cff411200a467a4f0dd19dd6f14e7e7cb6e83ff36f85e7f84fb44
size 89248

View File

@ -1,3 +1,22 @@
--------------------------------------------------------------------
Tue Jan 28 14:19:00 UTC 2020 - wfeldt@opensuse.org
- merge gh#wfeldt/libx86emu#28
- update README to explain about library versions
- adjust code to compile with older C standards
- 3.1
--------------------------------------------------------------------
Mon Jan 27 17:38:19 UTC 2020 - wfeldt@opensuse.org
- merge gh#wfeldt/libx86emu#27
- rework (i)div and (i)mul instructions
- fix typo
- add (i)div opcode tests
- rework (i)mul instructions to set flags correctly
- add (i)mul tests
- 3.0
--------------------------------------------------------------------
Fri Jan 17 12:32:27 UTC 2020 - wfeldt@opensuse.org

View File

@ -22,7 +22,7 @@ BuildRequires: xz
Summary: An x86 emulation library
License: BSD-3-Clause
Group: Development/Libraries/C and C++
Version: 2.6
Version: 3.1
Release: 0
Source: %{name}-%{version}.tar.xz
Url: https://github.com/wfeldt/libx86emu
@ -32,18 +32,18 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
An x86 emulation library with focus on usage and
execution logging functions.
%package -n libx86emu2
%package -n libx86emu3
Summary: An x86 emulation library
Group: System/Libraries
%description -n libx86emu2
%description -n libx86emu3
An x86 emulation library with focus on usage and
execution logging functions.
%package -n libx86emu-devel
Summary: Development files for libx86emu
Group: Development/Libraries/C and C++
Requires: libx86emu2 = %version
Requires: libx86emu3 = %version
%description -n libx86emu-devel
An x86 emulation library with focus on usage and
@ -61,15 +61,19 @@ make LIBDIR=%{_libdir}
install -d -m 755 %{buildroot}%{_libdir}
%make_install LIBDIR=%{_libdir}
%post -n libx86emu2 -p /sbin/ldconfig
%post -n libx86emu3 -p /sbin/ldconfig
%postun -n libx86emu2 -p /sbin/ldconfig
%postun -n libx86emu3 -p /sbin/ldconfig
%files -n libx86emu2
%files -n libx86emu3
%defattr(-,root,root)
%{_libdir}/*.so.*
%doc README.md
%if %suse_version >= 1500
%license LICENSE*
%else
%doc LICENSE*
%endif
%files -n libx86emu-devel
%defattr(-,root,root)