2008-12-24 13:56:10 +00:00
|
|
|
Summary: Modular Assembler
|
2005-01-31 17:31:15 +00:00
|
|
|
Name: yasm
|
2012-03-15 13:12:56 +00:00
|
|
|
Version: 1.2.0
|
2012-10-17 12:53:46 +00:00
|
|
|
Release: 3%{?dist}
|
2007-08-03 15:30:24 +00:00
|
|
|
# See COPYING for the detail, there is quite a lot!
|
2008-09-06 22:01:56 +00:00
|
|
|
License: BSD and (GPLv2+ or Artistic or LGPLv2+) and LGPLv2
|
2005-01-31 17:31:15 +00:00
|
|
|
Group: Development/Languages
|
2012-03-15 13:12:56 +00:00
|
|
|
URL: http://yasm.tortall.net/
|
2005-01-31 17:31:15 +00:00
|
|
|
Source: http://www.tortall.net/projects/yasm/releases/yasm-%{version}.tar.gz
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
|
|
|
BuildRequires: bison, byacc, xmlto, gettext-devel
|
2012-10-17 12:53:46 +00:00
|
|
|
Provides: bundled(md5-plumb)
|
2005-01-31 17:31:15 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Yasm is a complete rewrite of the NASM assembler under the "new" BSD License
|
|
|
|
(some portions are under other licenses, see COPYING for details). It is
|
|
|
|
designed from the ground up to allow for multiple assembler syntaxes to be
|
|
|
|
supported (eg, NASM, TASM, GAS, etc.) in addition to multiple output object
|
|
|
|
formats and even multiple instruction sets. Another primary module of the
|
|
|
|
overall design is an optimizer module.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
2008-12-24 13:56:10 +00:00
|
|
|
Summary: Header files and static libraries for the yasm Modular Assembler
|
2005-01-31 17:31:15 +00:00
|
|
|
Group: Development/Libraries
|
2006-08-28 16:40:29 +00:00
|
|
|
Requires: %{name} = %{version}-%{release}
|
2010-08-15 10:43:41 +00:00
|
|
|
Provides: %{name}-static = %{version}-%{release}
|
2012-10-17 12:53:46 +00:00
|
|
|
Provides: bundled(md5-plumb)
|
2005-01-31 17:31:15 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Yasm is a complete rewrite of the NASM assembler under the "new" BSD License
|
|
|
|
(some portions are under other licenses, see COPYING for details). It is
|
|
|
|
designed from the ground up to allow for multiple assembler syntaxes to be
|
|
|
|
supported (eg, NASM, TASM, GAS, etc.) in addition to multiple output object
|
|
|
|
formats and even multiple instruction sets. Another primary module of the
|
|
|
|
overall design is an optimizer module.
|
|
|
|
Install this package if you need to rebuild applications that use yasm.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2007-06-19 11:18:16 +00:00
|
|
|
%setup -q
|
2006-07-14 08:54:00 +00:00
|
|
|
|
2005-01-31 17:31:15 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure
|
2012-03-15 13:12:56 +00:00
|
|
|
make %{?_smp_mflags}
|
2005-01-31 17:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
%install
|
2012-03-15 13:12:56 +00:00
|
|
|
rm -rf %{buildroot}
|
|
|
|
make install DESTDIR=%{buildroot}
|
2005-01-31 17:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
%clean
|
2012-03-15 13:12:56 +00:00
|
|
|
rm -rf %{buildroot}
|
2005-01-31 17:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
2007-02-25 10:26:55 +00:00
|
|
|
%defattr(-,root,root,-)
|
2006-07-14 08:54:00 +00:00
|
|
|
%doc Artistic.txt AUTHORS BSD.txt COPYING GNU*
|
2010-04-28 09:45:04 +00:00
|
|
|
%{_bindir}/vsyasm
|
2005-01-31 17:31:15 +00:00
|
|
|
%{_bindir}/yasm
|
2009-12-07 20:17:03 +00:00
|
|
|
%{_bindir}/ytasm
|
2005-01-31 17:31:15 +00:00
|
|
|
%{_mandir}/man1/yasm.1*
|
|
|
|
|
|
|
|
%files devel
|
2007-02-25 10:26:55 +00:00
|
|
|
%defattr(-,root,root,-)
|
2005-01-31 17:31:15 +00:00
|
|
|
%{_includedir}/libyasm/
|
2007-02-25 10:26:55 +00:00
|
|
|
%{_includedir}/libyasm-stdint.h
|
|
|
|
%{_includedir}/libyasm.h
|
2006-07-14 08:54:00 +00:00
|
|
|
%{_libdir}/libyasm.a
|
2007-02-25 10:26:55 +00:00
|
|
|
%{_mandir}/man7/yasm_*.7*
|
2005-01-31 17:31:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2012-10-17 12:53:46 +00:00
|
|
|
* Wed Oct 17 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.2.0-3
|
|
|
|
- Add missing Provides: bundled(md5-plumb)
|
|
|
|
|
2012-07-22 07:36:05 +00:00
|
|
|
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-15 13:12:56 +00:00
|
|
|
* Thu Mar 15 2012 Matthias Saou <matthias@saou.eu> 1.2.0-1
|
|
|
|
- Update to 1.2.0 (#750234).
|
|
|
|
- Minor spec file cleanups (keep EPEL compatibility, #802162).
|
|
|
|
|
2012-01-14 09:25:58 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-08 07:22:26 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-08-15 10:43:41 +00:00
|
|
|
* Sun Aug 15 2010 Matthias Saou <http://freshrpms.net/> 1.1.0-1
|
|
|
|
- Update to 1.1.0 (#622240).
|
|
|
|
|
|
|
|
* Thu Jul 29 2010 Matthias Saou <http://freshrpms.net/> 1.0.1-2
|
|
|
|
- Provide static sub-package from devel (#609626).
|
|
|
|
|
2010-05-23 14:44:05 +00:00
|
|
|
* Sun May 23 2010 Matthias Saou <http://freshrpms.net/> 1.0.1-1
|
|
|
|
- Update to 1.0.1 (#593250).
|
|
|
|
|
2010-04-28 09:45:04 +00:00
|
|
|
* Wed Apr 28 2010 Matthias Saou <http://freshrpms.net/> 1.0.0-1
|
|
|
|
- Update to 1.0.0 (#580872).
|
|
|
|
- Include new vsyasm binary.
|
|
|
|
|
2009-12-07 20:17:03 +00:00
|
|
|
* Mon Dec 7 2009 Matthias Saou <http://freshrpms.net/> 0.8.0-1
|
|
|
|
- Update to 0.8.0 (#523729).
|
|
|
|
- Include new ytasm binary.
|
|
|
|
|
2009-07-27 08:53:11 +00:00
|
|
|
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 18:08:03 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.7.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-24 13:56:10 +00:00
|
|
|
* Wed Dec 24 2008 Matthias Saou <http://freshrpms.net/> 0.7.2-1
|
|
|
|
- Update to 0.7.2.
|
|
|
|
- Remove useless /sbin/ldconfig calls, as we don't ship any shared library.
|
|
|
|
- Update summary.
|
|
|
|
|
2008-09-06 22:01:56 +00:00
|
|
|
* Sat Sep 6 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.7.1-2
|
2008-12-24 13:56:10 +00:00
|
|
|
- fix license tag so that it doesn't trigger a false positive on the check
|
|
|
|
script.
|
2008-09-06 22:01:56 +00:00
|
|
|
|
2008-05-21 09:04:49 +00:00
|
|
|
* Tue May 20 2008 Matthias Saou <http://freshrpms.net/> 0.7.1-1
|
|
|
|
- Update to 0.7.1.
|
|
|
|
|
2008-05-13 09:12:16 +00:00
|
|
|
* Tue May 13 2008 Matthias Saou <http://freshrpms.net/> 0.7.0-1
|
|
|
|
- Update to 0.7.0.
|
|
|
|
|
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org>
|
2008-02-20 04:54:50 +00:00
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-09-24 10:07:51 +00:00
|
|
|
* Mon Sep 24 2007 Matthias Saou <http://freshrpms.net/> 0.6.2-1
|
|
|
|
- Update to 0.6.2.
|
|
|
|
|
2007-08-23 08:45:39 +00:00
|
|
|
* Thu Aug 23 2007 Matthias Saou <http://freshrpms.net/> 0.6.1-3
|
|
|
|
- Rebuild for new BuildID feature.
|
|
|
|
|
2007-08-03 15:30:24 +00:00
|
|
|
* Fri Aug 3 2007 Matthias Saou <http://freshrpms.net/> 0.6.1-2
|
|
|
|
- Update License field, it wasn't simply "BSD"...
|
|
|
|
|
2007-06-19 11:18:16 +00:00
|
|
|
* Tue Jun 19 2007 Matthias Saou <http://freshrpms.net/> 0.6.1-1
|
|
|
|
- Update to 0.6.1.
|
|
|
|
|
2007-02-25 10:26:55 +00:00
|
|
|
* Sun Feb 25 2007 Matthias Saou <http://freshrpms.net/> 0.6.0-1
|
|
|
|
- Update to 0.6.0.
|
|
|
|
|
2006-08-28 16:40:29 +00:00
|
|
|
* Mon Aug 28 2006 Matthias Saou <http://freshrpms.net/> 0.5.0-2
|
|
|
|
- FC6 rebuild.
|
|
|
|
- Require the same release in the devel sub-package.
|
|
|
|
|
2006-07-14 08:54:00 +00:00
|
|
|
* Fri Jul 14 2006 Matthias Saou <http://freshrpms.net/> 0.5.0-1
|
|
|
|
- Update to 0.5.0.
|
|
|
|
- Remove empty files from %%doc.
|
|
|
|
- There are no more shared libraries, only a static one, so update %%files.
|
|
|
|
|
2006-03-06 15:01:17 +00:00
|
|
|
* Mon Mar 6 2006 Matthias Saou <http://freshrpms.net/> 0.4.0-6
|
|
|
|
- FC5 rebuild.
|
|
|
|
|
2006-02-09 19:24:42 +00:00
|
|
|
* Thu Feb 9 2006 Matthias Saou <http://freshrpms.net/> 0.4.0-5
|
|
|
|
- Rebuild for new gcc/glibc.
|
|
|
|
|
2005-05-22 22:12:29 +00:00
|
|
|
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 0.4.0-4
|
|
|
|
- rebuild on all arches
|
|
|
|
|
2005-04-06 22:13:54 +00:00
|
|
|
* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-02-14 09:27:35 +00:00
|
|
|
* Mon Feb 14 2005 David Woodhouse <dwmw2@infradead.org> 0.4.0-2
|
|
|
|
- Fix corruption in genmacro
|
|
|
|
|
2005-01-31 17:31:15 +00:00
|
|
|
* Fri Jan 28 2005 Matthias Saou <http://freshrpms.net/> 0.4.0-1
|
|
|
|
- Initial RPM release.
|
|
|
|
|