2014-06-18 13:32:29 +00:00
|
|
|
%global antlr_version 3.5.2
|
2014-06-17 18:12:39 +00:00
|
|
|
%global c_runtime_version 3.4
|
2010-02-21 13:18:17 +00:00
|
|
|
%global javascript_runtime_version 3.1
|
2016-09-27 10:37:34 +00:00
|
|
|
%global baserelease 12
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
Summary: ANother Tool for Language Recognition
|
|
|
|
Name: antlr3
|
2016-06-15 11:39:08 +00:00
|
|
|
Epoch: 1
|
2012-02-16 11:09:19 +00:00
|
|
|
Version: %{antlr_version}
|
2014-06-18 17:05:55 +00:00
|
|
|
Release: %{baserelease}%{?dist}
|
2016-06-15 11:39:08 +00:00
|
|
|
License: BSD
|
2014-06-17 18:12:39 +00:00
|
|
|
URL: http://www.antlr3.org/
|
2016-06-15 11:39:08 +00:00
|
|
|
|
2014-06-18 13:32:29 +00:00
|
|
|
Source0: https://github.com/antlr/antlr3/archive/%{antlr_version}.tar.gz
|
2014-06-17 18:12:39 +00:00
|
|
|
#Source2: http://www.antlr3.org/download/Python/antlr_python_runtime-%{python_runtime_version}.tar.gz
|
|
|
|
Source3: http://www.antlr3.org/download/antlr-javascript-runtime-%{javascript_runtime_version}.zip
|
2015-11-24 23:02:23 +00:00
|
|
|
|
2016-06-15 11:39:08 +00:00
|
|
|
Patch0: 0001-java8-fix.patch
|
2015-11-24 23:02:23 +00:00
|
|
|
# Generate OSGi metadata
|
|
|
|
Patch1: osgi-manifest.patch
|
|
|
|
|
2016-06-15 11:39:08 +00:00
|
|
|
BuildRequires: maven-local
|
|
|
|
BuildRequires: mvn(org.antlr:antlr)
|
|
|
|
BuildRequires: mvn(org.antlr:antlr3-maven-plugin)
|
|
|
|
BuildRequires: mvn(org.antlr:ST4)
|
|
|
|
BuildRequires: mvn(org.antlr:stringtemplate)
|
|
|
|
BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|
|
|
BuildRequires: mvn(org.apache.maven:maven-plugin-api)
|
|
|
|
BuildRequires: mvn(org.apache.maven:maven-project)
|
|
|
|
BuildRequires: mvn(org.codehaus.plexus:plexus-compiler-api)
|
|
|
|
BuildRequires: mvn(org.sonatype.oss:oss-parent:pom:)
|
|
|
|
BuildRequires: mvn(org.apache.maven.plugins:maven-plugin-plugin)
|
2015-03-30 13:16:19 +00:00
|
|
|
|
|
|
|
BuildRequires: autoconf
|
|
|
|
BuildRequires: automake
|
|
|
|
BuildRequires: libtool
|
2008-07-01 17:42:02 +00:00
|
|
|
|
2012-01-23 17:07:44 +00:00
|
|
|
# we don't build it now
|
|
|
|
Obsoletes: antlr3-gunit < 3.2-15
|
|
|
|
|
2008-07-01 17:42:02 +00:00
|
|
|
%description
|
|
|
|
ANother Tool for Language Recognition, is a language tool
|
|
|
|
that provides a framework for constructing recognizers,
|
2010-11-25 14:50:08 +00:00
|
|
|
interpreters, compilers, and translators from grammatical
|
2008-07-01 17:42:02 +00:00
|
|
|
descriptions containing actions in a variety of target languages.
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%package tool
|
|
|
|
Summary: ANother Tool for Language Recognition
|
|
|
|
BuildArch: noarch
|
2014-06-20 12:27:26 +00:00
|
|
|
Provides: %{name} = %{epoch}:%{antlr_version}-%{release}
|
|
|
|
Obsoletes: %{name} < %{epoch}:%{antlr_version}-%{release}
|
|
|
|
Requires: %{name}-java = %{epoch}:%{antlr_version}-%{release}
|
2012-02-16 11:09:19 +00:00
|
|
|
|
2015-06-17 12:56:10 +00:00
|
|
|
Provides: ant-antlr3 = %{epoch}:%{antlr_version}-%{release}
|
|
|
|
Obsoletes: ant-antlr3 < %{epoch}:%{antlr_version}-%{release}
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%description tool
|
2010-02-21 13:18:17 +00:00
|
|
|
ANother Tool for Language Recognition, is a language tool
|
|
|
|
that provides a framework for constructing recognizers,
|
2010-11-25 14:50:08 +00:00
|
|
|
interpreters, compilers, and translators from grammatical
|
2010-02-21 13:18:17 +00:00
|
|
|
descriptions containing actions in a variety of target languages.
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%package java
|
|
|
|
Summary: Java run-time support for ANTLR-generated parsers
|
|
|
|
BuildArch: noarch
|
2008-11-06 10:53:46 +00:00
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%description java
|
2010-02-21 13:18:17 +00:00
|
|
|
Java run-time support for ANTLR-generated parsers
|
|
|
|
|
2014-06-18 17:05:55 +00:00
|
|
|
%package javadoc
|
|
|
|
Summary: API documentation for %{name}
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description javadoc
|
|
|
|
%{summary}.
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%package javascript
|
|
|
|
Summary: Javascript run-time support for ANTLR-generated parsers
|
|
|
|
Version: %{javascript_runtime_version}
|
2014-08-31 20:51:38 +00:00
|
|
|
Release: %{antlr_version}.%{baserelease}%{?dist}
|
2012-02-16 11:09:19 +00:00
|
|
|
BuildArch: noarch
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%description javascript
|
2010-02-21 13:18:17 +00:00
|
|
|
Javascript run-time support for ANTLR-generated parsers
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%package C
|
|
|
|
Summary: C run-time support for ANTLR-generated parsers
|
2014-06-17 18:12:39 +00:00
|
|
|
Version: %{c_runtime_version}
|
2014-08-31 20:51:38 +00:00
|
|
|
Release: %{antlr_version}.%{baserelease}%{?dist}
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%description C
|
2010-02-21 13:18:17 +00:00
|
|
|
C run-time support for ANTLR-generated parsers
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%package C-devel
|
|
|
|
Summary: Header files for the C bindings for ANTLR-generated parsers
|
2014-06-20 12:27:26 +00:00
|
|
|
Requires: %{name}-C = %{epoch}:%{c_runtime_version}-%{release}
|
2014-06-18 17:05:55 +00:00
|
|
|
Version: %{c_runtime_version}
|
2014-08-31 20:51:38 +00:00
|
|
|
Release: %{antlr_version}.%{baserelease}%{?dist}
|
2014-06-18 17:05:55 +00:00
|
|
|
|
2010-03-08 07:28:31 +00:00
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%description C-devel
|
2010-03-08 07:28:31 +00:00
|
|
|
Header files for the C bindings for ANTLR-generated parsers
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%package C-docs
|
|
|
|
Summary: API documentation for the C run-time support for ANTLR-generated parsers
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: graphviz
|
|
|
|
BuildRequires: doxygen
|
2014-06-20 12:27:26 +00:00
|
|
|
Requires: %{name}-C = %{epoch}:%{c_runtime_version}-%{release}
|
2014-06-18 17:05:55 +00:00
|
|
|
Version: %{c_runtime_version}
|
2014-08-31 20:51:38 +00:00
|
|
|
Release: %{antlr_version}.%{baserelease}%{?dist}
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
%description C-docs
|
2010-02-21 13:18:17 +00:00
|
|
|
This package contains doxygen documentation with instruction
|
|
|
|
on how to use the C target in ANTLR and complete API description of the
|
|
|
|
C run-time support for ANTLR-generated parsers.
|
|
|
|
|
2014-06-18 13:32:29 +00:00
|
|
|
%package C++-devel
|
|
|
|
Summary: C++ runtime support for ANTLR-generated parsers
|
|
|
|
|
|
|
|
%description C++-devel
|
|
|
|
C++ runtime support for ANTLR-generated parsers.
|
|
|
|
|
2008-07-01 17:42:02 +00:00
|
|
|
%prep
|
2014-06-18 13:32:29 +00:00
|
|
|
%setup -q -n antlr3-%{antlr_version} -a 3
|
2010-02-21 13:18:17 +00:00
|
|
|
sed -i "s,\${buildNumber},`cat %{_sysconfdir}/fedora-release` `date`," tool/src/main/resources/org/antlr/antlr.properties
|
2015-11-24 23:02:23 +00:00
|
|
|
%patch0 -p1
|
|
|
|
%patch1
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2015-06-17 12:56:10 +00:00
|
|
|
# remove pre-built artifacts
|
|
|
|
find -type f -a -name *.jar -delete
|
|
|
|
find -type f -a -name *.class -delete
|
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
%pom_disable_module antlr3-maven-archetype
|
|
|
|
%pom_disable_module gunit
|
|
|
|
%pom_disable_module gunit-maven-plugin
|
2014-06-17 18:12:39 +00:00
|
|
|
%pom_disable_module antlr-complete
|
|
|
|
|
|
|
|
%pom_remove_plugin :maven-source-plugin
|
|
|
|
%pom_remove_plugin :maven-javadoc-plugin
|
2012-01-23 17:07:44 +00:00
|
|
|
|
2012-08-21 23:48:31 +00:00
|
|
|
# compile for target 1.6, see BZ#842572
|
|
|
|
sed -i 's/jsr14/1.6/' antlr3-maven-archetype/src/main/resources/archetype-resources/pom.xml \
|
|
|
|
antlr3-maven-plugin/pom.xml \
|
2014-06-18 13:32:29 +00:00
|
|
|
gunit/pom.xml \
|
|
|
|
gunit-maven-plugin/pom.xml \
|
|
|
|
pom.xml \
|
|
|
|
runtime/Java/pom.xml \
|
|
|
|
tool/pom.xml
|
2012-01-23 17:07:44 +00:00
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
# workarounds bug in filtering (Mark invalid)
|
|
|
|
%pom_xpath_remove pom:resource/pom:filtering
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
%mvn_package :antlr-runtime java
|
|
|
|
%mvn_package : tool
|
2008-07-01 17:42:02 +00:00
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
%mvn_file :antlr antlr3
|
|
|
|
%mvn_file :antlr-runtime antlr3-runtime
|
|
|
|
%mvn_file :antlr-maven-plugin antlr3-maven-plugin
|
|
|
|
|
|
|
|
%build
|
2014-06-17 18:12:39 +00:00
|
|
|
%mvn_build -f
|
2010-10-13 18:01:59 +00:00
|
|
|
|
2010-02-21 13:18:17 +00:00
|
|
|
# Build the C runtime
|
2014-06-18 13:32:29 +00:00
|
|
|
pushd runtime/C
|
|
|
|
autoreconf -i
|
2011-09-09 17:30:19 +00:00
|
|
|
%configure --disable-abiflags --enable-debuginfo \
|
2014-06-17 18:12:39 +00:00
|
|
|
%if 0%{?__isa_bits} == 64
|
2011-09-09 17:30:19 +00:00
|
|
|
--enable-64bit
|
|
|
|
%else
|
|
|
|
%{nil}
|
2010-04-29 09:40:39 +00:00
|
|
|
%endif
|
|
|
|
|
2015-03-30 13:16:19 +00:00
|
|
|
sed -i "s#CFLAGS = .*#CFLAGS = $RPM_OPT_FLAGS#" Makefile
|
2010-02-21 13:18:17 +00:00
|
|
|
make %{?_smp_mflags}
|
|
|
|
doxygen -u # update doxygen configuration file
|
|
|
|
doxygen # build doxygen documentation
|
|
|
|
popd
|
2008-11-06 10:53:46 +00:00
|
|
|
|
2015-06-17 12:56:10 +00:00
|
|
|
# build ant task
|
|
|
|
pushd antlr-ant/main/antlr3-task/
|
|
|
|
export CLASSPATH=$(build-classpath ant)
|
|
|
|
javac -encoding ISO-8859-1 antlr3-src/org/apache/tools/ant/antlr/ANTLR3.java
|
|
|
|
jar cvf ant-antlr3.jar \
|
|
|
|
-C antlr3-src org/apache/tools/ant/antlr/antlib.xml \
|
|
|
|
-C antlr3-src org/apache/tools/ant/antlr/ANTLR3.class
|
|
|
|
popd
|
2014-06-18 13:32:29 +00:00
|
|
|
|
2008-07-01 17:42:02 +00:00
|
|
|
%install
|
2014-06-17 15:44:39 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_mandir}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/antlr
|
2012-01-23 17:07:44 +00:00
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
%mvn_install
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2015-06-17 12:56:10 +00:00
|
|
|
# install ant task
|
|
|
|
install -m 644 antlr-ant/main/antlr3-task/ant-antlr3.jar -D $RPM_BUILD_ROOT%{_javadir}/ant/ant-antlr3.jar
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/ant.d
|
|
|
|
cat > $RPM_BUILD_ROOT%{_sysconfdir}/ant.d/ant-antlr3 << EOF
|
|
|
|
ant/ant-antlr3 antlr3
|
|
|
|
EOF
|
|
|
|
|
2010-02-21 13:18:17 +00:00
|
|
|
# install wrapper script
|
2014-06-17 15:44:39 +00:00
|
|
|
%jpackage_script org.antlr.Tool '' '' 'stringtemplate4.jar:antlr3.jar:antlr3-runtime.jar' antlr3 true
|
2008-11-06 10:53:46 +00:00
|
|
|
|
2010-02-21 13:18:17 +00:00
|
|
|
# install C runtime
|
2014-06-18 13:32:29 +00:00
|
|
|
pushd runtime/C
|
2010-02-21 13:18:17 +00:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/libantlr3c.{a,la}
|
2010-03-08 07:28:31 +00:00
|
|
|
pushd api/man/man3
|
|
|
|
for file in `ls -1 * | grep -vi "^antlr3"`; do
|
2012-02-16 11:09:19 +00:00
|
|
|
mv $file antlr3-$file
|
2010-03-08 07:28:31 +00:00
|
|
|
done
|
2012-09-09 13:19:43 +00:00
|
|
|
sed -i -e 's,^\.so man3/pANTLR3,.so man3/antlr3-pANTLR3,' `grep -rl 'man3/pANTLR3' .`
|
2010-03-08 07:28:31 +00:00
|
|
|
gzip *
|
|
|
|
popd
|
2010-02-21 13:18:17 +00:00
|
|
|
mv api/man/man3 $RPM_BUILD_ROOT%{_mandir}/
|
|
|
|
rmdir api/man
|
|
|
|
popd
|
|
|
|
|
|
|
|
# install javascript runtime
|
|
|
|
pushd antlr-javascript-runtime-%{javascript_runtime_version}
|
|
|
|
install -pm 644 *.js $RPM_BUILD_ROOT%{_datadir}/antlr/
|
|
|
|
popd
|
|
|
|
|
2014-06-18 13:32:29 +00:00
|
|
|
# install C++ runtime (header only)
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_includedir}/%{name}
|
|
|
|
install -pm 644 runtime/Cpp/include/* $RPM_BUILD_ROOT/%{_includedir}/
|
|
|
|
|
2010-02-21 13:18:17 +00:00
|
|
|
%post C -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun C -p /sbin/ldconfig
|
2008-07-01 17:42:02 +00:00
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
%files tool -f .mfiles-tool
|
2014-06-17 18:12:39 +00:00
|
|
|
%doc README.txt tool/{LICENSE.txt,CHANGES.txt}
|
2008-11-10 13:52:51 +00:00
|
|
|
%{_bindir}/antlr3
|
2015-06-17 12:56:10 +00:00
|
|
|
%{_javadir}/ant/ant-antlr3.jar
|
|
|
|
%config(noreplace) %{_sysconfdir}/ant.d/ant-antlr3
|
2008-07-01 17:42:02 +00:00
|
|
|
|
2010-02-21 13:18:17 +00:00
|
|
|
%files C
|
2012-01-23 17:07:44 +00:00
|
|
|
%doc tool/LICENSE.txt
|
2010-03-08 07:28:31 +00:00
|
|
|
%{_libdir}/libantlr3c.so
|
|
|
|
|
|
|
|
%files C-devel
|
2010-02-21 13:18:17 +00:00
|
|
|
%{_mandir}/man3/*
|
2014-06-18 13:32:29 +00:00
|
|
|
%{_includedir}/*.h
|
2010-02-21 13:18:17 +00:00
|
|
|
|
|
|
|
%files C-docs
|
2014-06-18 13:32:29 +00:00
|
|
|
%doc runtime/C/api
|
|
|
|
|
|
|
|
%files C++-devel
|
|
|
|
%doc tool/LICENSE.txt
|
|
|
|
%{_includedir}/*.hpp
|
|
|
|
%{_includedir}/*.inl
|
2010-02-21 13:18:17 +00:00
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
%files java -f .mfiles-java
|
2012-01-23 17:07:44 +00:00
|
|
|
%doc tool/LICENSE.txt
|
2010-02-21 13:18:17 +00:00
|
|
|
|
|
|
|
%files javascript
|
2012-01-23 17:07:44 +00:00
|
|
|
%doc tool/LICENSE.txt
|
2010-02-21 13:18:17 +00:00
|
|
|
%{_datadir}/antlr/
|
|
|
|
|
2014-06-17 18:12:39 +00:00
|
|
|
%files javadoc -f .mfiles-javadoc
|
|
|
|
%doc tool/LICENSE.txt
|
|
|
|
|
2008-07-01 17:42:02 +00:00
|
|
|
%changelog
|
2016-09-27 10:37:34 +00:00
|
|
|
* Tue Sep 27 2016 Michael Simacek <msimacek@redhat.com> - 1:3.5.2-12
|
|
|
|
- Fix Java 8 patch
|
|
|
|
|
2016-06-15 11:39:08 +00:00
|
|
|
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 1:3.5.2-11
|
|
|
|
- Regenerate build-requires
|
|
|
|
|
2016-02-03 16:14:21 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:3.5.2-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-11-24 23:02:23 +00:00
|
|
|
* Tue Nov 24 2015 Mat Booth <mat.booth@redhat.com> - 1:3.5.2-10
|
|
|
|
- Fix OSGi metadata
|
|
|
|
- Delete some commented out sections
|
|
|
|
|
2015-06-17 12:56:10 +00:00
|
|
|
* Wed Jun 17 2015 Mat Booth <mat.booth@redhat.com> - 1:3.5.2-9
|
|
|
|
- Build and ship the antlr3 ant task
|
|
|
|
- Add provides/obsoletes for separate ant-antlr3 package
|
|
|
|
|
2015-06-16 23:58:30 +00:00
|
|
|
* Tue Jun 16 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.5.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-04-29 07:07:18 +00:00
|
|
|
* Wed Apr 29 2015 Michal Srb <msrb@redhat.com> - 1:3.5.2-7
|
|
|
|
- Fix FTBFS (Resolves: rhbz#1204672)
|
|
|
|
|
2015-03-30 13:16:19 +00:00
|
|
|
* Mon Mar 30 2015 Michael Simacek <msimacek@redhat.com> - 1:3.5.2-6
|
|
|
|
- Fix FTBFS
|
|
|
|
|
2015-03-23 10:33:51 +00:00
|
|
|
* Mon Mar 23 2015 Dan Horák <dan[at]danny.cz> - 1:3.5.2-5
|
|
|
|
- update BR - whole autotools chain is required explicitly
|
|
|
|
|
2014-10-31 06:41:57 +00:00
|
|
|
* Fri Oct 31 2014 Yaakov Selkowitz <yselkowi@redhat.com> - 1:3.5.2-4
|
|
|
|
- Avoid timestamp conflicts when updating jar manifest
|
|
|
|
|
2014-08-31 20:51:38 +00:00
|
|
|
* Sun Aug 31 2014 Till Maas <opensource@till.name> - 1:3.5.2-3
|
|
|
|
- Add missing dist tags for subpackages
|
|
|
|
|
2014-08-15 20:38:26 +00:00
|
|
|
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:3.5.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-18 13:32:29 +00:00
|
|
|
* Wed Jun 18 2014 Michael Simacek <msimacek@redhat.com> - 3.5.2-1
|
|
|
|
- Update to upstream version 3.5.2
|
|
|
|
- Build the C runtime from main tarball
|
|
|
|
- Make C++-devel subpackage
|
|
|
|
|
2014-06-17 18:12:39 +00:00
|
|
|
* Tue Jun 17 2014 Michael Simacek <msimacek@redhat.com> - 3.5-1
|
|
|
|
- Update to upstream version 3.5
|
|
|
|
|
2014-06-17 15:44:39 +00:00
|
|
|
* Tue Jun 17 2014 Michael Simacek <msimacek@redhat.com> - 3.4-18
|
|
|
|
- Specfile cleanup
|
|
|
|
|
2014-06-07 00:48:10 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-03-04 08:05:01 +00:00
|
|
|
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.4-16
|
|
|
|
- Use Requires: java-headless rebuild (#1067528)
|
|
|
|
|
2013-08-03 00:54:07 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-13 16:35:53 +00:00
|
|
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2013-02-06 18:29:15 +00:00
|
|
|
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 3.4-13
|
|
|
|
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
|
|
|
- Replace maven BuildRequires with maven-local
|
|
|
|
|
2012-09-09 13:19:43 +00:00
|
|
|
* Sun Sep 09 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.4-12
|
|
|
|
- Fix wrong man page references (see BZ#855619)
|
|
|
|
|
2012-08-21 23:48:31 +00:00
|
|
|
* Tue Aug 21 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.4-11
|
|
|
|
- Now really compile for Java 1.6 everything
|
|
|
|
|
|
|
|
*Sat Aug 18 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.4-10
|
2012-08-18 14:54:56 +00:00
|
|
|
- Explicitly compile for Java 1.5, to (maybe?) fix BZ#842572
|
|
|
|
|
2012-08-06 20:41:37 +00:00
|
|
|
* Mon Aug 6 2012 Alexander Kurtakov <akurtako@redhat.com> 3.4-9
|
|
|
|
- Inject org.antlr.runtime OSGi metadata.
|
|
|
|
- Update BRs to newer versions.
|
|
|
|
|
2012-07-24 14:35:04 +00:00
|
|
|
* Tue Jul 24 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.4-8
|
|
|
|
- Add back requires on stringtemplate for java subpackage
|
|
|
|
|
2012-07-18 16:07:09 +00:00
|
|
|
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-06-26 11:41:18 +00:00
|
|
|
* Tue Jun 26 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.4-6
|
|
|
|
- Fixed missing stringtemplate4 in antlr3 generator classpath
|
|
|
|
- Cleanup of Requires and BuildRequires on antlr2
|
|
|
|
|
2012-02-23 10:40:08 +00:00
|
|
|
* Thu Feb 23 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.4-5
|
|
|
|
- Disable python runtime (incompatible with current antlr version)
|
|
|
|
|
2012-02-22 10:25:14 +00:00
|
|
|
* Wed Feb 22 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.4-4
|
|
|
|
- Fix permissions for egg-info dir (fixes BZ#790499)
|
|
|
|
|
2012-02-16 13:43:41 +00:00
|
|
|
* Thu Feb 16 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.4-3
|
|
|
|
- Use wildcards for installing jars (different results on different releases)
|
|
|
|
|
2012-02-16 11:09:19 +00:00
|
|
|
* Thu Feb 16 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.4-2
|
|
|
|
- Add builnumber plugin to buildrequires
|
|
|
|
- Tab/space cleanup
|
|
|
|
|
2012-01-23 17:07:44 +00:00
|
|
|
* Mon Jan 23 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.4-1
|
|
|
|
- Update antlr version to 3.4
|
|
|
|
- Move to maven3 build, update macros etc
|
|
|
|
- Remove gunit for now
|
|
|
|
|
2012-01-12 21:19:16 +00:00
|
|
|
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-09-09 17:30:19 +00:00
|
|
|
* Fri Sep 09 2011 Dan Horák <dan[at]danny.cz> - 3.2-15
|
|
|
|
- fix build on other arches
|
|
|
|
|
2011-02-08 01:19:02 +00:00
|
|
|
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-11-25 14:50:08 +00:00
|
|
|
* Tue Dec 14 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2-13
|
|
|
|
- Add stringtemplate to Requires of java subpackage
|
|
|
|
- Use tomcat6 for building
|
|
|
|
- Use felix-parent and cleanup BRs on maven plugins
|
|
|
|
|
2010-11-25 14:50:08 +00:00
|
|
|
* Thu Nov 25 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2-12
|
|
|
|
- Move all pom files into java subpackage
|
|
|
|
- Fix pom filenames (Resolves rhbz#655831)
|
|
|
|
- Add java subpackage Requires for gunit subpackage
|
|
|
|
|
2010-10-13 19:16:39 +00:00
|
|
|
* Wed Oct 13 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 3.2-11
|
|
|
|
- non-bootstrap build
|
|
|
|
|
2010-10-13 18:01:59 +00:00
|
|
|
* Wed Oct 13 2010 Tom "spot" Callaway <tcallawa@redhat.com> - 3.2-10
|
|
|
|
- fix pom patch
|
|
|
|
- fix bootstrapping
|
|
|
|
- fix dependencies
|
|
|
|
|
2010-08-11 21:10:53 +00:00
|
|
|
* Wed Aug 11 2010 David Malcolm <dmalcolm@redhat.com> - 3.2-9
|
|
|
|
- recompiling .py files against Python 2.7 (rhbz#623269)
|
|
|
|
|
2010-07-22 00:35:22 +00:00
|
|
|
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 3.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
|
|
|
|
2010-06-21 08:53:27 +00:00
|
|
|
* Thu Jun 17 2010 Lubomir Rintel <lkundrak@v3.sk> - 3.2-7
|
|
|
|
- Add master and runtime poms (#605267)
|
|
|
|
|
2010-05-01 12:02:41 +00:00
|
|
|
* Sat May 01 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.2-6
|
|
|
|
- Patch the Python runtime to print just a warning in case of version mismatch
|
|
|
|
instead of raising an exception (since there is a good change it will work).
|
|
|
|
|
2010-04-29 09:40:39 +00:00
|
|
|
* Thu Apr 22 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.2-5
|
|
|
|
- Build the C runtime with --enable-64bit on x86_64 to avoid undeterministic
|
2010-11-25 14:50:08 +00:00
|
|
|
segfaults caused by possible invalid conversion of 64bit pointers to int32_t
|
2010-04-29 09:40:39 +00:00
|
|
|
|
2010-03-08 07:28:31 +00:00
|
|
|
* Mon Mar 08 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.2-4
|
|
|
|
- Patch Java runtime build to include OSGi meta-information in the manifest
|
|
|
|
(thanks to Mat Booth)
|
|
|
|
- Add "antlr3" prefix to all man pages to prevent namespace conflicts with
|
|
|
|
standard man pages included in the man-pages package
|
|
|
|
- Split headers and man pages into a C-devel subpackage
|
|
|
|
- Fix multiple file ownership of Java runtime and gunit by the tool package
|
|
|
|
|
2010-03-02 13:01:30 +00:00
|
|
|
* Tue Mar 02 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 3.2-3
|
|
|
|
- Rebuilt in non-bootstrap mode.
|
|
|
|
|
2010-02-21 13:18:17 +00:00
|
|
|
* Sun Jan 31 2010 Milos Jakubicek <xjakub@fi.muni.cz> - 3.2-2
|
|
|
|
- Build the doxygen documentation for the C target in a C-docs subpackage
|
|
|
|
- BuildRequires/Requires cleanup across subpackages
|
|
|
|
|
|
|
|
* Sat Jan 30 2010 Milos Jakubicek <xjakub@fi.muni.cz> - 3.2-1
|
|
|
|
- Update to 3.2, bootstrap build.
|
|
|
|
- Build bindings for C and JavaScript as well as gunit and maven plugin.
|
|
|
|
|
2009-07-24 16:55:10 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2014-08-31 20:54:17 +00:00
|
|
|
* Tue Mar 17 2009 Bart Vanbrabant <bart.vanbrabant@zoeloelip.be> - 3.1.1-7
|
2009-03-17 21:15:51 +00:00
|
|
|
- Fix the name of the jar to antlr.jar
|
|
|
|
|
2009-02-24 01:13:59 +00:00
|
|
|
* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-12 23:38:35 +00:00
|
|
|
* Mon Jan 12 2009 Colin Walters <walters@redhat.com> - 3.1.1-5
|
|
|
|
- Add bcel to build path
|
|
|
|
|
2009-01-12 22:01:24 +00:00
|
|
|
* Mon Jan 12 2009 Colin Walters <walters@redhat.com> - 3.1.1-4
|
|
|
|
- Add bcel build dep to version jar name
|
|
|
|
|
2008-11-10 13:52:51 +00:00
|
|
|
* Mon Nov 10 2008 Colin Walters <walters@redhat.com> - 3.1.1-3
|
|
|
|
- Add antlr3 script
|
|
|
|
|
2014-08-31 20:54:17 +00:00
|
|
|
* Thu Nov 6 2008 Bart Vanbrabant <bart.vanbrabant@zoeloelip.be> - 3.1.1-2
|
2008-11-06 11:12:28 +00:00
|
|
|
- Fix the install of the jar (remove the version)
|
|
|
|
|
2008-11-06 10:53:46 +00:00
|
|
|
* Mon Nov 3 2008 Bart Vanbrabant <bart.vanbrabant@zoeloelip.be> - 3.1.1-1
|
|
|
|
- Update to version 3.1.1
|
|
|
|
- Add python runtime subpackage
|
|
|
|
|
2008-07-01 17:42:02 +00:00
|
|
|
* Fri Jun 27 2008 Colin Walters <walters@redhat.com> - 3.0.1-2
|
|
|
|
- Fix some BRs
|
|
|
|
|
|
|
|
* Sun Apr 06 2008 Colin Walters <walters@redhat.com> - 3.0.1-1
|
|
|
|
- First version
|