SHA256
1
0
forked from pool/libx86emu
OBS User unknown 2009-06-09 15:58:37 +00:00 committed by Git OBS Bridge
commit 953ed438b0
6 changed files with 145 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
libx86emu-1.1.tar.bz2 Normal file
View File

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

11
libx86emu.changes Normal file
View File

@ -0,0 +1,11 @@
-------------------------------------------------------------------
Tue Jun 9 17:26:49 CEST 2009 - snwint@suse.de
- export only API functions in shared lib
-------------------------------------------------------------------
Wed Apr 8 12:46:50 CEST 2009 - snwint@suse.de
- upgraded to version 1.0
- align to package conventions

107
libx86emu.spec Normal file
View File

@ -0,0 +1,107 @@
#
# spec file for package libx86emu (Version 1.1)
#
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2008 Steffen Winterfeldt
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
ExclusiveArch: %ix86 x86_64
Name: libx86emu
License: BSD 3-Clause
Group: System/Libraries
AutoReqProv: on
Summary: A small x86 emulation library.
Version: 1.1
Release: 1
PreReq: /sbin/ldconfig
Source: libx86emu-1.1.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Small x86 emulation library with focus of easy usage and extended
execution logging functions.
Authors:
--------
Steffen Winterfeldt
%package -n libx86emu1
License: BSD 3-Clause
Summary: A small x86 emulation library.
Group: System/Libraries
AutoReqProv: on
%description -n libx86emu1
Small x86 emulation library with focus of easy usage and extended
execution logging functions.
Authors:
--------
Steffen Winterfeldt
%package -n libx86emu-devel
License: BSD 3-Clause
Summary: A small x86 emulation library.
Group: System/Libraries
Requires: libx86emu1 = %version
%description -n libx86emu-devel
Small x86 emulation library with focus of easy usage and extended
execution logging functions.
Authors:
--------
Steffen Winterfeldt
%prep
%setup -n libx86emu-1.0
%build
make LIBDIR=%{_libdir}
%install
install -d -m 755 %{buildroot}%{_libdir}
make install DESTDIR=%{buildroot} LIBDIR=%{_libdir}
%clean
rm -rf %{buildroot}
%post -n libx86emu1 -p /sbin/ldconfig
%postun -n libx86emu1 -p /sbin/ldconfig
%files -n libx86emu1
%defattr(-,root,root)
%{_libdir}/*.so.*
%files -n libx86emu-devel
%defattr(-,root,root)
%{_libdir}/*.so
/usr/include/x86emu.h
%doc README LICENSE
%changelog
* 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

0
ready Normal file
View File