commit 953ed438b0cb52a28fabb6ac42fb4911341e447a53adfce8bf86c9d013d10eae Author: OBS User unknown Date: Tue Jun 9 15:58:37 2009 +0000 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libx86emu?expand=0&rev=1 diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/libx86emu-1.1.tar.bz2 b/libx86emu-1.1.tar.bz2 new file mode 100644 index 0000000..38454ac --- /dev/null +++ b/libx86emu-1.1.tar.bz2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21bad1a1a36d58216d0f85863600bc5dd74d72500f622d20ead1bc362ba7a694 +size 55523 diff --git a/libx86emu.changes b/libx86emu.changes new file mode 100644 index 0000000..879bb1a --- /dev/null +++ b/libx86emu.changes @@ -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 + diff --git a/libx86emu.spec b/libx86emu.spec new file mode 100644 index 0000000..92cd994 --- /dev/null +++ b/libx86emu.spec @@ -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 diff --git a/ready b/ready new file mode 100644 index 0000000..473a0f4