|
@@ -1,39 +1,34 @@
|
|
-Summary: Complete rewrite of the NASM assembler under the BSD License
|
|
|
|
-Summary(ja): BSDライセンスの元で書き直されたNASMアセンブラ
|
|
|
|
-Name: yasm
|
|
|
|
-Version: 1.0.1
|
|
|
|
-Release: 1%{?_dist_release}
|
|
|
|
-License: BSD
|
|
|
|
-Group: Development/Languages
|
|
|
|
-URL: http://www.tortall.net/projects/yasm/
|
|
|
|
-Source: http://www.tortall.net/projects/yasm/releases/yasm-%{version}.tar.gz
|
|
|
|
|
|
+Summary: YASM Modular Assembler
|
|
|
|
+Summary(ja): YASM モジュール化アセンブラ
|
|
|
|
+Name: yasm
|
|
|
|
+Version: 1.2.0
|
|
|
|
+Release: 1%{?_dist_release}
|
|
|
|
+# See COPYING for the detail, there is quite a lot!
|
|
|
|
+License: BSD and (GPLv2+ or Artistic or LGPLv2+) and LGPLv2
|
|
|
|
+Group: Development/Languages
|
|
|
|
+URL: http://www.tortall.net/projects/yasm/
|
|
|
|
+Source: http://www.tortall.net/projects/yasm/releases/yasm-%{version}.tar.gz
|
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
-BuildRequires: bison byacc
|
|
|
|
-
|
|
|
|
-#%{!?_without_xmlto:BuildRequires:xmlto}
|
|
|
|
-#%{!?_without_gettextdevel:BuildRequires: gettext-devel}
|
|
|
|
-#%{?_without_gettextdevel:BuildRequires: gettext}
|
|
|
|
|
|
+BuildRequires: bison, byacc, xmlto, gettext-devel
|
|
|
|
|
|
Vendor: Project Vine
|
|
Vendor: Project Vine
|
|
Distribution: Vine Linux
|
|
Distribution: Vine Linux
|
|
|
|
|
|
%description
|
|
%description
|
|
-Yasm is a complete rewrite of the NASM assembler under the "new" BSD License.
|
|
|
|
-Yasm currently supports the x86 and AMD64 instruction sets,
|
|
|
|
-accepts NASM and GAS assembler syntaxes,
|
|
|
|
-outputs binary, ELF32, ELF64, 32 and 64-bit Mach-O, RDOFF2, COFF, Win32, and
|
|
|
|
-Win64 object formats, and generates source debugging information
|
|
|
|
-in STABS, DWARF 2, and CodeView8 formats.
|
|
|
|
|
|
+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.
|
|
|
|
|
|
%description -l ja
|
|
%description -l ja
|
|
-Yasm は新しい BSD ライセンスの元で書き直されたNASMアセンブラです。
|
|
|
|
-Yasm は x86 および AMD64 命令セットに対応しており
|
|
|
|
-NASM や GAS assembler の構文を binary, ELF32, ELF64, 32 および
|
|
|
|
-64-bit Mach-O, RDOFF2, COFF, Win32, and Win64
|
|
|
|
-のオブジェクトフォーマットに変換でき、
|
|
|
|
-STABS, DWARF 2, および CodeView8 フォーマット にて
|
|
|
|
-デバッグ情報を出力します。
|
|
|
|
|
|
+Yasm は新しい BSD ライセンスの元で書き直された NASM アセンブラです
|
|
|
|
+(一部のファイルは他のライセンスによります。詳しくは COPYING を参照)。
|
|
|
|
+NASM, TASM, GAS など複数のアセンブラ構文に対応するべく設計されており、
|
|
|
|
+複数の出力フォーマット、複数の命令セットにも対応しています。
|
|
|
|
+また、新たに再設計されたことにより、最適化モジュールも備えています。
|
|
|
|
|
|
%package devel
|
|
%package devel
|
|
Summary: Header files and static libraries for yasm
|
|
Summary: Header files and static libraries for yasm
|
|
@@ -55,22 +50,22 @@ Yasmのヘッダーファイルと 静的ライブラリーです。
|
|
make %{?_smp_mflags}
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
%install
|
|
%install
|
|
-rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
+rm -rf %{buildroot}
|
|
%makeinstall
|
|
%makeinstall
|
|
|
|
|
|
%clean
|
|
%clean
|
|
-rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
+rm -rf %{buildroot}
|
|
|
|
|
|
%files
|
|
%files
|
|
-%defattr(-, root, root, 0755)
|
|
|
|
|
|
+%defattr(-, root, root, -)
|
|
%doc Artistic.txt AUTHORS BSD.txt COPYING GNU*
|
|
%doc Artistic.txt AUTHORS BSD.txt COPYING GNU*
|
|
-%{_bindir}/yasm
|
|
|
|
%{_bindir}/vsyasm
|
|
%{_bindir}/vsyasm
|
|
|
|
+%{_bindir}/yasm
|
|
%{_bindir}/ytasm
|
|
%{_bindir}/ytasm
|
|
%{_mandir}/man1/*
|
|
%{_mandir}/man1/*
|
|
|
|
|
|
%files devel
|
|
%files devel
|
|
-%defattr(-, root, root, 0755)
|
|
|
|
|
|
+%defattr(-, root, root, -)
|
|
%{_includedir}/libyasm/
|
|
%{_includedir}/libyasm/
|
|
%{_includedir}/libyasm-stdint.h
|
|
%{_includedir}/libyasm-stdint.h
|
|
%{_includedir}/libyasm.h
|
|
%{_includedir}/libyasm.h
|
|
@@ -78,6 +73,12 @@ rm -rf $RPM_BUILD_ROOT
|
|
%{_mandir}/man7/*
|
|
%{_mandir}/man7/*
|
|
|
|
|
|
%changelog
|
|
%changelog
|
|
|
|
+* Thu Mar 22 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.2.0-1
|
|
|
|
+- new upstream release; description fix
|
|
|
|
+
|
|
|
|
+* Sun Feb 05 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.0.1-2
|
|
|
|
+- rebuild with Vine6 environment
|
|
|
|
+
|
|
* Tue May 18 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.1-1
|
|
* Tue May 18 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.0.1-1
|
|
- new upstream release
|
|
- new upstream release
|
|
- built with new toolchain
|
|
- built with new toolchain
|