2014-07-19 21:12:57 +00:00
|
|
|
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
|
|
|
|
2020-08-21 09:57:37 +00:00
|
|
|
Summary: A tool for generating scanners (text pattern recognizers)
|
2004-09-09 04:46:06 +00:00
|
|
|
Name: flex
|
2018-09-03 16:20:44 +00:00
|
|
|
Version: 2.6.4
|
2023-01-19 03:34:41 +00:00
|
|
|
Release: 12%{?dist}
|
2012-10-26 14:36:02 +00:00
|
|
|
# parse.c and parse.h are under GPLv3+ with exception which allows
|
|
|
|
# relicensing. Since flex is shipped under BDS-style license,
|
|
|
|
# let's assume that the relicensing was done.
|
|
|
|
# gettext.h (copied from gnulib) is under LGPLv2+
|
|
|
|
License: BSD and LGPLv2+
|
2016-09-13 13:56:11 +00:00
|
|
|
URL: https://github.com/westes/flex
|
2018-09-03 16:20:44 +00:00
|
|
|
Source: https://github.com/westes/flex/releases/download/v%{version}/flex-%{version}.tar.gz
|
2012-07-31 23:40:40 +00:00
|
|
|
|
2018-09-03 16:20:44 +00:00
|
|
|
Patch0: flex-rh1389575.patch
|
2014-04-16 19:01:50 +00:00
|
|
|
|
2007-01-30 14:39:31 +00:00
|
|
|
Requires: m4
|
2018-09-03 16:20:44 +00:00
|
|
|
BuildRequires: gettext gettext-devel bison m4 help2man gcc gcc-c++ automake libtool
|
2020-12-18 22:42:41 +00:00
|
|
|
BuildRequires: make
|
2004-09-09 04:46:06 +00:00
|
|
|
|
2021-05-05 22:49:44 +00:00
|
|
|
Obsoletes: flex-doc < 2.6.4-8
|
|
|
|
|
2004-09-09 04:46:06 +00:00
|
|
|
%description
|
|
|
|
The flex program generates scanners. Scanners are programs which can
|
|
|
|
recognize lexical patterns in text. Flex takes pairs of regular
|
|
|
|
expressions and C code as input and generates a C source file as
|
|
|
|
output. The output file is compiled and linked with a library to
|
|
|
|
produce an executable. The executable searches through its input for
|
|
|
|
occurrences of the regular expressions. When a match is found, it
|
|
|
|
executes the corresponding C code. Flex was designed to work with
|
|
|
|
both Yacc and Bison, and is used by many programs as part of their
|
|
|
|
build process.
|
|
|
|
|
|
|
|
You should install flex if you are going to use your system for
|
|
|
|
application development.
|
|
|
|
|
2010-01-21 16:14:15 +00:00
|
|
|
# We keep the libraries in separate sub-package to allow for multilib
|
|
|
|
# installations of flex.
|
2020-08-21 09:57:37 +00:00
|
|
|
|
|
|
|
%define somajor 2
|
|
|
|
|
|
|
|
%package -n libfl%{somajor}
|
|
|
|
Summary: Libraries for the flex scanner generator
|
|
|
|
|
|
|
|
%description -n libfl%{somajor}
|
|
|
|
flex is a tool for generating scanners.
|
|
|
|
|
|
|
|
This package contains the shared library with default implementations of
|
|
|
|
`main' and `yywrap' functions that binaries using flex can choose to link
|
|
|
|
against instead of implementing on their own.
|
|
|
|
|
|
|
|
%package -n libfl-devel
|
|
|
|
Summary: Development files for the flex scanner generator
|
|
|
|
Requires: libfl%{somajor} = %{version}-%{release}
|
|
|
|
|
|
|
|
%description -n libfl-devel
|
|
|
|
flex is a tool for generating scanners.
|
|
|
|
|
|
|
|
This package contains files required to build programs that use flex
|
|
|
|
libraries.
|
|
|
|
|
|
|
|
%package -n libfl-static
|
|
|
|
Summary: Static libraries for the flex scanner generator
|
|
|
|
# We renamed flex-static to flex-devel in version 2.5.35-15:
|
2012-03-12 19:38:15 +00:00
|
|
|
Obsoletes: flex-static < 2.5.35-15
|
2021-05-05 22:49:44 +00:00
|
|
|
Provides: flex-static = %{version}-%{release}
|
2020-08-21 09:57:37 +00:00
|
|
|
# We renamed flex-devel to libfl-static in version 2.6.4-6. This clarifies
|
|
|
|
# the nature of the package and brings us in line with naming used by SUSE
|
|
|
|
# and Debian:
|
|
|
|
Obsoletes: flex-devel < 2.6.4-6
|
2021-05-05 22:49:44 +00:00
|
|
|
Provides: flex-devel = %{version}-%{release}
|
2020-08-21 09:57:37 +00:00
|
|
|
|
|
|
|
%description -n libfl-static
|
2010-01-21 16:14:15 +00:00
|
|
|
|
2020-08-21 09:57:37 +00:00
|
|
|
flex is a tool for generating scanners.
|
2010-01-21 16:14:15 +00:00
|
|
|
|
2020-08-21 09:57:37 +00:00
|
|
|
This package contains the static library with default implementations of
|
|
|
|
`main' and `yywrap' functions that binaries using flex can choose to
|
|
|
|
statically link against instead of implementing their own.
|
2010-01-21 16:14:15 +00:00
|
|
|
|
2004-09-09 04:46:06 +00:00
|
|
|
%prep
|
2007-01-24 17:22:38 +00:00
|
|
|
%setup -q
|
2008-05-12 11:25:42 +00:00
|
|
|
%patch0 -p1
|
2012-07-31 23:16:49 +00:00
|
|
|
|
2004-09-09 04:46:06 +00:00
|
|
|
%build
|
2018-09-03 16:20:44 +00:00
|
|
|
autoreconf -i
|
2014-07-19 21:12:57 +00:00
|
|
|
%configure --docdir=%{_pkgdocdir} CFLAGS="-fPIC $RPM_OPT_FLAGS"
|
2007-06-25 14:27:27 +00:00
|
|
|
make %{?_smp_mflags}
|
2004-09-09 04:46:06 +00:00
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
2014-07-19 21:12:57 +00:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
2007-01-24 17:22:38 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/%{_infodir}/dir
|
2021-05-05 22:49:44 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT/%{_pkgdocdir}/{README.cvs,TODO,AUTHORS,COPYING,ONEWS}
|
2020-08-21 09:57:37 +00:00
|
|
|
# Exclude libtool archives (.la) as per Fedora packaging guidelines
|
2015-04-13 15:27:39 +00:00
|
|
|
find %{buildroot} -name '*.la' -delete
|
2004-09-09 04:46:06 +00:00
|
|
|
|
|
|
|
( cd ${RPM_BUILD_ROOT}
|
2004-09-09 04:46:09 +00:00
|
|
|
ln -sf flex .%{_bindir}/lex
|
2007-01-24 16:15:21 +00:00
|
|
|
ln -sf flex .%{_bindir}/flex++
|
2004-09-09 04:46:06 +00:00
|
|
|
ln -s flex.1 .%{_mandir}/man1/lex.1
|
|
|
|
ln -s flex.1 .%{_mandir}/man1/flex++.1
|
2004-09-09 04:46:09 +00:00
|
|
|
ln -s libfl.a .%{_libdir}/libl.a
|
2004-09-09 04:46:06 +00:00
|
|
|
)
|
|
|
|
|
2007-01-24 16:15:21 +00:00
|
|
|
%find_lang flex
|
|
|
|
|
2006-03-10 10:43:35 +00:00
|
|
|
%check
|
|
|
|
echo ============TESTING===============
|
2007-03-30 12:18:50 +00:00
|
|
|
make check
|
2006-03-10 10:43:35 +00:00
|
|
|
echo ============END TESTING===========
|
2005-04-10 12:14:37 +00:00
|
|
|
|
2007-02-02 13:40:47 +00:00
|
|
|
%files -f flex.lang
|
2014-07-19 21:12:57 +00:00
|
|
|
%dir %{_pkgdocdir}
|
2017-02-02 01:01:52 +00:00
|
|
|
%license COPYING
|
2014-07-19 21:12:57 +00:00
|
|
|
%{_pkgdocdir}/NEWS
|
2018-09-03 16:20:44 +00:00
|
|
|
%{_pkgdocdir}/README.md
|
2004-09-09 04:46:09 +00:00
|
|
|
%{_bindir}/*
|
2004-09-09 04:46:06 +00:00
|
|
|
%{_mandir}/man1/*
|
2004-09-09 04:46:09 +00:00
|
|
|
%{_includedir}/FlexLexer.h
|
2007-01-24 16:15:21 +00:00
|
|
|
%{_infodir}/flex.info*
|
2004-09-09 04:46:06 +00:00
|
|
|
|
2020-08-21 09:57:37 +00:00
|
|
|
%files -n libfl%{somajor}
|
|
|
|
%{_libdir}/libfl.so.%{somajor}*
|
|
|
|
|
|
|
|
%files -n libfl-devel
|
|
|
|
%{_includedir}/FlexLexer.h
|
|
|
|
%{_libdir}/libfl.so
|
|
|
|
|
|
|
|
%files -n libfl-static
|
2014-07-19 21:12:57 +00:00
|
|
|
%dir %{_pkgdocdir}
|
2017-02-02 01:01:52 +00:00
|
|
|
%license COPYING
|
2010-01-21 16:14:15 +00:00
|
|
|
%{_libdir}/*.a
|
|
|
|
|
2004-09-09 04:46:06 +00:00
|
|
|
%changelog
|
2023-01-19 03:34:41 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-21 03:18:28 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-20 03:08:04 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-21 23:05:27 +00:00
|
|
|
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-05-05 22:49:44 +00:00
|
|
|
* Thu May 06 2021 Arjun Shankar <arjun@redhat.com> - 2.6.4-8
|
|
|
|
- Remove and obsolete the flex-doc subpackage; documention is provided in the
|
|
|
|
main package itself
|
|
|
|
- Specify versions in "Provides:" lines for flex-static and flex-devel
|
|
|
|
|
2021-01-26 05:40:01 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-08-21 09:57:37 +00:00
|
|
|
* Fri Aug 21 2020 Arjun Shankar <arjun@redhat.com> - 2.6.4-6
|
|
|
|
- Re-work flex subpackages and provide shared libraries (#1327851):
|
|
|
|
- Remove and obsolete the flex-devel subpackage containing static libraries
|
|
|
|
- Provide shared libraries in a new subpackage named libfl2
|
|
|
|
- Provide development files in a new subpackage named libfl-devel
|
|
|
|
- Provide static libraries in a new subpackage named libfl-static
|
|
|
|
|
2020-07-27 17:34:32 +00:00
|
|
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-01-28 18:39:36 +00:00
|
|
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-25 00:42:58 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-01-31 19:50:29 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-09-03 16:20:44 +00:00
|
|
|
* Mon Sep 03 2018 Arjun Shankar <arjun@redhat.com> - 2.6.4-1
|
|
|
|
- Rebase to 2.6.4
|
|
|
|
- Fix build failure due to missing include and `reallocarray' prototype
|
|
|
|
- Add gettext-devel, automake and libtool to build dependencies, and
|
|
|
|
execute `autoreconf -i' to regenerate files after patching configure.ac
|
|
|
|
|
2018-07-23 14:58:05 +00:00
|
|
|
* Mon Jul 23 2018 Arjun Shankar <arjun@redhat.com> - 2.6.1-10
|
|
|
|
- Add gcc-c++ as a build-time requirement
|
|
|
|
|
2018-07-13 00:38:51 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-06-27 12:43:04 +00:00
|
|
|
* Wed Jun 27 2018 Arjun Shankar <arjun@redhat.com> - 2.6.1-8
|
|
|
|
- Remove g++ signed/unsigned comparison warning in generated scanner
|
|
|
|
|
2018-02-09 08:04:29 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 2.6.1-7
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-07 09:48:40 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-02 20:38:20 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 08:29:38 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-02 01:01:52 +00:00
|
|
|
* Wed Feb 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 2.6.1-3
|
|
|
|
- Add missing %%license macro
|
|
|
|
|
2016-09-25 19:09:09 +00:00
|
|
|
* Sun Sep 25 2016 Patsy Franklin <pfrankli@redhat.com> - 2.6.1-2
|
|
|
|
- Fix several type comparison issues including BZ #1373601
|
|
|
|
|
2016-09-13 13:56:11 +00:00
|
|
|
* Tue Sep 13 2016 Rex Dieter <rdieter@fedoraproject.org> - 2.6.1-1
|
|
|
|
- Rebase to 2.6.1 (#1318074,#1364943)
|
|
|
|
- update URL (github), drop unused patches (#1238860)
|
|
|
|
|
2016-07-27 17:59:22 +00:00
|
|
|
* Wed Jul 27 2016 Patsy Franklin <pfrankli@redhat.com> - 2.6.0-2
|
|
|
|
Fix wrong type on num_to_read. BZ #1360744
|
|
|
|
|
2016-03-11 19:53:33 +00:00
|
|
|
* Thu Mar 10 2016 Patsy Franklin <pfrankli@redhat.com> - 2.6.0-1
|
|
|
|
- Rebase to 2.6.0
|
|
|
|
- Pick up an additional patch requested in BZ #1281976
|
|
|
|
|
2016-02-03 20:35:04 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.5.39-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-10-30 04:36:01 +00:00
|
|
|
* Thu Oct 29 2015 Patsy Franklin <pfrankli@redhat.com> - 2.5.39-3
|
|
|
|
- Remove obsolete patches from git repository. (BZ #1238860)
|
|
|
|
|
2015-06-17 06:26:07 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.39-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-13 15:27:39 +00:00
|
|
|
* Mon Apr 13 2015 Patsy Franklin <pfrankli@redhat.com> - 2.5.39-1
|
|
|
|
- Rebase to 2.5.39
|
|
|
|
|
2014-08-16 12:36:42 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-19 21:12:57 +00:00
|
|
|
* Sat Jul 19 2014 Ville Skyttä <ville.skytta@iki.fi> - 2.5.37-7
|
|
|
|
- Make docdir unversioned where appropriate (#993754)
|
|
|
|
- Install docs to one common package doc dir, drop separate one for -doc
|
|
|
|
- Include COPYING in -devel
|
|
|
|
- Fix bogus dates in %%changelog
|
|
|
|
|
2014-06-07 12:17:03 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-04-16 19:01:50 +00:00
|
|
|
* Wed Apr 16 2014 Patsy Franklin <pfrankli@redhat.com> - 2.5.37-5
|
|
|
|
- Add a patch to remove obsolete bison constructs YYLEX_PARAM and
|
2018-02-09 08:04:29 +00:00
|
|
|
YYPARSE_PARAM. Use %%lex-param, %%parse-param, or %%param.
|
2014-04-16 19:01:50 +00:00
|
|
|
|
2013-09-03 17:56:35 +00:00
|
|
|
* Tue Sep 3 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-4
|
|
|
|
- Add a patch for "comparison between signed and unsigned" warnings
|
|
|
|
that GCC produces when compiling flex-generated scanners
|
|
|
|
(flex-2.5.37-types.patch)
|
|
|
|
|
2013-08-03 11:25:03 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.37-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-04 13:43:21 +00:00
|
|
|
* Thu Apr 4 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-2
|
|
|
|
- Update config.sub and config.guess to support aarch64
|
|
|
|
|
2013-03-20 12:37:21 +00:00
|
|
|
* Wed Mar 20 2013 Petr Machata <pmachata@redhat.com> - 2.5.37-1
|
|
|
|
- Rebase to 2.5.37
|
|
|
|
|
2013-02-13 21:45:51 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.36-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-10-26 14:37:23 +00:00
|
|
|
* Fri Oct 26 2012 Petr Machata <pmachata@redhat.com> - 2.5.36-2
|
|
|
|
- Bump for rebuild
|
|
|
|
|
2012-07-31 23:16:49 +00:00
|
|
|
* Tue Jul 31 2012 Petr Machata <pmachata@redhat.com> - 2.5.36-1
|
|
|
|
- Rebase to 2.5.36
|
|
|
|
- Drop flex-2.5.35-sign.patch, flex-2.5.35-hardening.patch,
|
|
|
|
flex-2.5.35-gcc44.patch, flex-2.5.35-missing-prototypes.patch
|
|
|
|
- Add flex-2.5.36-bison-2.6.1.patch
|
|
|
|
- Add a subpackage doc
|
|
|
|
- Resolves #842073
|
|
|
|
|
2012-07-19 02:37:48 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-12 19:38:15 +00:00
|
|
|
* Mon Mar 12 2012 Petr Machata <pmachata@redhat.com> - 2.5.35-15
|
|
|
|
- Rename flex-static to flex-devel so that it gets to repositories of
|
|
|
|
minor multi-lib arch (i386 on x86_64 etc.)
|
|
|
|
- Resolves: #674301
|
|
|
|
|
2012-01-13 02:31:31 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-08 20:29:49 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-08-17 13:15:12 +00:00
|
|
|
* Tue Aug 17 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-12
|
|
|
|
- Drop the dependency of core package on flex-static.
|
|
|
|
- Resolves: #624549
|
|
|
|
|
2010-07-14 11:24:13 +00:00
|
|
|
* Wed Jul 14 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-11
|
|
|
|
- Forgot that the changes in flex.skl won't propagate to skel.c
|
|
|
|
- Resolves: #612465
|
|
|
|
|
2010-07-13 15:57:53 +00:00
|
|
|
* Tue Jul 13 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-10
|
|
|
|
- Declare yyget_column and yyset_column in reentrant mode.
|
|
|
|
- Resolves: #612465
|
|
|
|
|
2010-01-21 16:14:15 +00:00
|
|
|
* Wed Jan 20 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-9
|
|
|
|
- Move libraries into a sub-package of their own.
|
|
|
|
|
2010-01-12 14:09:08 +00:00
|
|
|
* Tue Jan 12 2010 Petr Machata <pmachata@redhat.com> - 2.5.35-8
|
|
|
|
- Add source URL
|
|
|
|
|
2009-08-24 12:26:18 +00:00
|
|
|
* Mon Aug 24 2009 Petr Machata <pmachata@redhat.com> - 2.5.35-7
|
|
|
|
- Fix installation with --excludedocs
|
|
|
|
- Resolves: #515928
|
|
|
|
|
2009-07-24 22:53:10 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-04-20 14:59:18 +00:00
|
|
|
* Mon Apr 20 2009 Debarshi Ray <rishi@fedoraproject.org> - 2.5.35-5
|
2009-04-20 11:26:12 +00:00
|
|
|
- Resolves: #496548.
|
|
|
|
|
|
|
|
* Mon Apr 20 2009 Petr Machata <pmachata@redhat.com> - 2.5.35-4
|
|
|
|
- Get rid of warning caused by ignoring return value of fwrite() in
|
|
|
|
ECHO macro. Debian patch.
|
|
|
|
- Resolves: #484961
|
|
|
|
|
2009-02-24 17:28:55 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.35-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-05-12 11:25:42 +00:00
|
|
|
* Mon May 12 2008 Petr Machata <pmachata@redhat.com> - 2.5.35-2
|
|
|
|
- Resolves: #445950
|
|
|
|
|
2008-02-27 17:27:56 +00:00
|
|
|
* Wed Feb 27 2008 Petr Machata <pmachata@redhat.com> - 2.5.35-1
|
|
|
|
- Rebase to 2.5.35. Drop two patches.
|
|
|
|
- Resolves: #434961
|
|
|
|
- Resolves: #435047
|
|
|
|
|
2008-02-25 17:29:44 +00:00
|
|
|
* Mon Feb 25 2008 Petr Machata <pmachata@redhat.com> - 2.5.34-1
|
|
|
|
- Rebase to 2.5.34. Drop five patches.
|
|
|
|
- Resolves: #434676
|
|
|
|
|
2008-02-11 12:24:05 +00:00
|
|
|
* Mon Feb 11 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-17
|
|
|
|
- Generate prototypes for accessor functions. Upstream patch.
|
|
|
|
- Related: #432203
|
|
|
|
|
2008-02-04 13:05:06 +00:00
|
|
|
* Mon Feb 4 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-16
|
|
|
|
- Fix comparison between signed and unsigned in generated scanner.
|
|
|
|
Patch by Roland McGrath.
|
|
|
|
- Resolves: #431151
|
|
|
|
|
2008-01-15 17:22:05 +00:00
|
|
|
* Tue Jan 15 2008 Stepan Kasal <skasal@redhat.com> - 2.5.33-15
|
|
|
|
- Do not run autogen.sh, it undoes the effect of includedir patch.
|
|
|
|
- Adapt test-linedir-r.patch so that it fixes Makefile.in and works
|
|
|
|
even though autogen.sh is not run.
|
|
|
|
|
2008-01-14 10:26:35 +00:00
|
|
|
* Thu Jan 10 2008 Stepan Kasal <skasal@redhat.com> - 2.5.33-14
|
|
|
|
- Insert the "-fPIC" on configure command-line.
|
|
|
|
- Drop the -fPIC patch.
|
|
|
|
|
2008-01-08 15:16:43 +00:00
|
|
|
* Tue Jan 8 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-13
|
|
|
|
- Patch with -fPIC only after the autogen.sh is run.
|
|
|
|
|
2008-01-03 14:13:47 +00:00
|
|
|
* Thu Jan 3 2008 Petr Machata <pmachata@redhat.com> - 2.5.33-12
|
|
|
|
- Run autogen.sh before the rest of the build.
|
2008-01-03 14:45:41 +00:00
|
|
|
- Add BR autoconf automake gettext-devel.
|
2008-01-03 14:13:47 +00:00
|
|
|
|
2007-08-30 11:52:25 +00:00
|
|
|
* Thu Aug 30 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-11
|
|
|
|
- Add BR gawk
|
|
|
|
- Fix use of awk in one of the tests
|
|
|
|
|
2007-08-29 05:25:57 +00:00
|
|
|
* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.5.33-10
|
|
|
|
- Rebuild for selinux ppc32 issue.
|
|
|
|
|
2007-06-25 14:27:27 +00:00
|
|
|
* Fri Jun 22 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-9
|
|
|
|
- Remove wrong use of @includedir@ in Makefile.in.
|
|
|
|
- Spec cleanups.
|
|
|
|
- Related: #225758
|
|
|
|
|
2007-06-22 11:18:29 +00:00
|
|
|
* Fri Jun 22 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-8
|
|
|
|
- Don't emit yy-prefixed variables in C++ mode. Thanks Srinivas Aji.
|
|
|
|
- Related: #242742
|
|
|
|
- Related: #244259
|
|
|
|
|
2007-05-11 15:49:39 +00:00
|
|
|
* Fri May 11 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-7
|
2007-05-11 15:16:29 +00:00
|
|
|
- Allow joining short options into one commandline argument.
|
|
|
|
- Resolves: #239695
|
|
|
|
|
2007-03-30 12:18:50 +00:00
|
|
|
* Fri Mar 30 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-5
|
|
|
|
- Make yy-prefixed variables available to scanner even with -P.
|
|
|
|
|
2007-02-02 13:40:47 +00:00
|
|
|
* Fri Feb 2 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-4
|
|
|
|
- Use %%find_lang to package locale files.
|
|
|
|
|
2007-01-31 15:01:38 +00:00
|
|
|
* Wed Jan 31 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-3
|
|
|
|
- Compile with -fPIC.
|
|
|
|
|
2007-01-30 14:39:31 +00:00
|
|
|
* Tue Jan 30 2007 Petr Machata <pmachata@redaht.com> - 2.5.33-2
|
|
|
|
- Add Requires:m4.
|
|
|
|
|
2007-01-24 16:15:21 +00:00
|
|
|
* Fri Jan 19 2007 Petr Machata <pmachata@redhat.com> - 2.5.33-1
|
|
|
|
- Rebase to 2.5.33
|
|
|
|
|
2006-07-18 21:11:42 +00:00
|
|
|
* Tue Jul 18 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-41
|
|
|
|
- Reverting posix patch. Imposing posix because of warning is too
|
|
|
|
much of a restriction.
|
|
|
|
|
2006-07-16 20:03:50 +00:00
|
|
|
* Sun Jul 16 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-40
|
|
|
|
- using dist tag
|
|
|
|
|
2006-07-14 13:37:18 +00:00
|
|
|
* Fri Jul 14 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-39
|
|
|
|
- fileno is defined in posix standard, so adding #define _POSIX_SOURCE
|
|
|
|
to compile without warnings (#195687)
|
|
|
|
- dropping 183098 test, since the original bug was already resolved
|
|
|
|
|
2006-07-12 05:49:10 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-38.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-03-10 10:45:12 +00:00
|
|
|
* Fri Mar 10 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-38
|
2006-03-10 10:43:35 +00:00
|
|
|
- Caught the real cause of #183098. It failed because the parser
|
|
|
|
built with `flex -f' *sometimes* made it into the final package, and
|
|
|
|
-f assumes seven-bit tables. Solution has two steps. Move `make
|
|
|
|
bigcheck' to `%%check' part, where it belongs anyway, so that flexes
|
|
|
|
built during `make bigcheck' don't overwrite original build. And
|
|
|
|
change makefile so that `make bigcheck' will *always* execute *all*
|
|
|
|
check commands.
|
|
|
|
|
2006-03-08 13:22:49 +00:00
|
|
|
* Wed Mar 8 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-37.4
|
2006-03-08 12:22:12 +00:00
|
|
|
- adding test for #183098 into build process
|
|
|
|
|
2014-07-19 21:12:57 +00:00
|
|
|
* Thu Mar 2 2006 Petr Machata <pmachata@redhat.com> - 2.5.4a-37.3
|
2006-03-02 15:37:50 +00:00
|
|
|
- rebuilt, no changes inside. In hunt for #183098
|
|
|
|
|
2006-02-11 02:44:48 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-37.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 11:40:40 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 2.5.4a-37.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2014-07-19 21:12:57 +00:00
|
|
|
* Thu Feb 02 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-37
|
2006-02-02 18:16:10 +00:00
|
|
|
- adding `make bigcheck' into build process. Refreshing initscan.c to
|
|
|
|
make this possible.
|
|
|
|
|
2006-01-18 10:40:44 +00:00
|
|
|
* Wed Jan 18 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-36
|
|
|
|
- Applying Jonathan S. Shapiro's bugfix-fixing patch. More std:: fixes
|
|
|
|
and better way to silent warnings under gcc.
|
|
|
|
|
2006-01-13 16:18:07 +00:00
|
|
|
* Fri Jan 13 2006 Petr Machata <pmachata@redhat.com> 2.5.4a-35
|
|
|
|
- Adding `std::' prefixes, got rid of `using namespace std'. (#115354)
|
|
|
|
- Dummy use of `yy_flex_realloc' to silent warnings. (#30943)
|
|
|
|
- Adding URL of flex home page to spec (#142675)
|
|
|
|
|
2005-12-18 20:24:33 +00:00
|
|
|
* Sun Dec 18 2005 Jason Vas Dias<jvdias@redhat.com>
|
2006-01-13 16:18:07 +00:00
|
|
|
- rebuild with 'flex-pic.patch' to enable -pie links
|
2005-12-18 20:38:47 +00:00
|
|
|
on x86_64 (patch from Jesse Keating) .
|
2005-12-18 20:24:33 +00:00
|
|
|
|
2005-12-09 22:40:26 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-04-10 12:14:37 +00:00
|
|
|
* Sun Apr 10 2005 Jakub Jelinek <jakub@redhat.com> 2.5.4a-34
|
|
|
|
- rebuilt with GCC 4
|
|
|
|
- add %%check script
|
|
|
|
|
2004-09-09 04:49:12 +00:00
|
|
|
* Tue Aug 24 2004 Warren Togami <wtogami@redhat.com> 2.5.4a-33
|
|
|
|
- #116407 BR byacc
|
|
|
|
|
2004-09-09 04:49:09 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:49:04 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:47:51 +00:00
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:47:26 +00:00
|
|
|
* Wed Jan 22 2003 Tim Powers <timp@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Tue Jan 7 2003 Jeff Johnson <jbj@redhat.com> 2.5.4a-28
|
|
|
|
- don't include -debuginfo files in package.
|
|
|
|
|
|
|
|
* Mon Nov 4 2002 Than Ngo <than@redhat.com> 2.5.4a-27
|
|
|
|
- YY_NO_INPUT patch from Jean Marie
|
|
|
|
|
2004-09-09 04:47:02 +00:00
|
|
|
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 04:46:59 +00:00
|
|
|
* Tue Jun 18 2002 Than Ngo <than@redhat.com> 2.5.4a-25
|
|
|
|
- don't forcibly strip binaries
|
|
|
|
|
|
|
|
* Thu May 23 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
2004-09-09 04:46:43 +00:00
|
|
|
* Tue Apr 2 2002 Than Ngo <than@redhat.com> 2.5.4a-23
|
|
|
|
- More ISO C++ 98 fixes (#59670)
|
|
|
|
|
2004-09-09 04:46:35 +00:00
|
|
|
* Tue Feb 26 2002 Than Ngo <than@redhat.com> 2.5.4a-22
|
|
|
|
- rebuild in new enviroment
|
|
|
|
|
|
|
|
* Wed Feb 20 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5.4a-21
|
|
|
|
- More ISO C++ 98 fixes (#59670)
|
|
|
|
|
|
|
|
* Tue Feb 19 2002 Bernhard Rosenkraenzer <bero@redhat.com> 2.5.4a-20
|
|
|
|
- Fix ISO C++ 98 compliance (#59670)
|
|
|
|
|
|
|
|
* Wed Jan 23 2002 Than Ngo <than@redhat.com> 2.5.4a-19
|
|
|
|
- fixed #58643
|
|
|
|
|
|
|
|
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
|
|
|
|
- automated rebuild
|
|
|
|
|
|
|
|
* Tue Nov 6 2001 Than Ngo <than@redhat.com> 2.5.4a-17
|
|
|
|
- fixed for working with gcc 3 (bug #55778)
|
|
|
|
|
|
|
|
* Sat Oct 13 2001 Than Ngo <than@redhat.com> 2.5.4a-16
|
|
|
|
- fix wrong License (bug #54574)
|
|
|
|
|
2004-09-09 04:46:23 +00:00
|
|
|
* Sun Jun 24 2001 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- Bump release + rebuild.
|
|
|
|
|
2004-09-09 04:46:09 +00:00
|
|
|
* Sat Sep 30 2000 Bernhard Rosenkraenzer <bero@redhat.com>
|
|
|
|
- Fix generation of broken code (conflicting isatty() prototype w/ glibc 2.2)
|
|
|
|
This broke, among other things, the kdelibs 2.0 build
|
|
|
|
- Fix source URL
|
|
|
|
|
|
|
|
* Thu Sep 7 2000 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- FHS packaging (64bit systems need to use libdir).
|
|
|
|
|
2004-09-09 04:46:06 +00:00
|
|
|
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
|
|
|
|
- automatic rebuild
|
|
|
|
|
|
|
|
* Tue Jun 6 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- rebuild, FHS stuff.
|
|
|
|
|
|
|
|
* Thu Feb 3 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- handle compressed man pages
|
|
|
|
|
|
|
|
* Fri Jan 28 2000 Bill Nottingham <notting@redhat.com>
|
|
|
|
- add a libl.a link to libfl.a
|
|
|
|
|
|
|
|
* Wed Aug 25 1999 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- avoid uninitialized variable warning (Erez Zadok).
|
|
|
|
|
|
|
|
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com>
|
|
|
|
- auto rebuild in the new build environment (release 6)
|
|
|
|
|
|
|
|
* Fri Dec 18 1998 Bill Nottingham <notting@redhat.com>
|
|
|
|
- build for 6.0 tree
|
|
|
|
|
|
|
|
* Mon Aug 10 1998 Jeff Johnson <jbj@redhat.com>
|
|
|
|
- build root
|
|
|
|
|
|
|
|
* Mon Apr 27 1998 Prospector System <bugs@redhat.com>
|
|
|
|
- translations modified for de, fr, tr
|
|
|
|
|
|
|
|
* Thu Oct 23 1997 Donnie Barnes <djb@redhat.com>
|
|
|
|
- updated from 2.5.4 to 2.5.4a
|
|
|
|
|
|
|
|
* Mon Jun 02 1997 Erik Troan <ewt@redhat.com>
|
|
|
|
- built against glibc
|
|
|
|
|
|
|
|
* Thu Mar 20 1997 Michael Fulbright <msf@redhat.com>
|
|
|
|
- Updated to v. 2.5.4
|