byacc-vl.spec 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. %define byaccdate 20200330
  2. Summary: A public domain Yacc parser generator.
  3. Summary(ja): パブリックドメイン yacc 構文解析器生成プログラム
  4. Name: byacc
  5. Version: 1.9
  6. Release: 28%{?_dist_release}
  7. Group: Development/Tools
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. License: public domain
  11. # The source is taken from FreeBSD's CVS as of Thu Sep 28 2000
  12. URL: https://invisible-island.net/byacc/byacc.html
  13. Source: ftp://invisible-island.net/byacc/byacc-%{byaccdate}.tgz
  14. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  15. %description
  16. Byacc (Berkeley Yacc) is a public domain LALR parser generator which
  17. is used by many programs during their build process.
  18. If you are going to do development on your system, you will want to install
  19. this package.
  20. %description -l ja
  21. byacc (Berkeley Yacc) はパブリックドメインの LALR 構文解析器生成
  22. プログラムで,多くのプログラムのビルド過程で使われます.
  23. システムで開発を行う場合は,このパッケージをインストールする
  24. 必要があるでしょう.
  25. %prep
  26. %setup -q -n byacc-%{byaccdate}
  27. # Revert default stack size back to 10000
  28. # https://bugzilla.redhat.com/show_bug.cgi?id=743343
  29. find . -type f -name \*.c -print0 |
  30. xargs -0 sed -i 's/YYSTACKSIZE 500/YYSTACKSIZE 10000/g'
  31. %build
  32. %configure --disable-dependency-tracking
  33. %{__make}
  34. %check
  35. echo ====================TESTING=========================
  36. make check
  37. echo ====================TESTING END=====================
  38. %install
  39. rm -rf %{buildroot}
  40. %make_install
  41. ln -s yacc %{buildroot}%{_bindir}/byacc
  42. ln -s yacc.1 %{buildroot}%{_mandir}/man1/byacc.1
  43. %clean
  44. rm -rf %{buildroot}
  45. %files
  46. %defattr(-,root,root)
  47. %{_bindir}/yacc
  48. %{_bindir}/byacc
  49. %{_mandir}/man1/yacc.1*
  50. %{_mandir}/man1/byacc.1*
  51. %changelog
  52. * Sun Jul 12 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.9-28
  53. - updated tarball from CVS.
  54. * Sun Aug 24 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.9-27
  55. - rebuild with VineSeed environment
  56. * Sun Apr 17 2011 Shu KONNO <owa@bg.wakwak.com> 1.9-26
  57. - rebuilt with rpm-4.8.1-3
  58. * Wed Feb 17 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.9-25
  59. - rebuilt with new toolchain
  60. * Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9-24
  61. - spec in utf-8
  62. * Sun Apr 06 2008 Kazutaka HARADA <Kazutaka@dc4.so-net.ne.jp> 1.9-23
  63. - update source and sync with fedora development
  64. - drop unnecessary patches
  65. - apply new versioning policy
  66. * Sun Jun 12 2005 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.9-22vl3
  67. - s/Copyright/License/
  68. * Tue Apr 8 2003 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 1.9-22vl2
  69. - rebuild
  70. * Fri Dec 06 2002 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 1.9-22vl1
  71. - based on 1.9-22 from Rawhide and built for Vine Linux
  72. - added Japanese summary and description
  73. * Fri Jun 21 2002 Tim Powers <timp@redhat.com>
  74. - automated rebuild
  75. * Thu May 23 2002 Tim Powers <timp@redhat.com>
  76. - automated rebuild
  77. * Wed Jan 09 2002 Tim Powers <timp@redhat.com>
  78. - automated rebuild
  79. * Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
  80. - Bump release + rebuild.
  81. * Fri Jan 05 2001 Preston Brown <pbrown@redhat.com>
  82. - security patch for tmpfile creation from Olaf Kirch <okir@lst.de>
  83. * Fri Sep 29 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  84. - Update to the version in FreeBSD CVS - it's actively maintained, unlike
  85. the 1993 4BSD version we used to have
  86. * Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
  87. - automatic rebuild
  88. * Wed Jun 28 2000 Bill Nottingham <notting@redhat.com>
  89. - fix perms in tarball
  90. * Mon Jun 19 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  91. - FHSify
  92. - handle RPM_OPT_FLAGS
  93. * Sat May 6 2000 Bill Nottingham <notting@redhat.com>
  94. - fix yacc for ia64
  95. * Fri Feb 4 2000 Bernhard Rosenkraenzer <bero@redhat.com>
  96. - rebuild to compress man pages
  97. - fix up manpage symlink
  98. * Wed Apr 07 1999 Preston Brown <pbrown@redhat.com>
  99. - man page fixed.
  100. * Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
  101. - auto rebuild in the new build environment (release 10)
  102. * Thu Dec 17 1998 Cristian Gafton <gafton@redhat.com>
  103. - build for glibc 2.1
  104. * Tue Aug 11 1998 Jeff Johnson <jbj@redhat.com>
  105. - build root
  106. * Tue May 05 1998 Prospector System <bugs@redhat.com>
  107. - translations modified for de, fr, tr
  108. * Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
  109. - various spec file cleanups
  110. * Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
  111. - built against glibc