Compare commits
No commits in common. "c8-stream-201902" and "c10s" have entirely different histories.
c8-stream-
...
c10s
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +0,0 @@
|
||||
SOURCES/doxia-1.9-source-release.zip
|
||||
@ -1 +0,0 @@
|
||||
98f8133e9296fd13d0c95b5878caed075db0f92a SOURCES/doxia-1.9-source-release.zip
|
||||
@ -1,245 +0,0 @@
|
||||
From 71a78088dff0081a290a860a184166bf993d04bf Mon Sep 17 00:00:00 2001
|
||||
From: Stanislav Ochotnicky <sochotnicky@redhat.com>
|
||||
Date: Mon, 29 Apr 2013 11:37:12 +0200
|
||||
Subject: [PATCH 1/4] Fix itext dependency
|
||||
|
||||
---
|
||||
doxia-modules/doxia-module-itext/pom.xml | 2 +-
|
||||
.../apache/maven/doxia/module/itext/ITextFont.java | 16 ++---
|
||||
.../apache/maven/doxia/module/itext/ITextSink.java | 6 +-
|
||||
.../apache/maven/doxia/module/itext/ITextUtil.java | 69 +---------------------
|
||||
.../doxia/module/itext/ITextSinkTestCase.java | 22 -------
|
||||
5 files changed, 13 insertions(+), 102 deletions(-)
|
||||
|
||||
diff --git a/doxia-modules/doxia-module-itext/pom.xml b/doxia-modules/doxia-module-itext/pom.xml
|
||||
index 94f94f3..8293f04 100644
|
||||
--- a/doxia-modules/doxia-module-itext/pom.xml
|
||||
+++ b/doxia-modules/doxia-module-itext/pom.xml
|
||||
@@ -58,7 +58,7 @@ under the License.
|
||||
<dependency>
|
||||
<groupId>com.lowagie</groupId>
|
||||
<artifactId>itext</artifactId>
|
||||
- <version>1.4</version>
|
||||
+ <version>2.1.7</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
diff --git a/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextFont.java b/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextFont.java
|
||||
index 2cc8ef1..5dfc882 100644
|
||||
--- a/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextFont.java
|
||||
+++ b/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextFont.java
|
||||
@@ -24,7 +24,7 @@ import java.awt.Color;
|
||||
import com.lowagie.text.ExceptionConverter;
|
||||
import com.lowagie.text.Font;
|
||||
import com.lowagie.text.FontFactory;
|
||||
-import com.lowagie.text.markup.MarkupTags;
|
||||
+import com.lowagie.text.html.Markup;
|
||||
import com.lowagie.text.pdf.BaseFont;
|
||||
|
||||
/**
|
||||
@@ -38,16 +38,16 @@ import com.lowagie.text.pdf.BaseFont;
|
||||
public class ITextFont
|
||||
{
|
||||
/** A normal font style */
|
||||
- public static final String NORMAL = MarkupTags.CSS_VALUE_NORMAL;
|
||||
+ public static final String NORMAL = Markup.CSS_VALUE_NORMAL;
|
||||
|
||||
/** A bold font style */
|
||||
- public static final String BOLD = MarkupTags.CSS_VALUE_BOLD;
|
||||
+ public static final String BOLD = Markup.CSS_VALUE_BOLD;
|
||||
|
||||
/** A italic font style */
|
||||
- public static final String ITALIC = MarkupTags.CSS_VALUE_ITALIC;
|
||||
+ public static final String ITALIC = Markup.CSS_VALUE_ITALIC;
|
||||
|
||||
/** An underline font style */
|
||||
- public static final String UNDERLINE = MarkupTags.CSS_VALUE_UNDERLINE;
|
||||
+ public static final String UNDERLINE = Markup.CSS_VALUE_UNDERLINE;
|
||||
|
||||
/** A default font name */
|
||||
public static final String DEFAULT_FONT_NAME = FontFactory.HELVETICA;
|
||||
@@ -262,7 +262,7 @@ public class ITextFont
|
||||
{
|
||||
Font font = getCurrentFont();
|
||||
|
||||
- return String.valueOf( font.color().getBlue() );
|
||||
+ return String.valueOf( font.getColor().getBlue() );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -274,7 +274,7 @@ public class ITextFont
|
||||
{
|
||||
Font font = getCurrentFont();
|
||||
|
||||
- return String.valueOf( font.color().getGreen() );
|
||||
+ return String.valueOf( font.getColor().getGreen() );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -286,7 +286,7 @@ public class ITextFont
|
||||
{
|
||||
Font font = getCurrentFont();
|
||||
|
||||
- return String.valueOf( font.color().getRed() );
|
||||
+ return String.valueOf( font.getColor().getRed() );
|
||||
}
|
||||
|
||||
/**
|
||||
diff --git a/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextSink.java b/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextSink.java
|
||||
index 2847413..c85f81f 100644
|
||||
--- a/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextSink.java
|
||||
+++ b/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextSink.java
|
||||
@@ -1232,9 +1232,9 @@ public class ITextSink
|
||||
try
|
||||
{
|
||||
Image image = Image.getInstance( new URL( urlName ) );
|
||||
- image.scaleToFit( ITextUtil.getDefaultPageSize().width() / 2, ITextUtil.getDefaultPageSize().height() / 2 );
|
||||
- width = image.plainWidth();
|
||||
- height = image.plainHeight();
|
||||
+ image.scaleToFit( ITextUtil.getDefaultPageSize().getWidth() / 2, ITextUtil.getDefaultPageSize().getHeight() / 2 );
|
||||
+ width = image.getPlainWidth();
|
||||
+ height = image.getPlainHeight();
|
||||
}
|
||||
catch ( BadElementException e )
|
||||
{
|
||||
diff --git a/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextUtil.java b/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextUtil.java
|
||||
index 4363413..141646c 100644
|
||||
--- a/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextUtil.java
|
||||
+++ b/doxia-modules/doxia-module-itext/src/main/java/org/apache/maven/doxia/module/itext/ITextUtil.java
|
||||
@@ -22,9 +22,6 @@ package org.apache.maven.doxia.module.itext;
|
||||
import com.lowagie.text.DocumentException;
|
||||
import com.lowagie.text.PageSize;
|
||||
import com.lowagie.text.Rectangle;
|
||||
-import com.lowagie.text.xml.XmlToHtml;
|
||||
-import com.lowagie.text.xml.XmlToPdf;
|
||||
-import com.lowagie.text.xml.XmlToRtf;
|
||||
|
||||
import java.io.InputStream;
|
||||
import java.io.OutputStream;
|
||||
@@ -77,7 +74,7 @@ public class ITextUtil
|
||||
if ( currentField.getType().equals( Rectangle.class ) )
|
||||
{
|
||||
Rectangle fPageSize = (Rectangle) currentField.get( null );
|
||||
- if ( ( rect.width() == fPageSize.width() ) && ( rect.height() == fPageSize.height() ) )
|
||||
+ if ( ( rect.getWidth() == fPageSize.getWidth() ) && ( rect.getHeight() == fPageSize.getHeight() ) )
|
||||
{
|
||||
return currentField.getName();
|
||||
}
|
||||
@@ -114,68 +111,4 @@ public class ITextUtil
|
||||
|
||||
return false;
|
||||
}
|
||||
-
|
||||
- /**
|
||||
- * Parse an iText XML from the specified <CODE>InputStream</CODE>, writing an Pdf document
|
||||
- * specified <CODE>OutputStream</CODE>.
|
||||
- *
|
||||
- * @param is the <CODE>InputStream</CODE> from which the XML is read.
|
||||
- * @param os the <CODE>OutputStream</CODE> to which the result as Pdf is written.
|
||||
- * @see com.lowagie.text.xml.XmlToPdf
|
||||
- */
|
||||
- public static void writePdf( InputStream is, OutputStream os )
|
||||
- {
|
||||
- try
|
||||
- {
|
||||
- XmlToPdf x = new XmlToPdf();
|
||||
-
|
||||
- x.parse( is, os );
|
||||
- }
|
||||
- catch ( DocumentException e )
|
||||
- {
|
||||
- throw new RuntimeException( "DocumentException : " + e.getMessage(), e );
|
||||
- }
|
||||
- }
|
||||
-
|
||||
- /**
|
||||
- * Parse an iText XML from the specified <CODE>InputStream</CODE>, writing an rtf document
|
||||
- * specified <CODE>OutputStream</CODE>.
|
||||
- *
|
||||
- * @param is the <CODE>InputStream</CODE> from which the XML is read.
|
||||
- * @param os the <CODE>OutputStream</CODE> to which the result as RTF is written.
|
||||
- * @see com.lowagie.text.xml.XmlToRtf
|
||||
- */
|
||||
- public static void writeRtf( InputStream is, OutputStream os )
|
||||
- {
|
||||
- try
|
||||
- {
|
||||
- XmlToRtf x = new XmlToRtf();
|
||||
- x.parse( is, os );
|
||||
- }
|
||||
- catch ( DocumentException e )
|
||||
- {
|
||||
- throw new RuntimeException( "DocumentException : " + e.getMessage(), e );
|
||||
- }
|
||||
- }
|
||||
-
|
||||
- /**
|
||||
- * Parse an iText XML from the specified <CODE>InputStream</CODE>, writing an html document
|
||||
- * specified <CODE>OutputStream</CODE>.
|
||||
- *
|
||||
- * @param is the <CODE>InputStream</CODE> from which the XML is read.
|
||||
- * @param os the <CODE>OutputStream</CODE> to which the result as Html is written.
|
||||
- * @see com.lowagie.text.xml.XmlToHtml
|
||||
- */
|
||||
- public static void writeHtml( InputStream is, OutputStream os )
|
||||
- {
|
||||
- try
|
||||
- {
|
||||
- XmlToHtml x = new XmlToHtml();
|
||||
- x.parse( is, os );
|
||||
- }
|
||||
- catch ( DocumentException e )
|
||||
- {
|
||||
- throw new RuntimeException( "DocumentException : " + e.getMessage(), e );
|
||||
- }
|
||||
- }
|
||||
}
|
||||
diff --git a/doxia-modules/doxia-module-itext/src/test/java/org/apache/maven/doxia/module/itext/ITextSinkTestCase.java b/doxia-modules/doxia-module-itext/src/test/java/org/apache/maven/doxia/module/itext/ITextSinkTestCase.java
|
||||
index 6bcd2be..a9674a0 100644
|
||||
--- a/doxia-modules/doxia-module-itext/src/test/java/org/apache/maven/doxia/module/itext/ITextSinkTestCase.java
|
||||
+++ b/doxia-modules/doxia-module-itext/src/test/java/org/apache/maven/doxia/module/itext/ITextSinkTestCase.java
|
||||
@@ -81,20 +81,6 @@ public class ITextSinkTestCase
|
||||
}
|
||||
|
||||
/**
|
||||
- * Test PDF generation
|
||||
- *
|
||||
- * @throws Exception
|
||||
- */
|
||||
- public void testGeneratingPDFFromITextXml()
|
||||
- throws Exception
|
||||
- {
|
||||
- File f = new File( getBasedir(), "src/test/resources/itext/itext.xml" );
|
||||
-
|
||||
- ITextUtil.writePdf( new FileInputStream( f ),
|
||||
- new FileOutputStream( getGeneratedFile( "test_itext", "pdf" ) ) );
|
||||
- }
|
||||
-
|
||||
- /**
|
||||
* Generate a pdf and a rtf from the standart test model.
|
||||
*
|
||||
* @throws Exception if any
|
||||
@@ -107,11 +93,6 @@ public class ITextSinkTestCase
|
||||
SinkTestDocument.generate( sink );
|
||||
|
||||
sink.close();
|
||||
-
|
||||
- ITextUtil.writePdf( new FileInputStream( getGeneratedFile( "test_model", "xml" ) ),
|
||||
- new FileOutputStream( getGeneratedFile( "test_model", "pdf" ) ) );
|
||||
- ITextUtil.writeRtf( new FileInputStream( getGeneratedFile( "test_model", "xml" ) ),
|
||||
- new FileOutputStream( getGeneratedFile( "test_model", "rtf" ) ) );
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -148,8 +129,5 @@ public class ITextSinkTestCase
|
||||
|
||||
sink.flush();
|
||||
sink.close();
|
||||
-
|
||||
- ITextUtil.writePdf( new FileInputStream( getGeneratedFile( "empty_anchor", "xml" ) ),
|
||||
- new FileOutputStream( getGeneratedFile( "empty_anchor", "pdf" ) ) );
|
||||
}
|
||||
}
|
||||
--
|
||||
2.5.5
|
||||
|
||||
@ -1,61 +0,0 @@
|
||||
From 6e1707a4bdea698f62fac215b6bca646bf14e4b4 Mon Sep 17 00:00:00 2001
|
||||
From: Michal Srb <msrb@redhat.com>
|
||||
Date: Wed, 26 Mar 2014 09:58:20 +0100
|
||||
Subject: [PATCH 3/4] Disable tests which rely on ordering in set
|
||||
|
||||
---
|
||||
.../test/java/org/apache/maven/doxia/sink/impl/AbstractSinkTest.java | 3 +++
|
||||
.../java/org/apache/maven/doxia/module/fo/FoAggregateSinkTest.java | 2 ++
|
||||
2 files changed, 5 insertions(+)
|
||||
|
||||
diff --git a/doxia-core/src/test/java/org/apache/maven/doxia/sink/impl/AbstractSinkTest.java b/doxia-core/src/test/java/org/apache/maven/doxia/sink/impl/AbstractSinkTest.java
|
||||
index 3ac8734..707cdf1 100644
|
||||
--- a/doxia-core/src/test/java/org/apache/maven/doxia/sink/impl/AbstractSinkTest.java
|
||||
+++ b/doxia-core/src/test/java/org/apache/maven/doxia/sink/impl/AbstractSinkTest.java
|
||||
@@ -452,6 +452,7 @@ public abstract class AbstractSinkTest
|
||||
* invoked on the current sink, produces the same result as
|
||||
* {@link #getFigureBlock getFigureBlock}( source, caption ).
|
||||
*/
|
||||
+ /*
|
||||
public void testFigure() throws Exception
|
||||
{
|
||||
String source = "figure.jpg";
|
||||
@@ -511,6 +512,7 @@ public abstract class AbstractSinkTest
|
||||
* invoked on the current sink, produces the same result as
|
||||
* {@link #getTableBlock getTableBlock}( cell, caption ).
|
||||
*/
|
||||
+ /*
|
||||
public void testTable() throws Exception
|
||||
{
|
||||
String cell = "cell";
|
||||
@@ -544,6 +543,7 @@ public abstract class AbstractSinkTest
|
||||
assertEquals( actual, expected );
|
||||
}
|
||||
}
|
||||
+ */
|
||||
|
||||
/**
|
||||
* Checks that the sequence <code>[paragraph(), text( text ),
|
||||
diff --git a/doxia-modules/doxia-module-fo/src/test/java/org/apache/maven/doxia/module/fo/FoAggregateSinkTest.java b/doxia-modules/doxia-module-fo/src/test/java/org/apache/maven/doxia/module/fo/FoAggregateSinkTest.java
|
||||
index 847c341..729357b 100644
|
||||
--- a/doxia-modules/doxia-module-fo/src/test/java/org/apache/maven/doxia/module/fo/FoAggregateSinkTest.java
|
||||
+++ b/doxia-modules/doxia-module-fo/src/test/java/org/apache/maven/doxia/module/fo/FoAggregateSinkTest.java
|
||||
@@ -164,6 +164,7 @@ public class FoAggregateSinkTest
|
||||
/**
|
||||
* Test of figureGraphics method, of class FoAggregateSink.
|
||||
*/
|
||||
+ /*
|
||||
public void testFigureGraphics() throws Exception
|
||||
{
|
||||
try
|
||||
@@ -188,6 +188,7 @@ public class FoAggregateSinkTest
|
||||
|
||||
assertThat ( wrapXml( actual ), CompareMatcher.isIdenticalTo( wrapXml( expected ) ));
|
||||
}
|
||||
+ */
|
||||
|
||||
/**
|
||||
* Test of anchor method, of class FoAggregateSink.
|
||||
--
|
||||
2.5.5
|
||||
|
||||
@ -1,449 +0,0 @@
|
||||
Name: maven-doxia
|
||||
Version: 1.9
|
||||
Release: 2%{?dist}
|
||||
Summary: Content generation framework
|
||||
License: ASL 2.0
|
||||
URL: http://maven.apache.org/doxia/
|
||||
|
||||
Source0: http://repo2.maven.org/maven2/org/apache/maven/doxia/doxia/%{version}/doxia-%{version}-source-release.zip
|
||||
|
||||
# Build against iText 2.x
|
||||
# https://issues.apache.org/jira/browse/DOXIA-53
|
||||
Patch1: 0001-Fix-itext-dependency.patch
|
||||
|
||||
# Don't run bad tests which rely on ordering in set (they fail with Java 8)
|
||||
Patch2: 0003-Disable-tests-which-rely-on-ordering-in-set.patch
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: maven-local
|
||||
BuildRequires: mvn(junit:junit)
|
||||
BuildRequires: mvn(org.apache.commons:commons-lang3)
|
||||
BuildRequires: mvn(org.apache.httpcomponents:httpclient)
|
||||
BuildRequires: mvn(org.apache.httpcomponents:httpcore)
|
||||
BuildRequires: mvn(org.apache.maven:maven-parent:pom:)
|
||||
BuildRequires: mvn(org.codehaus.modello:modello-maven-plugin)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-component-annotations)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-component-metadata)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-container-default)
|
||||
BuildRequires: mvn(org.codehaus.plexus:plexus-utils)
|
||||
BuildRequires: mvn(org.xmlunit:xmlunit-core)
|
||||
BuildRequires: mvn(org.xmlunit:xmlunit-matchers)
|
||||
|
||||
%description
|
||||
Doxia is a content generation framework which aims to provide its
|
||||
users with powerful techniques for generating static and dynamic
|
||||
content. Doxia can be used to generate static sites in addition to
|
||||
being incorporated into dynamic content generation systems like blogs,
|
||||
wikis and content management systems.
|
||||
|
||||
%package core
|
||||
Summary: Core module for %{name}
|
||||
|
||||
%description core
|
||||
This package provides %{summary}.
|
||||
|
||||
%package logging-api
|
||||
Summary: Logging-api module for %{name}
|
||||
|
||||
%description logging-api
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-apt
|
||||
Summary: APT module for %{name}
|
||||
|
||||
%description module-apt
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-confluence
|
||||
Summary: Confluence module for %{name}
|
||||
|
||||
%description module-confluence
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-docbook-simple
|
||||
Summary: Simplified DocBook module for %{name}
|
||||
|
||||
%description module-docbook-simple
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-fml
|
||||
Summary: FML module for %{name}
|
||||
|
||||
%description module-fml
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-latex
|
||||
Summary: Latex module for %{name}
|
||||
|
||||
%description module-latex
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-rtf
|
||||
Summary: RTF module for %{name}
|
||||
|
||||
%description module-rtf
|
||||
This package provides %{summary}.
|
||||
|
||||
%package modules
|
||||
Summary: Doxia modules for several markup languages.
|
||||
|
||||
%description modules
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-twiki
|
||||
Summary: TWiki module for %{name}
|
||||
|
||||
%description module-twiki
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-xdoc
|
||||
Summary: XDoc module for %{name}
|
||||
|
||||
%description module-xdoc
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-xhtml
|
||||
Summary: XHTML module for %{name}
|
||||
|
||||
%description module-xhtml
|
||||
This package provides %{summary}.
|
||||
|
||||
%package module-xhtml5
|
||||
Summary: XHTML5 module for %{name}
|
||||
|
||||
%description module-xhtml5
|
||||
This package provides %{summary}.
|
||||
|
||||
%package sink-api
|
||||
Summary: Sink-api module for %{name}
|
||||
|
||||
%description sink-api
|
||||
This package provides %{summary}.
|
||||
|
||||
%package test-docs
|
||||
Summary: Test-docs module for %{name}
|
||||
|
||||
%description test-docs
|
||||
This package provides %{summary}.
|
||||
|
||||
%package javadoc
|
||||
Summary: Javadoc for %{name}
|
||||
|
||||
%description javadoc
|
||||
API documentation for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q -n doxia-%{version}
|
||||
|
||||
find -name '*.java' -exec sed -i 's/\r//' {} +
|
||||
find -name '*.xml' -exec sed -i 's/\r//' {} +
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
|
||||
# we don't have clirr-maven-plugin
|
||||
%pom_remove_plugin org.codehaus.mojo:clirr-maven-plugin pom.xml
|
||||
|
||||
# complains
|
||||
%pom_remove_plugin :apache-rat-plugin
|
||||
|
||||
# use java 5 generics in modello plugin
|
||||
%pom_xpath_inject "pom:plugin[pom:artifactId[text()='modello-maven-plugin']]"\
|
||||
"/pom:executions/pom:execution/pom:configuration" \
|
||||
"<useJava5>true</useJava5>" doxia-modules/doxia-module-fml/pom.xml
|
||||
|
||||
# requires network
|
||||
rm doxia-core/src/test/java/org/apache/maven/doxia/util/XmlValidatorTest.java
|
||||
|
||||
%mvn_package :::tests: __noinstall
|
||||
|
||||
%pom_disable_module doxia-module-itext doxia-modules
|
||||
%pom_disable_module doxia-module-markdown doxia-modules
|
||||
%pom_disable_module doxia-module-fo doxia-modules
|
||||
|
||||
%build
|
||||
%mvn_build -s
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -f .mfiles-doxia
|
||||
%doc LICENSE NOTICE
|
||||
%files core -f .mfiles-doxia-core
|
||||
%files logging-api -f .mfiles-doxia-logging-api
|
||||
%doc LICENSE NOTICE
|
||||
%files module-apt -f .mfiles-doxia-module-apt
|
||||
%files module-confluence -f .mfiles-doxia-module-confluence
|
||||
%files module-docbook-simple -f .mfiles-doxia-module-docbook-simple
|
||||
%files module-fml -f .mfiles-doxia-module-fml
|
||||
%files module-latex -f .mfiles-doxia-module-latex
|
||||
%files module-rtf -f .mfiles-doxia-module-rtf
|
||||
%files modules -f .mfiles-doxia-modules
|
||||
%files module-twiki -f .mfiles-doxia-module-twiki
|
||||
%files module-xdoc -f .mfiles-doxia-module-xdoc
|
||||
%files module-xhtml -f .mfiles-doxia-module-xhtml
|
||||
%files module-xhtml5 -f .mfiles-doxia-module-xhtml5
|
||||
%files sink-api -f .mfiles-doxia-sink-api
|
||||
%files test-docs -f .mfiles-doxia-test-docs
|
||||
%doc LICENSE NOTICE
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%doc LICENSE NOTICE
|
||||
|
||||
%changelog
|
||||
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.9-2
|
||||
- Mass rebuild for javapackages-tools 201902
|
||||
|
||||
* Wed Jun 26 2019 Marian Koncek <mkoncek@redhat.com> - 1.9-1
|
||||
- Update to upstream version 1.9
|
||||
|
||||
* Wed May 29 2019 Marian Koncek <mkoncek@redhat.com> - 0:1.8-1
|
||||
- Update to upstream version 1.8
|
||||
|
||||
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7-9
|
||||
- Mass rebuild for javapackages-tools 201901
|
||||
|
||||
* Tue Jul 17 2018 Michael Simacek <msimacek@redhat.com> - 0:1.7-8
|
||||
- Regenerate BuildRequires
|
||||
|
||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Mon Jul 10 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7-4
|
||||
- Don't require log4j12 unless built with FOP
|
||||
|
||||
* Mon Jul 03 2017 Michael Simacek <msimacek@redhat.com> - 0:1.7-3
|
||||
- Add missing BR on log4j
|
||||
|
||||
* Tue Feb 07 2017 Michael Simacek <msimacek@redhat.com> - 0:1.7-2
|
||||
- Add conditional for fop
|
||||
|
||||
* Mon May 02 2016 Michael Simacek <msimacek@redhat.com> - 0:1.7-1
|
||||
- Update to upstream version 1.7
|
||||
|
||||
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Tue Aug 18 2015 Michael Simacek <msimacek@redhat.com> - 0:1.6-4
|
||||
- Port to fop-2.0
|
||||
- Cleanup bundled class from sitetools
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Fri Mar 20 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.6-2
|
||||
- Rebuild for fop update
|
||||
|
||||
* Thu Jul 17 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.6-1
|
||||
- Update to upstream version 1.6
|
||||
|
||||
* Wed Jun 11 2014 Michael Simacek <msimacek@redhat.com> - 0:1.5-7
|
||||
- Change BR classworlds to plexus-classworlds
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.5-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Mon May 12 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.5-5
|
||||
- Build-require pegdown >= 1.4.2-2
|
||||
|
||||
* Wed Mar 26 2014 Michal Srb <msrb@redhat.com> - 0:1.5-4
|
||||
- Disable bad tests which rely on ordering in set
|
||||
|
||||
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.5-3
|
||||
- Use Requires: java-headless rebuild (#1067528)
|
||||
|
||||
* Wed Feb 19 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.5-2
|
||||
- Fix unowned directory
|
||||
|
||||
* Tue Dec 10 2013 Michael Simacek <msimacek@redhat.com> - 0:1.5-1
|
||||
- Update to upstream version 1.5
|
||||
- Move back RenderingContext.java that was moved to doxia-sitetools which
|
||||
doesn't have a release yet
|
||||
|
||||
* Thu Dec 5 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.4-6
|
||||
- BuildRequire plexus-containers-container-default 1.5.5-14
|
||||
- Resolves: rhbz#1036584
|
||||
|
||||
* Mon Nov 25 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.4-5
|
||||
- Rebuild after itext versioned jar fixed
|
||||
|
||||
* Thu Nov 7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.4-4
|
||||
- Port to Commons Collections 1.10
|
||||
|
||||
* Wed Nov 6 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.4-3
|
||||
- Enable tests
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Mon Apr 29 2013 Michal Srb <msrb@redhat.com> - 0:1.4-1
|
||||
- Update to upstream version 1.4
|
||||
- Enable markdown module
|
||||
- Remove unneeded patch
|
||||
|
||||
* Tue Apr 23 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.3-3
|
||||
- Remove ant-nodeps BuildRequires
|
||||
|
||||
* Mon Apr 8 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.3-2
|
||||
- Conditionally disable itext module
|
||||
|
||||
* Tue Mar 19 2013 Michal Srb <msrb@redhat.com> - 0:1.3-1
|
||||
- Update to upstream version 1.3
|
||||
- Remove temporary dependencies on subpackages
|
||||
|
||||
* Thu Feb 7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.2-9
|
||||
- Remove runtime requirement on POM: httpcomponents-project
|
||||
|
||||
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0:1.2-9
|
||||
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
||||
- Replace maven BuildRequires with maven-local
|
||||
|
||||
* Thu Dec 20 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.2-8
|
||||
- Add httpcomponents-project to doxia-core requires
|
||||
|
||||
* Thu Dec 20 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.2-7
|
||||
- Temporarly require all subpackages in the main package
|
||||
|
||||
* Wed Dec 19 2012 Michal Srb <msrb@redhat.com>
|
||||
- Splitted into multiple subpackages (Resolves: #888710)
|
||||
|
||||
* Mon Dec 10 2012 Michal Srb <msrb@redhat.com> - 0:1.2-5
|
||||
- Migrated to plexus-components-component-default (Resolves: #878553)
|
||||
- Removed custom depmap and its occurrence in spec file
|
||||
- Fixed various rpmlint warnings
|
||||
|
||||
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Mon Jan 9 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.2-3
|
||||
- Remove plexus-xmlrpc from BR
|
||||
- Update patches to work without plexus-maven-plugin
|
||||
|
||||
* Fri May 6 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.2-2
|
||||
- Add forgotten missing requires
|
||||
|
||||
* Fri May 6 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.2-1
|
||||
- Update to latest upstream (1.2)
|
||||
- Use maven 3 to build
|
||||
- Remove version limits on BR/R (not valid anymore anyway)
|
||||
- Remove "assert" patch (no explanation for it's existence)
|
||||
|
||||
* Tue Feb 22 2011 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.1.4-3
|
||||
- Change oro to jakarta-oro in BR/R
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.1.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Dec 23 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.1.4-1
|
||||
- Update to 1.1.4
|
||||
- Migrate from tomca5 to tomca6
|
||||
- Versionless jars and javadocs
|
||||
- Remove old skip-plugin patch
|
||||
- Replace add-default-role-hint patch with remove-plexus-component patch
|
||||
- Rename few jakarta BRs/Rs to apache names
|
||||
|
||||
* Tue Sep 7 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.1.3-1
|
||||
- New bugfix version
|
||||
- Fix javadoc generation error
|
||||
- Use %%{_mavenpomdir} macro
|
||||
- Update BRs to latest maven plugin names
|
||||
- Use new plexus-containers components
|
||||
- Remove/update old patches
|
||||
|
||||
* Tue May 25 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.1.2-3
|
||||
- Update for transitional maven state.
|
||||
- Install doxia-modules pom.
|
||||
|
||||
* Wed May 5 2010 Mary Ellen Foster <mefoster at gmail.com> 0:1.1.2-2
|
||||
- Add BuildRequirement on fop
|
||||
|
||||
* Fri Feb 12 2010 Mary Ellen Foster <mefoster at gmail.com> 0:1.1.2-1
|
||||
- Update to 1.1.2
|
||||
- Add update_maven_depmap to post and postun
|
||||
- Temporarily disable javadoc until maven2-plugin-javadoc is rebuilt against
|
||||
the new doxia
|
||||
|
||||
* Mon Dec 21 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.8.a10.4
|
||||
- BR maven2-plugin-plugin.
|
||||
|
||||
* Mon Dec 21 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.8.a10.3
|
||||
- BR maven2-plugin-assembly.
|
||||
|
||||
* Mon Dec 21 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.0-0.8.a10.2
|
||||
- BR maven-surefire-provider-junit.
|
||||
|
||||
* Tue Sep 01 2009 Andrew Overholt <overholt@redhat.com> 0:1.0-0.8.a10.1
|
||||
- Add tomcat5 BR
|
||||
|
||||
* Tue Sep 01 2009 Andrew Overholt <overholt@redhat.com> 0:1.0-0.8.a10
|
||||
- Add tomcat5-servlet-2.4-api BR
|
||||
|
||||
* Tue Sep 01 2009 Andrew Overholt <overholt@redhat.com> 0:1.0-0.7.a10
|
||||
- Fix plexus-cli BR version
|
||||
|
||||
* Mon Aug 31 2009 Andrew Overholt <overholt@redhat.com> 0:1.0-0.6.a10
|
||||
- Add itext and plexus-cli BRs
|
||||
|
||||
* Wed Aug 26 2009 Andrew Overholt <overholt@redhat.com> 0:1.0-0.5.a10
|
||||
- Update to 1.0 alpha 10 courtesy of Deepak Bhole
|
||||
- Remove gcj support
|
||||
- Add patch to build against iText 2.x (with back-ported XML classes)
|
||||
|
||||
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.4.a7.2.10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.0-0.3.a7.2.10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Aug 13 2008 Deepak Bhole <dbhole@redhat.com> 1.0-0.2.a7.2.10
|
||||
- Fix broken release tag
|
||||
|
||||
* Wed Aug 13 2008 Deepak Bhole <dbhole@redhat.com> 1.0-0.2.a7.2.9
|
||||
- Build for ppc64
|
||||
|
||||
* Wed Jul 9 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.0-0.2.a7.2.8
|
||||
- drop repotag
|
||||
|
||||
* Thu May 29 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.0-0.2.a7.2jpp.7
|
||||
- fix license tag
|
||||
|
||||
* Thu Feb 28 2008 Deepak Bhole <dbhole@redhat.com> 1.0-0.2.a7.2jpp.6
|
||||
- Rebuild
|
||||
|
||||
* Fri Sep 21 2007 Deepak Bhole <dbhole@redhat.com> 1.0-0.1.a7.3jpp.5
|
||||
- Build with maven
|
||||
- ExcludeArch ppc64
|
||||
|
||||
* Sat Sep 01 2007 Deepak Bhole <dbhole@redhat.com> 0:1.0-0.1.a7.3jpp.4
|
||||
- Rebuild without maven (fpr initial ppc build)
|
||||
|
||||
* Tue Mar 20 2007 Deepak Bhole <dbhole@redhat.com> 0:1.0-0.1.a7.3jpp.3
|
||||
- Added switch to ignore failures for the time being
|
||||
|
||||
* Tue Mar 20 2007 Deepak Bhole <dbhole@redhat.com> 0:1.0-0.1.a7.3jpp.2
|
||||
- Build with maven
|
||||
|
||||
* Tue Feb 27 2007 Tania Bento <tbento@redhat.com> 0:1.0-0.1.a7.3jpp.1
|
||||
- Fixed %%Release.
|
||||
- Fixed %%BuildRoot.
|
||||
- Removed %%Vendor.
|
||||
- Removed %%Distribution.
|
||||
- Removed %%post and %%postun sections for javadoc.
|
||||
- Fixed instructios on how to generate source drop.
|
||||
- Fixed %%Summary.
|
||||
- Added gcj support option.
|
||||
- Marked configuration file as %%config(noreplace) in %%files section.
|
||||
|
||||
* Tue Oct 17 2006 Deepak Bhole <dbhole@redhat.com> 1.0-0.a7.3jpp
|
||||
- Update for maven2 9jpp
|
||||
|
||||
* Fri Jun 23 2006 Deepak Bhole <dbhole@redhat.com> - 0:1.0-0.a7.2jpp
|
||||
- Fix versions in the depmap
|
||||
|
||||
* Wed Mar 15 2006 Deepak Bhole <dbhole@redhat.com> - 0:1.0-0.a7.1jpp
|
||||
- Initial build
|
||||
1
dead.package.c9s
Normal file
1
dead.package.c9s
Normal file
@ -0,0 +1 @@
|
||||
maven-doxia package is retired for CS-645
|
||||
Loading…
Reference in New Issue
Block a user