Accepting request 288457 from system:install:head
submitted by snwint via jenkins OBS-URL: https://build.opensuse.org/request/show/288457 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libx86emu?expand=0&rev=15
This commit is contained in:
parent
0a33e2d712
commit
0bfec5975c
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:21bad1a1a36d58216d0f85863600bc5dd74d72500f622d20ead1bc362ba7a694
|
|
||||||
size 55523
|
|
3
libx86emu-1.5.tar.xz
Normal file
3
libx86emu-1.5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:418217e5cb82291f74f193831027efaca8fed192fa26a6ccafb34d10c881ff2a
|
||||||
|
size 54168
|
@ -1,3 +1,27 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Mar 2 11:46:08 CET 2015 - snwint@suse.com
|
||||||
|
|
||||||
|
- avoid using reserved c++ words
|
||||||
|
- fix typo in Makefile
|
||||||
|
- fix some compiler warnings
|
||||||
|
- prepare for obs auto-submission
|
||||||
|
- add VERSION file back
|
||||||
|
- 1.5
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jan 31 14:47:04 CET 2011 - snwint@suse.de
|
||||||
|
|
||||||
|
- better invalid code detection
|
||||||
|
- fix instruction log for some instructions
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Sep 23 18:07:14 CEST 2010 - snwint@suse.de
|
||||||
|
|
||||||
|
- create VERSION and changelog from git repo
|
||||||
|
- log message
|
||||||
|
- don't use 'i386'
|
||||||
|
- properly decode all descriptor types
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jun 10 10:20:17 CEST 2009 - snwint@suse.de
|
Wed Jun 10 10:20:17 CEST 2009 - snwint@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package libx86emu (Version 1.1)
|
# spec file for package libx86emu
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# Copyright (c) 2008 Steffen Winterfeldt
|
# Copyright (c) 2008 Steffen Winterfeldt
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
@ -20,14 +20,15 @@
|
|||||||
ExclusiveArch: %ix86 x86_64
|
ExclusiveArch: %ix86 x86_64
|
||||||
|
|
||||||
Name: libx86emu
|
Name: libx86emu
|
||||||
|
BuildRequires: xz
|
||||||
|
Summary: A small x86 emulation library.
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
AutoReqProv: on
|
Version: 1.5
|
||||||
Summary: A small x86 emulation library.
|
Release: 0
|
||||||
Version: 1.1
|
|
||||||
Release: 3
|
|
||||||
PreReq: /sbin/ldconfig
|
PreReq: /sbin/ldconfig
|
||||||
Source: libx86emu-1.1.tar.bz2
|
Source: %{name}-%{version}.tar.xz
|
||||||
|
Url: https://github.com/wfeldt/libx86emu
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -41,10 +42,8 @@ Authors:
|
|||||||
Steffen Winterfeldt
|
Steffen Winterfeldt
|
||||||
|
|
||||||
%package -n libx86emu1
|
%package -n libx86emu1
|
||||||
License: BSD-3-Clause
|
|
||||||
Summary: A small x86 emulation library.
|
Summary: A small x86 emulation library.
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
AutoReqProv: on
|
|
||||||
|
|
||||||
%description -n libx86emu1
|
%description -n libx86emu1
|
||||||
Small x86 emulation library with focus of easy usage and extended
|
Small x86 emulation library with focus of easy usage and extended
|
||||||
@ -57,7 +56,6 @@ Authors:
|
|||||||
Steffen Winterfeldt
|
Steffen Winterfeldt
|
||||||
|
|
||||||
%package -n libx86emu-devel
|
%package -n libx86emu-devel
|
||||||
License: BSD-3-Clause
|
|
||||||
Summary: A small x86 emulation library.
|
Summary: A small x86 emulation library.
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Requires: libx86emu1 = %version
|
Requires: libx86emu1 = %version
|
||||||
@ -82,9 +80,6 @@ make LIBDIR=%{_libdir}
|
|||||||
install -d -m 755 %{buildroot}%{_libdir}
|
install -d -m 755 %{buildroot}%{_libdir}
|
||||||
make install DESTDIR=%{buildroot} LIBDIR=%{_libdir}
|
make install DESTDIR=%{buildroot} LIBDIR=%{_libdir}
|
||||||
|
|
||||||
%clean
|
|
||||||
rm -rf %{buildroot}
|
|
||||||
|
|
||||||
%post -n libx86emu1 -p /sbin/ldconfig
|
%post -n libx86emu1 -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -n libx86emu1 -p /sbin/ldconfig
|
%postun -n libx86emu1 -p /sbin/ldconfig
|
||||||
@ -92,20 +87,11 @@ rm -rf %{buildroot}
|
|||||||
%files -n libx86emu1
|
%files -n libx86emu1
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/*.so.*
|
%{_libdir}/*.so.*
|
||||||
|
%doc README LICENSE
|
||||||
|
|
||||||
%files -n libx86emu-devel
|
%files -n libx86emu-devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
/usr/include/x86emu.h
|
%{_includedir}/x86emu.h
|
||||||
%doc README LICENSE
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jun 10 2009 snwint@suse.de
|
|
||||||
- avoid that error in future
|
|
||||||
* Tue Jun 09 2009 coolo@novell.com
|
|
||||||
- fix typo
|
|
||||||
* Tue Jun 09 2009 snwint@suse.de
|
|
||||||
- export only API functions in shared lib
|
|
||||||
* Wed Apr 08 2009 snwint@suse.de
|
|
||||||
- upgraded to version 1.0
|
|
||||||
- align to package conventions
|
|
||||||
|
Loading…
Reference in New Issue
Block a user