4710ec
%bcond_with bootstrap
4710ec
4710ec
# Copyright (c) 2000-2009, JPackage Project
4710ec
# All rights reserved.
4710ec
#
4710ec
# Redistribution and use in source and binary forms, with or without
4710ec
# modification, are permitted provided that the following conditions
4710ec
# are met:
4710ec
#
4710ec
# 1. Redistributions of source code must retain the above copyright
4710ec
#    notice, this list of conditions and the following disclaimer.
4710ec
# 2. Redistributions in binary form must reproduce the above copyright
4710ec
#    notice, this list of conditions and the following disclaimer in the
4710ec
#    documentation and/or other materials provided with the
4710ec
#    distribution.
4710ec
# 3. Neither the name of the JPackage Project nor the names of its
4710ec
#    contributors may be used to endorse or promote products derived
4710ec
#    from this software without specific prior written permission.
4710ec
#
4710ec
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4710ec
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
4710ec
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
4710ec
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
4710ec
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4710ec
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4710ec
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4710ec
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4710ec
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4710ec
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4710ec
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4710ec
#
4710ec
4710ec
Name:           slf4j
4710ec
Version:        1.7.32
4710ec
Release:        4%{?dist}
4710ec
Summary:        Simple Logging Facade for Java
4710ec
# the log4j-over-slf4j and jcl-over-slf4j submodules are ASL 2.0, rest is MIT
4710ec
License:        MIT and ASL 2.0
4710ec
URL:            http://www.slf4j.org/
4710ec
BuildArch:      noarch
4710ec
ExclusiveArch:  %{java_arches} noarch
4710ec
4710ec
Source0:        https://github.com/qos-ch/slf4j/archive/v_%{version}.tar.gz
4710ec
Source1:        https://www.apache.org/licenses/LICENSE-2.0.txt
4710ec
4710ec
%if %{with bootstrap}
4710ec
BuildRequires:  javapackages-bootstrap-openjdk8
4710ec
%else
4710ec
BuildRequires:  maven-local-openjdk8
4710ec
BuildRequires:  mvn(commons-logging:commons-logging)
4710ec
BuildRequires:  mvn(org.apache.maven.plugins:maven-antrun-plugin)
4710ec
BuildRequires:  mvn(org.apache.maven.plugins:maven-source-plugin)
4710ec
BuildRequires:  mvn(org.codehaus.mojo:build-helper-maven-plugin)
4710ec
%endif
4710ec
4710ec
%description
4710ec
The Simple Logging Facade for Java or (SLF4J) is intended to serve
4710ec
as a simple facade for various logging APIs allowing to the end-user
4710ec
to plug in the desired implementation at deployment time. SLF4J also
4710ec
allows for a gradual migration path away from
4710ec
Jakarta Commons Logging (JCL).
4710ec
4710ec
Logging API implementations can either choose to implement the
4710ec
SLF4J interfaces directly, e.g. NLOG4J or SimpleLogger. Alternatively,
4710ec
it is possible (and rather easy) to write SLF4J adapters for the given
4710ec
API implementation, e.g. Log4jLoggerAdapter or JDK14LoggerAdapter..
4710ec
4710ec
%{?javadoc_package}
4710ec
4710ec
%package manual
4710ec
Summary:        Manual for %{name}
4710ec
4710ec
%description manual
4710ec
This package provides documentation for %{name}.
4710ec
4710ec
%package jdk14
4710ec
Summary:        SLF4J JDK14 Binding
4710ec
4710ec
%description jdk14
4710ec
SLF4J JDK14 Binding.
4710ec
4710ec
%package jcl
4710ec
Summary:        SLF4J JCL Binding
4710ec
4710ec
%description jcl
4710ec
SLF4J JCL Binding.
4710ec
4710ec
%package -n jcl-over-slf4j
4710ec
Summary:        JCL 1.1.1 implemented over SLF4J
4710ec
4710ec
%description -n jcl-over-slf4j
4710ec
JCL 1.1.1 implemented over SLF4J.
4710ec
4710ec
%package -n jul-to-slf4j
4710ec
Summary:        JUL to SLF4J bridge
4710ec
4710ec
%description -n jul-to-slf4j
4710ec
JUL to SLF4J bridge.
4710ec
4710ec
%package -n log4j-over-slf4j
4710ec
Summary:        Log4j implemented over SLF4J
4710ec
4710ec
%description -n log4j-over-slf4j
4710ec
Log4j implemented over SLF4J.
4710ec
4710ec
%package -n slf4j-migrator
4710ec
Summary:        SLF4J Migrator
4710ec
4710ec
%description -n slf4j-migrator
4710ec
SLF4J Migrator.
4710ec
4710ec
%package sources
4710ec
Summary:        SLF4J Source JARs
4710ec
4710ec
%description sources
4710ec
SLF4J Source JARs.
4710ec
4710ec
%prep
4710ec
%setup -q -n %{name}-v_%{version}
4710ec
find -name '*.jar' -delete
4710ec
install -p -m 0644 %{SOURCE1} APACHE-LICENSE
4710ec
4710ec
%pom_disable_module integration
4710ec
%pom_disable_module osgi-over-slf4j
4710ec
%pom_disable_module slf4j-android
4710ec
%pom_disable_module slf4j-ext
4710ec
%pom_disable_module slf4j-log4j12
4710ec
4710ec
# Port to maven-antrun-plugin 3.0.0
4710ec
sed -i s/tasks/target/ slf4j-api/pom.xml
4710ec
4710ec
# Because of a non-ASCII comment in slf4j-api/src/main/java/org/slf4j/helpers/MessageFormatter.java
4710ec
%pom_xpath_inject "pom:project/pom:properties" "
4710ec
    <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding>"
4710ec
4710ec
# Fix javadoc links
4710ec
%pom_xpath_remove "pom:links"
4710ec
%pom_xpath_inject "pom:plugin[pom:artifactId[text()='maven-javadoc-plugin']]/pom:configuration" "
4710ec
    <detectJavaApiLink>false</detectJavaApiLink>
4710ec
    <isOffline>false</isOffline>
4710ec
    <links><link>/usr/share/javadoc/java</link></links>"
4710ec
4710ec
# dos2unix
4710ec
find -name "*.css" -o -name "*.js" -o -name "*.txt" | \
4710ec
    xargs -t sed -i 's/\r$//'
4710ec
4710ec
# Remove wagon-ssh build extension
4710ec
%pom_xpath_remove pom:extensions
4710ec
4710ec
# Disable default-jar execution of maven-jar-plugin, which is causing
4710ec
# problems with version 3.0.0 of the plugin.
4710ec
%pom_xpath_inject "pom:plugin[pom:artifactId='maven-jar-plugin']/pom:executions" "
4710ec
    <execution>
4710ec
      <id>default-jar</id>
4710ec
      <phase>skip</phase>
4710ec
    </execution>" slf4j-api
4710ec
4710ec
# The general pattern is that the API package exports API classes and does
4710ec
# not require impl classes. slf4j was breaking that causing "A cycle was
4710ec
# detected when generating the classpath slf4j.api, slf4j.nop, slf4j.api."
4710ec
# The API bundle requires impl package, so to avoid cyclic dependencies
4710ec
# during build time, it is necessary to mark the imported package as an
4710ec
# optional one.
4710ec
# Reported upstream: http://bugzilla.slf4j.org/show_bug.cgi?id=283
4710ec
sed -i '/Import-Package/s/\}$/};resolution:=optional/' slf4j-api/src/main/resources/META-INF/MANIFEST.MF
4710ec
4710ec
# Source JARs for are required by Maven 3.4.0
4710ec
%mvn_package :::sources: sources
4710ec
4710ec
%mvn_package :%{name}-parent __noinstall
4710ec
%mvn_package :%{name}-site __noinstall
4710ec
%mvn_package :%{name}-api
4710ec
%mvn_package :%{name}-simple
4710ec
%mvn_package :%{name}-nop
4710ec
4710ec
%build
4710ec
%mvn_build -f -s -- -Drequired.jdk.version=1.6
4710ec
4710ec
%install
4710ec
# Compat symlinks
4710ec
%mvn_file ':%{name}-{*}' %{name}/%{name}-@1 %{name}/@1
4710ec
4710ec
%mvn_install
4710ec
4710ec
# manual
4710ec
install -d -m 0755 $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-manual
4710ec
rm -rf target/site/{.htaccess,apidocs}
4710ec
cp -pr target/site/* $RPM_BUILD_ROOT%{_defaultdocdir}/%{name}-manual
4710ec
4710ec
%files -n %{?module_prefix}%{name} -f .mfiles
4710ec
%license LICENSE.txt APACHE-LICENSE
4710ec
4710ec
%files jdk14 -f .mfiles-%{name}-jdk14
4710ec
%files jcl -f .mfiles-%{name}-jcl
4710ec
%files -n jcl-over-slf4j -f .mfiles-jcl-over-slf4j
4710ec
%files -n jul-to-slf4j -f .mfiles-jul-to-slf4j
4710ec
%files -n log4j-over-slf4j -f .mfiles-log4j-over-slf4j
4710ec
%files -n slf4j-migrator -f .mfiles-slf4j-migrator
4710ec
4710ec
%files sources -f .mfiles-sources
4710ec
%license LICENSE.txt APACHE-LICENSE
4710ec
4710ec
%files manual
4710ec
%license LICENSE.txt APACHE-LICENSE
4710ec
%{_defaultdocdir}/%{name}-manual
4710ec
4710ec
%changelog
4710ec
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.32-4
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
4710ec
4710ec
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 1.7.32-3
4710ec
- Rebuilt for java-17-openjdk as system jdk
4710ec
4710ec
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.32-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
4710ec
4710ec
* Mon Nov 22 2021 Simon Legner <Simon.Legner@gmail.com> - 1.7.32-1
4710ec
- Update to upstream version 1.7.32
4710ec
4710ec
* Tue Nov 16 2021 Didik Supriadi <didiksupriadi41@fedoraproject.org> - 1.7.30-11
4710ec
- Enable slf4j-migrator and log4j-over-slf4j modules
4710ec
4710ec
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.30-10
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
4710ec
4710ec
* Mon May 17 2021 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7.30-9
4710ec
- Bootstrap build
4710ec
- Non-bootstrap build
4710ec
4710ec
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.30-8
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
4710ec
4710ec
* Wed Sep 09 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.7.30-7
4710ec
- Disable unused log4j12 module.
4710ec
4710ec
* Thu Jul 30 2020 Fabio Valentini <decathorpe@gmail.com> - 0:1.7.30-6
4710ec
- Port to commons-lang3.
4710ec
4710ec
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.30-5
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
4710ec
4710ec
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 0:1.7.30-4
4710ec
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
4710ec
4710ec
* Thu Jun 25 2020 Roland Grunberg <rgrunber@redhat.com> - 0:1.7.30-3
4710ec
- Use source/target of 1.6 to build against Java 11.
4710ec
- Set javadoc plugin source value to 1.6.
4710ec
4710ec
* Fri Mar 20 2020 Mat Booth <mat.booth@redhat.com> - 0:1.7.30-2
4710ec
- Fix broken OSGi metadata
4710ec
4710ec
* Wed Feb 05 2020 Dinesh Prasanth M K <dmoluguw@redhat.com> - 0:1.7.30-1
4710ec
- Update to upstream version 1.7.30
4710ec
4710ec
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.25-9
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
4710ec
4710ec
* Sat Jan 25 2020 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7.30-2
4710ec
- Build with OpenJDK 8
4710ec
4710ec
* Thu Jan 23 2020 Marian Koncek <mkoncek@redhat.com> - 1.7.30-1
4710ec
- Update to upstream version 1.7.30
4710ec
4710ec
* Tue Nov 05 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7.28-2
4710ec
- Mass rebuild for javapackages-tools 201902
4710ec
4710ec
* Tue Aug 13 2019 Marian Koncek <mkoncek@redhat.com> - 1.7.28-1
4710ec
- Update to upstream version 1.7.28
4710ec
4710ec
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.25-8
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
4710ec
4710ec
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7.26-3
4710ec
- Mass rebuild for javapackages-tools 201901
4710ec
4710ec
* Fri May 24 2019 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.7.26-2
4710ec
- Disable slf4j-ext module
4710ec
4710ec
* Thu May 09 2019 Dinesh Prasanth M K <dmoluguw@redhat.com> - 0:1.7.25-7
4710ec
- Rebuilt for Fedora 31
4710ec
4710ec
* Wed Feb 27 2019 Marian Koncek <mkoncek@redhat.com> - 0:1.7.26-1
4710ec
- Update to upstream version 1.7.26
4710ec
- Fixes: RHBZ #1678877
4710ec
4710ec
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.25-6
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
4710ec
4710ec
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.25-5
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
4710ec
4710ec
* Mon Mar 19 2018 Michael Simacek <msimacek@redhat.com> - 0:1.7.25-4
4710ec
- Disallow EventData deserialization by default (CVE-2018-8088)
4710ec
- Resolves rhbz#1549928
4710ec
4710ec
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.25-3
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
4710ec
4710ec
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.25-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
4710ec
4710ec
* Tue Mar 28 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.25-1
4710ec
- Update to upstream version 1.7.25
4710ec
4710ec
* Wed Feb 22 2017 Michael Simacek <msimacek@redhat.com> - 0:1.7.22-4
4710ec
- Avoid absolute paths
4710ec
4710ec
* Thu Feb 16 2017 Michael Simacek <msimacek@redhat.com> - 0:1.7.22-3
4710ec
- Avoid literal carriage return
4710ec
- Remove Group tag
4710ec
4710ec
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.22-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
4710ec
4710ec
* Wed Dec 14 2016 Michael Simacek <msimacek@redhat.com> - 0:1.7.22-1
4710ec
- Update to upstream version 1.7.22
4710ec
4710ec
* Fri Nov 18 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.21-4
4710ec
- Install source JARs in separate package
4710ec
4710ec
* Mon Oct  3 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.21-3
4710ec
- Remove build-requires on perl
4710ec
4710ec
* Tue May 31 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.21-2
4710ec
- Fix build issue with maven-jar-plugin 3.0.0
4710ec
4710ec
* Wed Apr  6 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.21-1
4710ec
- Update to upstream version 1.7.21
4710ec
4710ec
* Wed Mar 30 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.20-1
4710ec
- Update to upstream version 1.7.20
4710ec
4710ec
* Thu Mar 24 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.19-1
4710ec
- Update to upstream version 1.7.19
4710ec
4710ec
* Mon Feb 29 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.18-1
4710ec
- Update to upstream version 1.7.18
4710ec
4710ec
* Mon Feb 22 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.17-1
4710ec
- Update to upstream version 1.7.17
4710ec
4710ec
* Tue Feb 16 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.16-1
4710ec
- Update to upstream version 1.7.16
4710ec
4710ec
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0:1.7.14-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
4710ec
4710ec
* Mon Jan 25 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.14-1
4710ec
- Update to upstream version 1.7.14
4710ec
4710ec
* Thu Nov 12 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.13-1
4710ec
- Update to upstream version 1.7.13
4710ec
4710ec
* Mon Aug 03 2015 Michael Simacek <msimacek@redhat.com> - 0:1.7.12-3
4710ec
- List manual files in %%files section
4710ec
4710ec
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7.12-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
4710ec
4710ec
* Thu May 14 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.12-1
4710ec
- Update to upstream version 1.7.12
4710ec
4710ec
* Mon Jan 19 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.10-1
4710ec
- Update to upstream version 1.7.10
4710ec
4710ec
* Fri Oct 24 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.7-3
4710ec
- Remove workaround for MSHARED-325
4710ec
4710ec
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7.7-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
4710ec
4710ec
* Mon Apr 14 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.7-1
4710ec
- Update to upstream version 1.7.7
4710ec
4710ec
* Thu Mar 20 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.6-5
4710ec
- Disable filtering of bundled JavaScript binaries
4710ec
- Resolves: rhbz#1078536
4710ec
4710ec
* Fri Mar 07 2014 Michael Simacek <msimacek@redhat.com> - 0:1.7.6-4
4710ec
- Merge api, simple and nop back into main package
4710ec
- Remove parent, migrator and site subpackages
4710ec
4710ec
* Fri Mar 07 2014 Michael Simacek <msimacek@redhat.com> - 0:1.7.6-3
4710ec
- Split into subpackages
4710ec
4710ec
* Thu Mar  6 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.6-2
4710ec
- Remove wagon-ssh build extension
4710ec
- Disable slf4j-android module
4710ec
4710ec
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.7.6-2
4710ec
- Use Requires: java-headless rebuild (#1067528)
4710ec
4710ec
* Thu Feb  6 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.6-1
4710ec
- Update to upstream version 1.7.6
4710ec
4710ec
* Tue Aug 06 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.7.5-3
4710ec
- Install manual to versionless docdir (#993551)
4710ec
4710ec
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7.5-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
4710ec
4710ec
* Fri Apr  5 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.5-1
4710ec
- Update to upstream version 1.7.5
4710ec
4710ec
* Wed Mar 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.4-1
4710ec
- Update to upstream version 1.7.4
4710ec
4710ec
* Fri Mar 15 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.3-1
4710ec
- Update to upstream version 1.7.3
4710ec
4710ec
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.7.2-9
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
4710ec
4710ec
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 0:1.7.2-8
4710ec
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
4710ec
- Replace maven BuildRequires with maven-local
4710ec
4710ec
* Wed Jan  9 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.2-7
4710ec
- Fix install location of manual
4710ec
4710ec
* Tue Jan  8 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.2-6
4710ec
- Rebuild to generate maven provides
4710ec
4710ec
* Fri Nov 30 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.2-5
4710ec
- Build with xmvn
4710ec
4710ec
* Wed Nov 21 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.2-4
4710ec
- Install Apache license file
4710ec
- Resolves: rhbz#878996
4710ec
4710ec
* Thu Nov 15 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.2-3
4710ec
- Avoid cyclic OSGi dependencies
4710ec
4710ec
* Thu Nov 08 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0:1.7.2-2
4710ec
- Fix license to ASL 2.0 and MIT
4710ec
- Update to add_maven_depmap macro
4710ec
- Use generated .mfiles list
4710ec
- Small packaging cleanups
4710ec
4710ec
* Mon Oct 15 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.2-1
4710ec
- Update to upstream version 1.7.2
4710ec
4710ec
* Mon Sep 17 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.1-1
4710ec
- Update to upstream version 1.7.1
4710ec
4710ec
* Mon Sep 10 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.7.0-1
4710ec
- Update to upstream version 1.7.0
4710ec
4710ec
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.6.6-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
4710ec
4710ec
* Wed Jul 11 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0:1.6.6-1
4710ec
- Update to upstream version 1.6.6
4710ec
- Convert patches to POM macros
4710ec
4710ec
* Fri Jan 13 2012 Ville Skyttä <ville.skytta@iki.fi> - 0:1.6.1-5
4710ec
- Crosslink with local JDK API docs.
4710ec
4710ec
* Fri Jan 13 2012 Ville Skyttä <ville.skytta@iki.fi> - 0:1.6.1-4
4710ec
- Specify explicit source encoding to fix build with Java 1.7.
4710ec
- Remove no longer needed javadoc dir upgrade hack.
4710ec
4710ec
* Wed Jun 8 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.6.1-3
4710ec
- Build with maven 3.x.
4710ec
4710ec
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0:1.6.1-2
4710ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4710ec
4710ec
* Tue Jan 25 2011 Alexander Kurtakov <akurtako@redhat.com> 0:1.6.1-1
4710ec
- Update to new upstream version.
4710ec
- Various guidelines fixes.
4710ec
4710ec
* Wed Sep 8 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.11-3
4710ec
- Add maven-site-pugin BR.
4710ec
- Use new package names.
4710ec
4710ec
* Wed Sep 8 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.11-2
4710ec
- Skip installing tests jar that is no longer produced.
4710ec
- Use javadoc aggregate.
4710ec
- Use mavenpomdir macro.
4710ec
4710ec
* Thu Feb 25 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.11-1
4710ec
- Update to 1.5.11.
4710ec
- Drop depmap and component info files.
4710ec
4710ec
* Wed Feb 10 2010 Mary Ellen Foster <mefoster at gmail.com> 0:1.5.10-5
4710ec
- Require cal10n
4710ec
4710ec
* Wed Feb 10 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.10-4
4710ec
- Fix javadoc files.
4710ec
4710ec
* Wed Feb 10 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.10-3
4710ec
- BR maven-plugin-build-helper.
4710ec
4710ec
* Wed Feb 10 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.10-2
4710ec
- BR cal10n.
4710ec
4710ec
* Wed Feb 10 2010 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.10-1
4710ec
- Update to upstream 1.5.10.
4710ec
4710ec
* Fri Sep 4 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.8-5
4710ec
- Skip tests.
4710ec
4710ec
* Wed Sep 2 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.8-4
4710ec
- Fix other line lenghts.
4710ec
4710ec
* Wed Sep 2 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.8-3
4710ec
- Fix permissions.
4710ec
- Fixed descriptions.
4710ec
- Fix file lengths.
4710ec
4710ec
* Wed Sep 2 2009 Alexander Kurtakov <akurtako@redhat.com> 0:1.5.8-2
4710ec
- Adapt for Fedora.
4710ec
4710ec
* Wed Jul 29 2009 Yong Yang <yyang@redhat.com> 0:1.5.8-1
4710ec
- 1.5.8
4710ec
- Replace slf4j-1.5.6-integration-tests-current-only.patch with
4710ec
  slf4j-1.5.8-skip-integration-tests.patch because of the failure of "testMatch"
4710ec
4710ec
* Fri Jun 12 2009 Ralph Apel <r.apel at r-apel.de> 0:1.5.6-2
4710ec
- Add -ext jar, depmap and pom
4710ec
- Save jcl104-over-slf4j as symlink
4710ec
4710ec
* Tue Feb 18 2009 David Walluck <dwalluck@redhat.com> 0:1.5.6-1
4710ec
- 1.5.6
4710ec
- add repolib
4710ec
- fix file eol
4710ec
- fix Release tag
4710ec
4710ec
* Fri Jul 18 2008 David Walluck <dwalluck@redhat.com> 0:1.5.2-2
4710ec
- use excalibur for avalon
4710ec
- remove javadoc scriptlets
4710ec
- GCJ fixes
4710ec
- fix maven directory ownership
4710ec
- fix -bc --short-circuit by moving some of %%build to %%prep
4710ec
4710ec
* Sun Jul 06 2008 Ralph Apel <r.apel at r-apel.de> 0:1.5.2-1.jpp5
4710ec
- 1.5.2
4710ec
4710ec
* Mon Feb 04 2008 Ralph Apel <r.apel at r-apel.de> 0:1.4.2-2jpp
4710ec
- Fix macro misprint
4710ec
- Add maven2-plugin BRs
4710ec
4710ec
* Wed Jul 18 2007 Ralph Apel <r.apel at r-apel.de> 0:1.4.2-1jpp
4710ec
- Upgrade to 1.4.2
4710ec
- Build with maven2
4710ec
- Add poms and depmap frags
4710ec
- Add gcj_support option
4710ec
4710ec
* Mon Jan 30 2006 Ralph Apel <r.apel at r-apel.de> 0:1.0-0.rc5.1jpp
4710ec
- First JPackage release.