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