324c73
# Don't generate requires on jpackage-utils and java-headless for
324c73
# provided pseudo-artifacts: com.sun:tools and sun.jdk:jconsole.
324c73
%global __requires_exclude_from %{?__requires_exclude_from:%__requires_exclude_from|}/maven-metadata/javapackages-metadata.xml$
324c73
324c73
%bcond_without asciidoc
324c73
%bcond_without gradle
324c73
%bcond_without tests
324c73
%bcond_with xmvn_javadoc
324c73
324c73
%if 0%{?fedora} || 0%{?rhel} > 7
324c73
%global python_prefix python3
324c73
%global python_interpreter %{__python3}
324c73
%else
324c73
%global python_prefix python
324c73
%global python_interpreter %{__python2}
324c73
%global rpmmacrodir /etc/rpm
324c73
%endif
324c73
324c73
%global default_jdk %{?_root_prefix}%{!?_root_prefix:%{_prefix}}/lib/jvm/java-1.8.0-openjdk
324c73
%global default_jre %{?_root_prefix}%{!?_root_prefix:%{_prefix}}/lib/jvm/jre-1.8.0-openjdk
324c73
324c73
Name:           javapackages-tools
324c73
Version:        5.1.0
324c73
Release:        1%{?dist}
324c73
324c73
Summary:        Macros and scripts for Java packaging support
324c73
324c73
License:        BSD
324c73
URL:            https://github.com/fedora-java/javapackages
324c73
Source0:        https://github.com/fedora-java/javapackages/archive/%{version}.tar.gz
324c73
324c73
BuildArch:      noarch
324c73
324c73
BuildRequires:  coreutils
324c73
BuildRequires:  which
324c73
BuildRequires:  make
324c73
%if %{with asciidoc}
324c73
BuildRequires:  asciidoc
324c73
BuildRequires:  xmlto
324c73
%endif
324c73
BuildRequires:  %{python_prefix}-devel
324c73
BuildRequires:  %{python_prefix}-lxml
324c73
BuildRequires:  %{python_prefix}-setuptools
324c73
%if !0%{?_module_build}
324c73
# XXX python-nose is not part of any module yet, but it should get
324c73
# modularized one day, right?  mizdebsk, Sep 2017
324c73
BuildRequires:  %{python_prefix}-nose
324c73
%endif
324c73
BuildRequires:  %{python_prefix}-six
324c73
324c73
Requires:       javapackages-filesystem = %{version}-%{release}
324c73
Requires:       coreutils
324c73
Requires:       findutils
324c73
Requires:       which
324c73
# default JRE
324c73
Requires:       java-1.8.0-openjdk-headless
324c73
324c73
Provides:       jpackage-utils = %{version}-%{release}
324c73
# These could be generated automatically, but then we would need to
324c73
# depend on javapackages-local for dependency generator.
324c73
Provides:       mvn(com.sun:tools) = SYSTEM
324c73
Provides:       mvn(sun.jdk:jconsole) = SYSTEM
324c73
324c73
%description
324c73
This package provides macros and scripts to support Java packaging.
324c73
324c73
%package -n javapackages-filesystem
324c73
Summary:        Java packages filesystem layout
324c73
Obsoletes:      eclipse-filesystem < 2
324c73
Provides:       eclipse-filesystem = %{version}-%{release}
324c73
324c73
%description -n javapackages-filesystem
324c73
This package provides some basic directories into which Java packages
324c73
install their content.
324c73
324c73
%package -n maven-local
324c73
Summary:        Macros and scripts for Maven packaging support
324c73
Requires:       %{name} = %{version}-%{release}
324c73
Requires:       javapackages-local = %{version}-%{release}
324c73
Requires:       xmvn-minimal
324c73
Requires:       xmvn-mojo
324c73
Requires:       xmvn-connector-aether
324c73
# Common Maven plugins required by almost every build. It wouldn't make
324c73
# sense to explicitly require them in every package built with Maven.
324c73
Requires:       mvn(org.apache.maven.plugins:maven-compiler-plugin)
324c73
Requires:       mvn(org.apache.maven.plugins:maven-jar-plugin)
324c73
%if %{without xmvn_javadoc}
324c73
Requires:       mvn(org.apache.maven.plugins:maven-javadoc-plugin)
324c73
%endif
324c73
Requires:       mvn(org.apache.maven.plugins:maven-resources-plugin)
324c73
Requires:       mvn(org.apache.maven.plugins:maven-surefire-plugin)
324c73
# Tests based on JUnit are very common and JUnit itself is small.
324c73
# Include JUnit and JUnit provider for Surefire just for convenience.
324c73
Requires:       mvn(junit:junit)
324c73
Requires:       mvn(org.apache.maven.surefire:surefire-junit4)
324c73
# testng is quite common as well
324c73
Requires:       mvn(org.apache.maven.surefire:surefire-testng)
324c73
324c73
%description -n maven-local
324c73
This package provides macros and scripts to support packaging Maven artifacts.
324c73
324c73
%if %{with gradle}
324c73
%package -n gradle-local
324c73
Summary:        Local mode for Gradle
324c73
Requires:       %{name} = %{version}-%{release}
324c73
Requires:       javapackages-local = %{version}-%{release}
324c73
Requires:       gradle >= 2.2.1-2
324c73
Requires:       xmvn-connector-gradle
324c73
324c73
%description -n gradle-local
324c73
This package implements local mode for Gradle, which allows artifact
324c73
resolution using XMvn resolver.
324c73
%endif
324c73
324c73
%package -n ivy-local
324c73
Summary:        Local mode for Apache Ivy
324c73
Requires:       %{name} = %{version}-%{release}
324c73
Requires:       javapackages-local = %{version}-%{release}
324c73
Requires:       apache-ivy >= 2.3.0-8
324c73
Requires:       xmvn-connector-ivy
324c73
324c73
%description -n ivy-local
324c73
This package implements local mode for Apache Ivy, which allows
324c73
artifact resolution using XMvn resolver.
324c73
324c73
%package -n %{python_prefix}-javapackages
324c73
Summary:        Module for handling various files for Java packaging
324c73
Requires:       %{python_prefix}-lxml
324c73
Requires:       %{python_prefix}-six
324c73
Obsoletes:      python-javapackages < %{version}-%{release}
324c73
324c73
%description -n %{python_prefix}-javapackages
324c73
Module for handling, querying and manipulating of various files for Java
324c73
packaging in Linux distributions
324c73
324c73
%package -n javapackages-local
324c73
Summary:        Non-essential macros and scripts for Java packaging support
324c73
Requires:       %{name} = %{version}-%{release}
324c73
Requires:       xmvn-install
324c73
Requires:       xmvn-subst
324c73
Requires:       xmvn-resolve
324c73
# Java build systems don't have hard requirement on java-devel, so it should be there
324c73
Requires:       java-1.8.0-openjdk-devel
324c73
Requires:       %{python_prefix}-javapackages = %{version}-%{release}
324c73
Requires:       %{python_prefix}
324c73
324c73
%description -n javapackages-local
324c73
This package provides non-essential macros and scripts to support Java packaging.
324c73
324c73
%prep
324c73
%setup -q -n javapackages-%{version}
324c73
324c73
%if %{without asciidoc}
324c73
sed -i '/^manpage /d' build
324c73
sed -i '/${mandir}/d' install
324c73
%endif
324c73
324c73
%build
324c73
%configure --pyinterpreter=%{python_interpreter} \
324c73
    --default_jdk=%{default_jdk} --default_jre=%{default_jre} \
324c73
    --rpmmacrodir=%{rpmmacrodir}
324c73
./build
324c73
324c73
%install
324c73
./install
324c73
324c73
%if %{with xmvn_javadoc}
324c73
sed -i 's|mvn_build.py|& --xmvn-javadoc|' $(find %{buildroot} -name 'macros*.fjava')
324c73
%endif
324c73
sed -e 's/.[17]$/&*/' -e 's/.py$/&*/' -i files-*
324c73
324c73
%if %{without gradle}
324c73
rm -rf %{buildroot}%{_bindir}/gradle-local
324c73
rm -rf %{buildroot}%{_datadir}/gradle-local
324c73
rm -rf %{buildroot}%{_mandir}/man7/gradle_build.7
324c73
%endif
324c73
324c73
%if %{with tests}
324c73
%if !0%{?_module_build}
324c73
%check
324c73
./check
324c73
%endif
324c73
%endif
324c73
324c73
%files -f files-tools
324c73
324c73
%files -n javapackages-filesystem -f files-filesystem
324c73
324c73
%files -n javapackages-local -f files-local
324c73
324c73
%files -n maven-local
324c73
324c73
%if %{with gradle}
324c73
%files -n gradle-local -f files-gradle
324c73
%endif
324c73
324c73
%files -n ivy-local -f files-ivy
324c73
324c73
%files -n %{python_prefix}-javapackages -f files-python
324c73
%license LICENSE
324c73
324c73
%changelog
324c73
* Tue May 15 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.1.0-1
324c73
- Update to upstream version 5.1.0
324c73
- Introduce javapackages-filesystem package
324c73
324c73
* Wed May 02 2018 Michael Simacek <msimacek@redhat.com> - 5.0.0-13
324c73
- Backport abrt-java-connector changes
324c73
324c73
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 5.0.0-12
324c73
- Escape macros in %%changelog
324c73
324c73
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-11
324c73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
324c73
324c73
* Tue Jan 09 2018 Merlin Mathesius <mmathesi@redhat.com> - 5.0.0-10
324c73
- Cleanup spec file conditionals
324c73
324c73
* Sat Sep 23 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.0-9
324c73
- Conditionally allow building without asciidoc
324c73
324c73
* Thu Sep  7 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.0-8
324c73
- Allow manpages to be either compressed or not
324c73
324c73
* Thu Aug 17 2017 Michael Simacek <msimacek@redhat.com> - 5.0.0-7
324c73
- Fix traceback on corrupt zipfile
324c73
- Resolves: rhbz#1481005
324c73
324c73
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-6
324c73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
324c73
324c73
* Mon Jul 10 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.0-5
324c73
- Conditionalize use of XMvn Javadoc MOJO
324c73
324c73
* Mon Jul 03 2017 Michael Simacek <msimacek@redhat.com> - 5.0.0-4
324c73
- Fix default JRE path
324c73
324c73
* Mon Jul 03 2017 Michael Simacek <msimacek@redhat.com> - 5.0.0-3
324c73
- Don't use xmvn javadoc for now
324c73
324c73
* Wed Jun 21 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 5.0.0-2
324c73
- Re-add dist-tag
324c73
324c73
* Wed Jun 21 2017 Michael Simacek <msimacek@redhat.com> - 5.0.0-2
324c73
- Remove xmvn version requirement
324c73
324c73
* Wed Jun 21 2017 Michael Simacek <msimacek@redhat.com> - 5.0.0-1
324c73
- Update to upstream version 5.0.0
324c73
324c73
* Tue Mar 14 2017 Michael Simacek <msimacek@redhat.com> - 4.7.0-16
324c73
- Force locale in test to fix failures
324c73
324c73
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.7.0-15
324c73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
324c73
324c73
* Wed Feb  1 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-14
324c73
- Fix build without gradle
324c73
324c73
* Tue Jan 31 2017 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-13
324c73
- Allow to conditionally build without gradle
324c73
324c73
* Tue Dec 20 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-12
324c73
- Non-bootstrap build
324c73
324c73
* Tue Dec 20 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-11
324c73
- Port to Python 3.6
324c73
324c73
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 4.7.0-10
324c73
- Rebuild for Python 3.6
324c73
324c73
* Fri Nov 18 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-9
324c73
- Add Requires on which
324c73
- Resolves: rhbz#1396395
324c73
324c73
* Mon Oct  3 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-8
324c73
- Fix generation of versioned OSGi requires
324c73
324c73
* Tue Sep 06 2016 Michael Simacek <msimacek@redhat.com> - 4.7.0-7
324c73
- Remove docs, which were split into java-packaging-howto
324c73
324c73
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.7.0-6
324c73
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
324c73
324c73
* Wed Jun 29 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-5
324c73
- Remove requires on maven-enforcer-plugin
324c73
324c73
* Tue Jun 28 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-4
324c73
- Require xmvn-minimal instead of full xmvn
324c73
324c73
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.7.0-3
324c73
- Drop requires on most of parent POMs
324c73
324c73
* Thu Mar 31 2016 Michal Srb <msrb@redhat.com> - 4.7.0-2
324c73
- Add R: findutils (Resolves: rhbz#1321401, thanks Tatsuyuki Ishi)
324c73
324c73
* Fri Mar 04 2016 Michal Srb <msrb@redhat.com> - 4.7.0-1
324c73
- Update to 4.7.0
324c73
324c73
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 4.6.0-13
324c73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
324c73
324c73
* Mon Jan  4 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.6.0-12
324c73
- Move mvn_build and builddep to javapackages-local
324c73
- Resolves: rhbz#1290399
324c73
324c73
* Wed Nov 11 2015 Kalev Lember <klember@redhat.com> - 4.6.0-11
324c73
- Disable bootstrap
324c73
324c73
* Wed Nov 11 2015 Kalev Lember <klember@redhat.com> - 4.6.0-10
324c73
- Add bootstrap macro (#1280209)
324c73
- Enable bootstrap for Python 3.5 rebuilds
324c73
324c73
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.6.0-9
324c73
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
324c73
324c73
* Wed Oct 28 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.6.0-8
324c73
- Backport %%gradle_build macro from 4.7.0-SNAPSHOT
324c73
324c73
* Mon Oct 19 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.6.0-7
324c73
- Don't generate requires on java-headless
324c73
- Resolves: rhbz#1272145
324c73
324c73
* Tue Jul 14 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.6.0-6
324c73
- Use %%license macro
324c73
324c73
* Fri Jul 10 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.6.0-5
324c73
- Add requires on java-devel to javapackages-local
324c73
324c73
* Tue Jun 30 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.6.0-4
324c73
- Remove jpackage-utils obsoletes
324c73
324c73
* Mon Jun 22 2015 Michal Srb <msrb@redhat.com> - 4.6.0-3
324c73
- Rebuild to fix provides
324c73
324c73
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.6.0-2
324c73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
324c73
324c73
* Mon Jun 15 2015 Michal Srb <msrb@redhat.com> - 4.6.0-1
324c73
- Update to upstream version 4.6.0
324c73
324c73
* Thu Apr 23 2015 Michal Srb <msrb@redhat.com> - 4.5.0-3
324c73
- Fix "UnboundLocalError: local variable 'pom_requires' referenced before assignment"
324c73
324c73
* Tue Apr 21 2015 Michael Simacek <msimacek@redhat.com> - 4.5.0-2
324c73
- Remove fedora-review-plugin-java subpackage
324c73
324c73
* Thu Apr 09 2015 Michal Srb <msrb@redhat.com> - 4.5.0-1
324c73
- Update to upstream version 4.5.0
324c73
324c73
* Wed Apr  1 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.4.0-4
324c73
- Remove requires on plexus-tools-pom
324c73
324c73
* Tue Mar 24 2015 Michael Simacek <msimacek@redhat.com> - 4.4.0-3
324c73
- Handle non-utf-8 poms in pom_editor
324c73
324c73
* Mon Feb 16 2015 Michael Simacek <msimacek@redhat.com> - 4.4.0-2
324c73
- Write temporary XML file as UTF-8 in pom_editor
324c73
324c73
* Mon Feb 16 2015 Michal Srb <msrb@redhat.com> - 4.4.0-1
324c73
- Update to upstream version 4.4.0
324c73
324c73
* Fri Feb 13 2015 Michal Srb <msrb@redhat.com> - 4.3.2-6
324c73
- Fix TypeError in maven_depmap (see: rhbz#1191657)
324c73
324c73
* Thu Feb 12 2015 Michael Simacek <msimacek@redhat.com> - 4.3.2-5
324c73
- Workaround for XMvn version bump (rhbz#1191657)
324c73
324c73
* Fri Jan 23 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.2-4
324c73
- Add gradle-local subpackage
324c73
- Allow conditional builds with tests skipped
324c73
324c73
* Mon Jan 19 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.2-3
324c73
- Port to lua 5.3.0
324c73
324c73
* Thu Jan 15 2015 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.2-2
324c73
- Replace all dashes with dots in versioned provides and requires
324c73
324c73
* Mon Jan 05 2015 Michal Srb <msrb@redhat.com> - 4.3.2-1
324c73
- Update to upstream version 4.3.2
324c73
- Fix TypeError in mvn_artifact
324c73
324c73
* Tue Dec 23 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.1-1
324c73
- Update to upstream version 4.3.1
324c73
324c73
* Sun Dec 14 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.3.0-1
324c73
- Update to upstream version 4.3.0
324c73
324c73
* Fri Nov 28 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-11
324c73
- Remove dependency on libxslt
324c73
324c73
* Fri Nov 28 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-10
324c73
- Scan lib64/ in OSGi dep generators
324c73
- Related: rhbz#1166156
324c73
324c73
* Wed Nov 26 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-9
324c73
- Revert adding namespace support in %%mvn_artifact
324c73
324c73
* Mon Nov 24 2014 Michal Srb <msrb@redhat.com> - 4.2.0-8
324c73
- Add namespace support in %%mvn_artifact
324c73
324c73
* Fri Nov 21 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-7
324c73
- Fix OSGi provides/requires generation in Java libdir
324c73
- Resolves: rhbz#1166156
324c73
324c73
* Wed Nov 12 2014 Michal Srb <msrb@redhat.com> - 4.2.0-6
324c73
- Fix cache problem (Resolves: rhbz#1155185)
324c73
324c73
* Thu Oct 30 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 4.2.0-5
324c73
- Use wrapper script to inject ABRT agent JVM argument
324c73
- Fix path to ABRT agent DSO
324c73
- Resolves: rhbz#1153652
324c73
324c73
* Tue Oct 21 2014 Michael Simacek <msimacek@redhat.com> - 4.2.0-4
324c73
- Fix pom_editor missing space between xmlns declarations
324c73
324c73
* Wed Sep 24 2014 Michal Srb <msrb@redhat.com> - 4.2.0-3
324c73
- Do not generate OSGi R on eclipse-platform
324c73
324c73
* Thu Sep 18 2014 Michal Srb <msrb@redhat.com> - 4.2.0-2
324c73
- Fix mvn_artifact: generate R, if it's not explicitly disabled
324c73
324c73
* Thu Jul 24 2014 Michal Srb <msrb@redhat.com> - 4.2.0-1
324c73
- Update to upstream version 4.2.0
324c73
324c73
* Thu Jul 10 2014 Michal Srb <msrb@redhat.com> - 4.1.0-2
324c73
- Backport upstream patch for maven.req
324c73
324c73
* Mon Jun 23 2014 Michal Srb <msrb@redhat.com> - 4.1.0-1
324c73
- Update to upstream version 4.1.0
324c73
324c73
* Thu Jun 12 2014 Michal Srb <msrb@redhat.com> - 4.0.0-8
324c73
- Install man page for pom_change_dep
324c73
324c73
* Tue Jun 10 2014 Michal Srb <msrb@redhat.com> - 4.0.0-7
324c73
- Backport fix for maven.prov
324c73
324c73
* Tue Jun 10 2014 Michal Srb <msrb@redhat.com> - 4.0.0-6
324c73
- Update docs
324c73
324c73
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 4.0.0-5
324c73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
324c73
324c73
* Fri May 30 2014 Michal Srb <msrb@redhat.com> - 4.0.0-4
324c73
- Backport patch which adds support for "disableEffectivePom" property
324c73
324c73
* Thu May 29 2014 Michal Srb <msrb@redhat.com> - 4.0.0-3
324c73
- Add BR: javapackages-tools
324c73
324c73
* Thu May 29 2014 Michal Srb <msrb@redhat.com> - 4.0.0-2
324c73
- Backport patches for maven.req
324c73
- Remove com.sun:tools and sun.jdk:jconsole provides
324c73
324c73
* Thu May 29 2014 Michal Srb <msrb@redhat.com> - 4.0.0-1
324c73
- Update to 4.0.0
324c73
324c73
* Wed May 28 2014 Michal Srb <msrb@redhat.com> - 3.5.0-9
324c73
- Apply the patch from my previous commit
324c73
324c73
* Wed May 28 2014 Michal Srb <msrb@redhat.com> - 3.5.0-8
324c73
- Generate requires on POM artifacts with "pom" extension
324c73
324c73
* Wed Apr 30 2014 Michal Srb <msrb@redhat.com> - 3.5.0-7
324c73
- Improve support for SCLs
324c73
324c73
* Wed Apr 16 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.0-6
324c73
- Add explicit maven-local requires on java-1.8.0-openjdk-devel
324c73
324c73
* Thu Mar 27 2014 Michael Simacek <msimacek@redhat.com> - 3.5.0-6
324c73
- Install documentation
324c73
324c73
* Mon Feb 24 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.5.0-5
324c73
- Backport java-headless patches
324c73
324c73
* Mon Feb 10 2014 Michal Srb <msrb@redhat.com> - 3.5.0-4
324c73
- Add support for installing Maven artifacts with .hpi extension
324c73
324c73
* Fri Jan 17 2014 Michael Simacek <msimacek@redhat.com> - 3.5.0-3
324c73
- Use upstream method of running tests (nosetests)
324c73
324c73
* Thu Jan 16 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.0-2
324c73
- Add version requirements on xmvn and ivy
324c73
324c73
* Thu Jan 16 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.5.0-1
324c73
- Update to upstream version 3.5.0
324c73
- Add ivy-local subpackage
324c73
324c73
* Tue Jan  7 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.4.2-3
324c73
- Update patch for ZIP files
324c73
324c73
* Tue Jan  7 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.4.2-2
324c73
- Allow ZIP files in %%{_javadir}
324c73
324c73
* Thu Dec 05 2013 Michal Srb <msrb@redhat.com> - 3.4.2-1
324c73
- Update to upstream bugfix release 3.4.2
324c73
324c73
* Wed Dec  4 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.4.1-3
324c73
- Add Requires on objectweb-pom
324c73
324c73
* Tue Nov 19 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.4.1-2
324c73
- Do not create parent dirs for pom.properties
324c73
- Resolves: rhbz#1031769
324c73
324c73
* Tue Nov 05 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.4.1-1
324c73
- Update to upstream bugfix release 3.4.1
324c73
324c73
* Mon Oct 21 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.4.0-3
324c73
- Fix XMvn configuration for native JNI repos
324c73
- Resolves: rhbz#1021608
324c73
324c73
* Mon Oct 14 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.4.0-2
324c73
- Require exact version of python-javapackages
324c73
324c73
* Mon Oct 14 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.4.0-1
324c73
- Update to upstream version 3.4.0
324c73
324c73
* Wed Oct  2 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.3.1-1
324c73
- Update to upstream version 3.3.1
324c73
- Remove workaround for sisu-guice no_aop
324c73
324c73
* Tue Oct 01 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.3.0-1
324c73
- Update to upstream version 3.3.0
324c73
324c73
* Wed Sep 25 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.4-2
324c73
- Fix installation of artifacts with classifier
324c73
324c73
* Tue Sep 24 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.4-1
324c73
- Update to upstream version 3.2.4
324c73
324c73
* Tue Sep 24 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.2.3-1
324c73
- Update to upstream version 3.2.3
324c73
324c73
* Fri Sep 20 2013 Michal Srb <msrb@redhat.com> - 3.2.2-1
324c73
- Update to upstream version 3.2.2
324c73
324c73
* Fri Sep 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.2.1-1
324c73
- Update to upstream version 3.2.1
324c73
324c73
* Fri Sep 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.2.0-1
324c73
- Update to upstream version 3.2.0
324c73
324c73
* Fri Sep 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.1.2-1
324c73
- Update to upstream version 3.1.2
324c73
324c73
* Thu Sep 19 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.1.1-1
324c73
- Update to upstream version 3.1.1
324c73
324c73
* Thu Sep 19 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.1.0-1
324c73
- Update to upstream version 3.1.0
324c73
324c73
* Mon Sep 16 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 3.0.4-2
324c73
- Add depmap for sun.jdk:jconsole
324c73
324c73
* Fri Sep 13 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.4-1
324c73
- Update to upstream version 3.0.4
324c73
324c73
* Wed Sep 11 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.3-1
324c73
- Update to upstream version 3.0.3
324c73
324c73
* Tue Sep 10 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.2-3
324c73
- Fix a typo in temporary depmap
324c73
324c73
* Tue Sep 10 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 3.0.2-2
324c73
- Make sure we do not provide google guice mapping
324c73
324c73
* Tue Sep 10 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> 3.0.2-1
324c73
- Update to upstream version 3.0.2
324c73
- Add separate python-javapackages subpackage
324c73
- Add separate fedora-review-plugin-java subpackage
324c73
- Enable part of unit tests
324c73
324c73
* Tue Sep  3 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> 3.0.0-0.2
324c73
- Fix javadoc directory override
324c73
324c73
* Tue Sep  3 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> 3.0.0-0.1
324c73
- Update to upstream pre-release version 3.0.0
324c73
324c73
* Fri Jul 26 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0.1-1
324c73
- Update to upstream version 2.0.1
324c73
- Fix creation of artifact aliases, resolves: rhbz#988462
324c73
324c73
* Thu Jul 25 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0.0-2
324c73
- Require maven-resources-plugin by maven-local
324c73
324c73
* Thu Jul 11 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 2.0.0-1
324c73
- Update to upstream version 2.0.0
324c73
- Merge functionality of jpackage-utils
324c73
- Provide and obsolete jpackage-utils
324c73
- %%add_maven_depmap macro now injects pom.properties to every JAR
324c73
- %%add_to_maven_depmap and %%update_maven_depmap macros were removed
324c73
- maven2jpp-mapdeps.xsl template has been removed
324c73
- Macros related to installation of icons and desktop files were removed
324c73
- 14 new manual pages were added
324c73
- Documentation specific to JPackage was removed
324c73
- Add BuildRequires: asciidoc, xmlto
324c73
324c73
* Mon Jul  1 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.15.0-2
324c73
- Add R: jvnet-parent
324c73
324c73
* Wed Jun  5 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.15.0-1
324c73
- Update to upstream version 0.15.0
324c73
- Added depmap for tools.jar
324c73
- Added support for versioned autorequires
324c73
- New plugin metadata from Maven Central
324c73
324c73
* Tue Jun  4 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.14.1-2
324c73
- Add several maven plugins to maven-local requires
324c73
324c73
* Wed May 29 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.14.1-1
324c73
- Update to upstream version 0.14.1 with disabled debugging
324c73
324c73
* Tue Apr 09 2013 Michal Srb <msrb@redhat.com> - 0.14.0-1
324c73
- Update to upstream version 0.14.0
324c73
324c73
* Mon Apr  8 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.7-2
324c73
- Add R: maven-surefire-provider-junit4 to maven-local
324c73
324c73
* Fri Mar 22 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.7-1
324c73
- Update to upstream version 0.13.7
324c73
324c73
* Wed Mar 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.6-4
324c73
- Add geronimo-parent-poms to common POMs
324c73
324c73
* Wed Mar 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.6-3
324c73
- Add weld-parent to common POMs
324c73
324c73
* Wed Mar 20 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.13.6-2
324c73
- Fix conditional macro to evaluate properly when fedora is not defined
324c73
324c73
* Mon Mar 18 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.6-1
324c73
- Update to upstream version 0.13.6
324c73
324c73
* Wed Mar 13 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.5-1
324c73
- Update to upstream version 0.13.5
324c73
324c73
* Wed Mar 13 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.4-1
324c73
- Update to upstream version 0.13.4
324c73
324c73
* Tue Mar 12 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.3-1
324c73
- Update to upstream version 0.13.3
324c73
324c73
* Thu Mar  7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.2-1
324c73
- Update to upstream version 0.13.2
324c73
324c73
* Thu Mar  7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.1-1
324c73
- Update to upstream version 0.13.1
324c73
324c73
* Wed Mar  6 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.0-1
324c73
- Update to upstream version 0.13.0
324c73
324c73
* Wed Mar  6 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.13.0-0.1.git2f13366
324c73
- Upate to upstream pre-release snapshot 2f13366
324c73
324c73
* Mon Mar  4 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.12.6-1
324c73
- Update to upstream version 0.12.6
324c73
- Resolves: rhbz#917618 (remove jetty orbit provides)
324c73
- Resolves: rhbz#917647 (system.bundle into autogenerated deps)
324c73
324c73
* Fri Mar  1 2013 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.12.5-1
324c73
- Update to upstream version 0.12.5
324c73
- Resolves problems with compat package provides and automatic requires
324c73
324c73
* Wed Feb 27 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.12.4-2
324c73
- Don't mark RPM macro files as configuration
324c73
324c73
* Mon Feb 25 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.12.4-1
324c73
- Update to upstream version 0.12.4
324c73
- Resolves: rhbz#913630 (versioned requires between subpackages)
324c73
324c73
* Fri Feb 22 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.12.3-1
324c73
- Update to upstream version 0.12.3
324c73
- Resolves: rhbz#913694 (No plugin found for prefix 'X')
324c73
324c73
* Wed Feb 20 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.12.2-1
324c73
- Update to upstream version 0.12.2
324c73
- Resolves: rhbz#913120 (MAVEN_OPTS are not passed to Maven)
324c73
324c73
* Mon Feb 18 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.12.1-1
324c73
- Update to upstream version 0.12.1
324c73
- Resolves: rhbz#912333 (M2_HOME is not exported)
324c73
324c73
* Fri Feb 15 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.12.0-1
324c73
- Update to upstream version 0.12.0
324c73
- Implement new pom macros: xpath_replace and xpath_set
324c73
- Remove Support-local-depmaps.patch (accepted upstream)
324c73
324c73
* Fri Feb 15 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.2-6
324c73
- Support local depmaps
324c73
324c73
* Thu Feb 14 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.2-5
324c73
- Add some maven-local Requires for convenience
324c73
324c73
* Thu Feb  7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.2-4
324c73
- Add missing R: httpcomponents-project
324c73
324c73
* Thu Feb  7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.2-3
324c73
- Add missing R: jboss-patent
324c73
324c73
* Wed Feb  6 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.2-2
324c73
- Don't install mvn-local and mvn-rpmbuild on F18
324c73
324c73
* Wed Jan 30 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.2-1
324c73
- Update to upstream version 0.11.2
324c73
324c73
* Wed Jan 30 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.1-1
324c73
- Update to upstream version 0.11.1
324c73
324c73
* Wed Jan 23 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.11.0-1
324c73
- Update to upstream version 0.11.0
324c73
- Add mvn-local and mvn-rpmbuild scripts
324c73
324c73
* Mon Jan 21 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.10.1-1
324c73
- Update to upstream version 0.10.1
324c73
324c73
* Mon Jan  7 2013 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.10.0-1
324c73
- Update to upstream version 0.10.0
324c73
- Implement %%xmvn_alias, %%xmvn_file and %%xmvn_package macros
324c73
- Fix regex in osgi.attr
324c73
- Add support for pre- and post-goals in mvn-build script
324c73
324c73
* Mon Dec 10 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.9.1-1
324c73
- Update to upstream version 0.9.1
324c73
- Resolves: rhbz#885636
324c73
324c73
* Thu Dec  6 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.9.0-1
324c73
- Update to latest upstream version
324c73
- Enable maven requires generator for xmvn packages
324c73
- Enable requires generator for javadoc packages
324c73
324c73
* Wed Dec  5 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.8.3-1
324c73
- Update to upstream version 0.8.3
324c73
- Fix maven provides generator for new XML valid fragments
324c73
324c73
* Fri Nov 30 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.8.2-1
324c73
- Update to upstream version 0.8.2
324c73
324c73
* Fri Nov 30 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.8.1-1
324c73
- Update to upstream version 0.8.1
324c73
324c73
* Wed Nov 28 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.8.0-1
324c73
- Update to upstream version 0.8.0
324c73
- Add xmvn macros
324c73
324c73
* Tue Nov 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.7.5-3
324c73
- Add BR: jpackage-utils
324c73
324c73
* Tue Nov 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.7.5-2
324c73
- Add maven-local subpackage
324c73
324c73
* Thu Nov 08 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.7.5-1
324c73
- Fix versioned pom installation by quoting _jpath
324c73
324c73
* Wed Oct 31 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.7.4-1
324c73
- Shorten maven filelist filenames
324c73
324c73
* Wed Oct 31 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.7.3-1
324c73
- Update to upstream version 0.7.3
324c73
324c73
* Wed Oct 31 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.7.2-1
324c73
- Make sure add_maven_depmap fails when python tracebacks
324c73
324c73
* Wed Oct 31 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.7.1-1
324c73
- Fix problem with exception in default add_maven_depmap invocation
324c73
324c73
* Tue Oct 30 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.7.0-1
324c73
- Update to latest upstream
324c73
- Full support for compat depmap generation
324c73
- Generate maven-files-%%{name} with a list of files to package
324c73
- Add support for maven repo generation (alpha version)
324c73
324c73
* Mon Jul 30 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.6.0-1
324c73
- Update to upstream version 0.6.0
324c73
- Make maven provides versioned
324c73
- Add additional pom_ macros to simplify additional pom editing
324c73
324c73
* Wed Jul 25 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.5.0-1
324c73
- Update to upstream version 0.5.0 - add support for add_maven_depmap -v
324c73
324c73
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.1-2
324c73
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
324c73
324c73
* Mon Jul  9 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.4.1-1
324c73
- Update to upstream version 0.4.1
324c73
- Fixes #837203
324c73
324c73
* Wed Jun 27 2012 Mikolaj Izdebski <mizdebsk@redhat.com> - 0.4.0-1
324c73
- Update to upstream version 0.4.0
324c73
324c73
* Tue Mar  6 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.3.1-1
324c73
- Create maven provides from fragments instead of poms
324c73
324c73
* Thu Feb 16 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.3.0-3
324c73
- Fix maven_depmap installation
324c73
324c73
* Wed Feb 15 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.3.0-2
324c73
- Add conflicts with older jpackage-utils
324c73
324c73
* Wed Feb 15 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.3.0-1
324c73
- Initial version split from jpackage-utils