diff --git a/.antlr.metadata b/.antlr.metadata
new file mode 100644
index 0000000..8f278a0
--- /dev/null
+++ b/.antlr.metadata
@@ -0,0 +1 @@
+802655c343cc7806aaf1ec2177a0e663ff209de1 SOURCES/antlr-2.7.7.tar.gz
diff --git a/README.md b/README.md
deleted file mode 100644
index 0e7897f..0000000
--- a/README.md
+++ /dev/null
@@ -1,5 +0,0 @@
-The master branch has no content
- 
-Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6
- 
-If you find this file in a distro specific branch, it means that no content has been checked in yet
diff --git a/SOURCES/antlr-2.7.7-newgcc.patch b/SOURCES/antlr-2.7.7-newgcc.patch
new file mode 100644
index 0000000..c501bd0
--- /dev/null
+++ b/SOURCES/antlr-2.7.7-newgcc.patch
@@ -0,0 +1,12 @@
+diff -up ./lib/cpp/antlr/CharScanner.hpp.sav ./lib/cpp/antlr/CharScanner.hpp
+--- ./lib/cpp/antlr/CharScanner.hpp.sav	2009-03-20 14:42:43.000000000 -0400
++++ ./lib/cpp/antlr/CharScanner.hpp	2009-03-20 14:43:29.000000000 -0400
+@@ -11,6 +11,8 @@
+ #include <antlr/config.hpp>
+ 
+ #include <map>
++#include <strings.h>
++#include <cstdio>
+ 
+ #ifdef HAS_NOT_CCTYPE_H
+ #include <ctype.h>
diff --git a/SOURCES/antlr-2.7.7.pom b/SOURCES/antlr-2.7.7.pom
new file mode 100644
index 0000000..354e82d
--- /dev/null
+++ b/SOURCES/antlr-2.7.7.pom
@@ -0,0 +1,22 @@
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>antlr</groupId>
+  <artifactId>antlr</artifactId>
+  <packaging>jar</packaging>
+  <version>2.7.7</version>
+  <name>AntLR Parser Generator</name>
+  <description>
+    A framework for constructing recognizers, compilers,
+    and translators from grammatical descriptions containing
+    Java, C#, C++, or Python actions.
+  </description>
+  <url>http://www.antlr.org/</url>
+  <licenses>
+    <license>
+      <name>BSD License</name>
+      <url>http://www.antlr.org/license.html</url>
+      <distribution>repo</distribution>
+    </license>
+  </licenses>
+  <dependencies/>
+</project>
diff --git a/SOURCES/antlr-build.xml b/SOURCES/antlr-build.xml
new file mode 100644
index 0000000..eadf11b
--- /dev/null
+++ b/SOURCES/antlr-build.xml
@@ -0,0 +1,71 @@
+<!-- simple generic build file -->
+
+<project name="antlr" default="all" basedir=".">
+
+  <!-- Properties -->
+
+  <property name="name" value="antlr"/>
+  <property name="src" value="src"/>
+  <property name="build" value="work"/>
+  <property name="build.classes" value="${build}/classes"/>
+  <property name="build.doc" value="${build}/api"/>
+  <property name="build.lib" value="${build}/lib"/>
+  <property name="packagenames" value="antlr.*"/>
+  <property name="j2se.apidoc" value="http://java.sun.com/j2se/1.4/docs/api/"/>
+
+  <!-- Targets -->
+
+  <!-- Prepare build directories -->
+  <target name="prepare">
+    <mkdir dir="${src}"/>
+    <mkdir dir="${build}"/>
+    <mkdir dir="${build.classes}"/>
+    <mkdir dir="${build.lib}"/>
+    <mkdir dir="${build.doc}"/>
+    <copy todir="${src}/antlr">
+      <fileset dir="antlr"/>
+    </copy>
+  </target>
+
+  <!-- Kill all the created directories -->
+  <target name="clean">
+    <delete dir="${build}"/>
+    <delete dir="${src}"/>
+  </target>
+
+  <!-- Build classes -->
+  <target name="classes" depends="prepare">
+    <javac srcdir="${src}" destdir="${build.classes}"
+      debug="off" optimize="on" deprecation="on"/>
+  </target>
+
+  <!-- Build jar archives -->
+  <target name="jar" depends="classes">
+    <jar jarfile="${build.lib}/${name}.jar" basedir="${build.classes}"
+      index="true">
+      <manifest>
+        <attribute name="Main-Class" value="antlr.Tool"/>
+      </manifest>
+    </jar>
+  </target>
+
+  <!-- Build the full JavaDocs -->
+  <target name="javadoc" depends="prepare">
+    <javadoc sourcepath="${src}"
+      destdir="${build.doc}"
+      doctitle="${name} Javadoc"
+      windowtitle="${name} Javadoc"
+      package="true"
+      author="true"
+      version="true"
+      packagenames="${packagenames}"
+      splitindex="true"
+      use="true">
+      <link href="${j2se.apidoc}"/>
+    </javadoc>
+  </target>
+
+  <!-- Build everything -->
+  <target name="all" depends="jar,javadoc"/>
+
+</project>
diff --git a/SOURCES/antlr-examples-license.patch b/SOURCES/antlr-examples-license.patch
new file mode 100644
index 0000000..14dda64
--- /dev/null
+++ b/SOURCES/antlr-examples-license.patch
@@ -0,0 +1,98 @@
+diff -up antlr-2.7.7/examples/java/unicode.IDENTs/ShowString.java.licensefix antlr-2.7.7/examples/java/unicode.IDENTs/ShowString.java
+--- antlr-2.7.7/examples/java/unicode.IDENTs/ShowString.java.licensefix	2012-08-16 10:16:12.157567962 -0400
++++ antlr-2.7.7/examples/java/unicode.IDENTs/ShowString.java	2012-08-16 10:17:46.425574161 -0400
+@@ -1,19 +1,33 @@
+ 
+ /*
+- * Copyright (c) 1995-1998 Sun Microsystems, Inc. All Rights Reserved.
++ * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
+  *
+- * Permission to use, copy, modify, and distribute this software
+- * and its documentation for NON-COMMERCIAL purposes and without
+- * fee is hereby granted provided that this copyright notice
+- * appears in all copies. Please refer to the file "copyright.html"
+- * for further important copyright and licensing information.
++ * Redistribution and use in source and binary forms, with or without
++ * modification, are permitted provided that the following conditions
++ * are met:
+  *
+- * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
+- * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+- * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+- * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
+- * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
+- * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
++ *   - Redistributions of source code must retain the above copyright
++ *     notice, this list of conditions and the following disclaimer.
++ *
++ *   - Redistributions in binary form must reproduce the above copyright
++ *     notice, this list of conditions and the following disclaimer in the
++ *     documentation and/or other materials provided with the distribution.
++ *
++ *   - Neither the name of Oracle or the names of its
++ *     contributors may be used to endorse or promote products derived
++ *     from this software without specific prior written permission.
++ *
++ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
++ * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
++ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
++ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
++ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
++ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
++ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
++ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
++ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
++ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
++ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+  */
+ 
+ import java.awt.*;
+diff -up antlr-2.7.7/examples/java/unicode.IDENTs/StreamConverter.java.licensefix antlr-2.7.7/examples/java/unicode.IDENTs/StreamConverter.java
+--- antlr-2.7.7/examples/java/unicode.IDENTs/StreamConverter.java.licensefix	2012-08-16 10:18:24.649576674 -0400
++++ antlr-2.7.7/examples/java/unicode.IDENTs/StreamConverter.java	2012-08-16 10:18:49.002578275 -0400
+@@ -1,19 +1,33 @@
+ 
+ /*
+- * Copyright (c) 1995-1998 Sun Microsystems, Inc. All Rights Reserved.
++ * Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
+  *
+- * Permission to use, copy, modify, and distribute this software
+- * and its documentation for NON-COMMERCIAL purposes and without
+- * fee is hereby granted provided that this copyright notice
+- * appears in all copies. Please refer to the file "copyright.html"
+- * for further important copyright and licensing information.
++ * Redistribution and use in source and binary forms, with or without
++ * modification, are permitted provided that the following conditions
++ * are met:
+  *
+- * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
+- * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
+- * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+- * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
+- * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
+- * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
++ *   - Redistributions of source code must retain the above copyright
++ *     notice, this list of conditions and the following disclaimer.
++ *
++ *   - Redistributions in binary form must reproduce the above copyright
++ *     notice, this list of conditions and the following disclaimer in the
++ *     documentation and/or other materials provided with the distribution.
++ *
++ *   - Neither the name of Oracle or the names of its
++ *     contributors may be used to endorse or promote products derived
++ *     from this software without specific prior written permission.
++ *
++ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
++ * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
++ * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
++ * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
++ * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
++ * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
++ * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
++ * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
++ * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
++ * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
++ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+  */
+ 
+ import java.io.*;
diff --git a/SOURCES/antlr-script b/SOURCES/antlr-script
new file mode 100644
index 0000000..6389106
--- /dev/null
+++ b/SOURCES/antlr-script
@@ -0,0 +1,25 @@
+#!/bin/sh
+#
+# antlr script
+# JPackage Project <http://www.jpackage.org/>
+
+# Source functions library
+if [ -f /usr/share/java-utils/java-functions ] ; then
+  . /usr/share/java-utils/java-functions
+else
+  echo "Can't find functions library, aborting"
+  exit 1
+fi
+
+# Configuration
+MAIN_CLASS="antlr.Tool"
+BASE_FLAGS=""
+BASE_JARS="antlr.jar"
+
+# Set parameters
+set_jvm
+set_classpath $BASE_JARS
+set_flags $BASE_FLAGS
+
+# Let's start
+run "$@"
diff --git a/SPECS/antlr.spec b/SPECS/antlr.spec
new file mode 100644
index 0000000..3ffc05e
--- /dev/null
+++ b/SPECS/antlr.spec
@@ -0,0 +1,415 @@
+%global debug_package %{nil}
+# since we have only a static library
+
+Summary:		ANother Tool for Language Recognition
+Name:			antlr
+Version:		2.7.7
+Release:		27%{?dist}
+Epoch:			0
+License:		Public Domain
+URL:			http://www.antlr.org/
+Group:			Development/Tools
+Source0:		http://www.antlr2.org/download/antlr-%{version}.tar.gz
+Source1:		%{name}-build.xml
+Source2:		%{name}-script
+Source3:                http://repo2.maven.org/maven2/%{name}/%{name}/%{version}/%{name}-%{version}.pom
+Patch1:			%{name}-%{version}-newgcc.patch
+# see BZ#848662
+Patch2:			antlr-examples-license.patch
+BuildRoot:		%{_tmppath}/%{name}-%{version}-%{release}-buildroot
+
+%ifarch %ix86 x86_64 ia64 armv4l sparcv9 alpha s390x ppc ppc64
+%if ! 0%{?rhel} >= 6
+BuildRequires:	mono-core
+BuildRequires:	mono-winforms
+%endif
+%endif
+BuildRequires:	ant
+BuildRequires:	java-javadoc
+BuildRequires:	jpackage-utils
+BuildRequires:	java-devel >= 1:1.7.0
+
+Requires:		jpackage-utils
+Requires:		java >= 1:1.7.0
+
+%description
+ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
+language tool that provides a framework for constructing recognizers,
+compilers, and translators from grammatical descriptions containing
+C++ or Java actions [You can use PCCTS 1.xx to generate C-based
+parsers].
+
+%package			tool
+Group:				Development/Tools
+Summary:			ANother Tool for Language Recognition
+Provides:			%{name} = %{version}-%{release}
+Obsoletes:			%{name} < %{version}-%{release}
+Requires:			jpackage-utils
+Requires:			java >= 1:1.7.0
+BuildArch:			noarch
+
+%description	tool
+ANTLR, ANother Tool for Language Recognition, (formerly PCCTS) is a
+language tool that provides a framework for constructing recognizers,
+compilers, and translators from grammatical descriptions containing
+C++ or Java actions [You can use PCCTS 1.xx to generate C-based
+parsers].
+
+%package		manual
+Group:			Development/Tools
+Summary:		Manual for %{name}
+BuildArch:		noarch
+
+%description	manual
+Documentation for %{name}.
+
+%package		javadoc
+Group:			Documentation
+Summary:		Javadoc for %{name}
+BuildArch:		noarch
+
+%description	javadoc
+Javadoc for %{name}.
+
+%package		C++
+Group:			Development/Libraries
+Summary:		C++ bindings for antlr2 generated parsers
+Provides:		antlr-static = %{version}-%{release}
+
+%description	C++
+This package provides a static C++ library for parsers generated by ANTLR2.
+
+%package		C++-doc
+Group:			Documentation
+Summary:		Documentation for C++ bindings for antlr2 generated parsers
+BuildRequires:	doxygen
+BuildArch:		noarch
+
+%description	C++-doc
+This package contains the documentation for the C++ bindings for parsers
+generated by ANTLR2.
+
+%package		python
+Group:			Development/Libraries
+Summary:		Python runtime support for ANTLR-generated parsers
+BuildRequires:	python2-devel
+BuildRequires:	python-setuptools-devel
+BuildArch:		noarch
+
+%description	python
+Python runtime support for ANTLR-generated parsers
+
+%prep
+%setup -q
+# remove all binary libs
+find . -name "*.jar" -exec rm -f {} \;
+cp -p %{SOURCE1} build.xml
+%patch1
+%patch2 -p1
+# CRLF->LF
+sed -i 's/\r//' LICENSE.txt
+
+%build
+ant -Dj2se.apidoc=%{_javadocdir}/java
+cp work/lib/antlr.jar .  # make expects to find it here
+export CLASSPATH=.
+%configure --without-examples
+make CXXFLAGS="${CXXFLAGS} -fPIC" DEBUG=1 verbose=1
+rm antlr.jar			 # no longer needed
+
+# fix doc permissions and remove Makefiles
+rm doc/{Makefile,Makefile.in}
+chmod 0644 doc/*
+
+# generate doxygen docs for C++ bindings
+pushd lib/cpp
+	doxygen doxygen.cfg
+	find gen_doc -type f -exec chmod 0644 {} \;
+popd
+
+# build python
+cd lib/python
+%{__python} setup.py build
+cd ../../
+
+%install
+rm -rf $RPM_BUILD_ROOT
+mkdir -p $RPM_BUILD_ROOT{%{_includedir}/%{name},%{_libdir},%{_bindir}}
+
+# jars
+mkdir -p $RPM_BUILD_ROOT%{_javadir}
+cp -p work/lib/%{name}.jar $RPM_BUILD_ROOT%{_javadir}/%{name}-%{version}.jar
+(cd $RPM_BUILD_ROOT%{_javadir} && for jar in *-%{version}.jar; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
+
+# script
+install -p -m 755 %{SOURCE2} $RPM_BUILD_ROOT%{_bindir}/antlr
+
+# C++ lib and headers, antlr-config
+
+install -p -m 644 lib/cpp/antlr/*.hpp $RPM_BUILD_ROOT%{_includedir}/%{name}
+install -p -m 644 lib/cpp/src/libantlr.a $RPM_BUILD_ROOT%{_libdir}
+install -p -m 755 scripts/antlr-config $RPM_BUILD_ROOT%{_bindir}
+
+# javadoc
+mkdir -p $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
+cp -pr work/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
+ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
+
+# python
+cd lib/python
+%{__python} setup.py install -O1 --skip-build --root %{buildroot}
+cd ../..
+
+# POM and depmap
+install -d -m 755 $RPM_BUILD_ROOT%{_mavenpomdir}
+install -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_mavenpomdir}/JPP-%{name}.pom
+%add_maven_depmap -a antlr:antlrall
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files tool
+%defattr(-,root,root,-)
+%doc LICENSE.txt
+%{_javadir}/%{name}*.jar
+%{_bindir}/antlr
+%{_mavenpomdir}/JPP-%{name}.pom
+%{_mavendepmapfragdir}/%{name}
+
+# this is actually a development package for the C++ target
+# as we ship only a static library, it doesn't make sense
+# to have a separate -devel package for the headers
+%files C++
+%defattr(-,root,root,-)
+%{_includedir}/%{name}
+%{_libdir}/libantlr.a
+%{_bindir}/antlr-config
+
+%files C++-doc
+%defattr(-,root,root,-)
+%doc lib/cpp/gen_doc/html/
+
+%files manual
+%defattr(-,root,root,-)
+%doc doc/*
+
+%files javadoc
+%defattr(-,root,root,-)
+%doc %{_javadocdir}/%{name}-%{version}
+%doc %{_javadocdir}/%{name}
+
+%files python
+%defattr(-,root,root,-)
+%{python_sitelib}/antlr/*
+%{python_sitelib}/antlr-*
+
+%changelog
+* Fri Jun 28 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-27
+- Rebuild to regenerate API documentation
+- Resolves: CVE-2013-1571
+
+* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-26
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
+
+* Sun Nov 25 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-25
+- Move maven files from C++ to tool subpackage, resolves: rhbz#879885
+
+* Thu Nov  1 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:2.7.7-24
+- Add maven POM
+
+* Sat Aug 18 2012 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-23
+- Add patch updating license on ShowString.java and StreamConverter.java
+  examples (thanks to Tom Callaway, see BZ#848662)
+
+* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-22
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Wed Feb 01 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-21
+- wrong version for jpackage-utils
+
+* Wed Feb 01 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-20
+- Versioned Java (build)/requires for -tool too
+
+* Mon Jan 30 2012 Jaroslav Reznik <jreznik@redhat.com> 0:2.7.7-19
+- Versioned Java (build)/requires
+
+* Fri Jan 27 2012 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.7-18
+- Disable c# part for rhel builds.
+
+* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-17
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Fri Mar 25 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-16
+- Fixed wrong Obsoletes: antlr on antlr-tool (fix #689703)
+
+* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-15
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Mon Feb 07 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-14
+- Remove INSTALL.txt (fix BZ#661626)
+- add python subpackage (fix BZ#505312)
+
+* Mon Feb 07 2011 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-13
+- Added missing Obsoletes: antlr on antlr-tool (fix BZ#603466)
+
+* Mon Dec 13 2010 Dan Horák <dan[at]danny.cz> - 0:2.7.7-12
+- sync the architecture list in BR with the mono package
+
+* Tue Nov 23 2010 Rex Dieter <rdieter@fedoraproject.org> - 0:2.7.7-11
+- -tool: +Requires: java jpackage-utils (#595504)
+
+* Thu Apr 29 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-10
+- Use original upstream tarball, prebuilt jars are anyway removed in %%prep
+- Don't overuse macros
+- Added explanation about headers in the C++ subpackage
+- Remove unnecessary Makefile and Makefile.in from %%docs, permissions fixed
+- Added doxygen docs for C++ as a -C++-doc subpackage
+- antlr-config moved into the C++ subpackage
+- Removed %%post and %%postun javadoc relicts from JPackage
+
+* Tue Apr 27 2010 Miloš Jakubíček <xjakub@fi.muni.cz> - 0:2.7.7-9
+- Drop native build, alternatives, jedit, gcj bits and other jpackage crap
+- Disable debuginfo since we have only a static library.
+- Use %%global everywhere
+- Split the C++ bindings into a separate -C++ subpackage
+- Use -tool subpackage with Provide: antlr to make it possible to be noarch
+- Use sed instead of perl => drop BR: perl
+
+* Tue Apr 20 2010 Orion Poplawski <orion@cora.nwra.com> 0:2.7.7-8
+- Cannot be noarch
+
+* Wed Apr 7 2010 Alexander Kurtakov <akurtako@redhat.com> 0:2.7.7-7
+- Disable gcj.
+- Use %%global.
+
+* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-6
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Fri Mar 20 2009 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-5
+- Include cstdio in CharScanner.hpp (needed to build with GCC 4.4)
+- Merge changes from includestrings patch into the above one
+
+* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:2.7.7-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Fri Jan 09 2009 Dennis Gilmore <dennis@ausil.us> 2.7.7-3
+- exlcude using mono on sparc64
+
+* Wed Jul  9 2008 Tom "spot" Callaway <tcallawa@redhat.com> 2.7.7-2
+- drop repotag
+
+* Wed Feb 27 2008 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.7
+- Add strings inclusion (for GCC 4.3)
+
+* Mon Sep 24 2007 Deepak Bhole <dbhole@redhat.com> - 0:2.7.7-1jpp.6
+- Resolve bz# 242305: Remove libantlr-pic.a, and compile libantlr.a with fPIC
+
+* Wed Aug 29 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.7.7-1jpp.5
+- Rebuild for selinux ppc32 issue.
+
+* Tue Jun 12 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.4.fc8
+- Added a PIC compiled archive (bz# 242305)
+
+* Thu Jun 07 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.3
+- Applied patch to fix conditionals (from skasal at redhat dot com)
+
+* Mon Mar 26 2007 Deepak Bhole <dbhole@redhat.com> 2.7.7-1jpp.2
+- Added unowned dir to files list
+
+* Fri Jan 19 2007 Deepak Bhole <dbhole@redhat.com> 0:2.7.7-1jpp.1
+- Upgrade to 2.7.7
+- Resolve 172456 with patches from Vadim Nasardinov and Radu Greab
+
+* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.2
+- Add missing postun for javadoc.
+
+* Thu Aug 03 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-4jpp.1
+- Add missing requirements.
+
+* Sat Jul 22 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_5fc
+- Unstub docs.
+
+* Sat Jul 22 2006 Jakub Jelinek <jakub@redhat.com> - 0:2.7.6-3jpp_4fc
+- Remove hack-libgcj requirement.
+
+* Fri Jul 21 2006 Thomas Fitzsimmons <fitzsim@redhat.com> - 0:2.7.6-3jpp_3fc
+- Stub docs. (dist-fc6-java)
+- Require hack-libgcj for build. (dist-fc6-java)
+- Bump release number.
+
+* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_2fc
+- From gbenson@redhat:
+- Omit the jedit subpackage to fix dependencies. 
+
+* Wed Jul 19 2006 Deepak Bhole <dbhole@redhat.com> = 0:2.7.6-3jpp_1fc
+- Added conditional native compilation.
+
+* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-2jpp
+- First JPP 1.7 build
+
+* Fri Jan 13 2006 Fernando Nasser <fnasser@redhat.com> - 0:2.7.6-1jpp
+- Update to 2.7.6.
+
+* Fri Aug 20 2004 Ralph Apel <r.apel at r-apel.de> - 0:2.7.4-2jpp
+- Build with ant-1.6.2.
+- Made native scripts conditional
+
+* Tue May 18 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.4-1jpp
+- Update to 2.7.4.
+
+* Fri Apr  2 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-2jpp
+- Create alternatives also on upgrades.
+
+* Wed Mar 31 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.3-1jpp
+- Update to 2.7.3.
+- Include gcj build option and a native subpackage, build using
+  "--with native" to get that.
+- Add %%{_bindir}/antlr alternative.
+
+* Mon Dec 15 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-3jpp
+- Add non-versioned javadoc dir symlink.
+- Crosslink with local J2SE javadocs.
+- Spec cleanups, change to UTF-8.
+
+* Sun Mar 30 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:2.7.2-2jpp
+- Rebuild for JPackage 1.5.
+
+* Sat Mar  1 2003 Ville Skyttä <ville.skytta at iki.fi> - 2.7.2-1jpp
+- Update to 2.7.2.
+- Include antlr script and jEdit mode (see antlr-jedit RPM description).
+- Use sed instead of bash 2 extension when symlinking jars during build.
+
+* Tue May 07 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-8jpp
+- really section macro
+- hardcoded distribution and vendor tag
+- group tag again
+
+* Thu May 2 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-7jpp
+- distribution tag
+- group tag
+- section macro
+
+* Fri Jan 18 2002 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-6jpp
+- versioned dir for javadoc
+- no dependencies for manual and javadoc packages
+- additional sources in individual archives
+
+* Sat Dec 1 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-5jpp
+- javadoc in javadoc package
+
+* Wed Nov 21 2001 Christian Zoffoli <czoffoli@littlepenguin.org> 2.7.1-4jpp
+- removed packager tag
+- new jpp extension
+
+* Sat Oct 6 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-3jpp
+- used a build file instead of makefile
+- build classes instead of blindly jared them !
+- used original tarball
+- corrected license spelling
+
+* Sun Sep 30 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-2jpp
+- first unified release
+- s/jPackage/JPackage
+
+* Tue Aug 28 2001 Guillaume Rousse <guillomovitch@users.sourceforge.net> 2.7.1-1mdk
+- first Mandrake release