From a67099332eae0a750aae774423d4236564a6a8c4 Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Oct 24 2017 09:13:58 +0000 Subject: import rh-maven35-aqute-bnd-3.3.0-6.2.el7 --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a97150e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/3.3.0.REL.tar.gz diff --git a/.rh-maven35-aqute-bnd.metadata b/.rh-maven35-aqute-bnd.metadata new file mode 100644 index 0000000..066fd26 --- /dev/null +++ b/.rh-maven35-aqute-bnd.metadata @@ -0,0 +1 @@ +4edb873cbcc8237f4c0dc3127030e1077d9c4285 SOURCES/3.3.0.REL.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 98f42b4..0000000 --- a/README.md +++ /dev/null @@ -1,4 +0,0 @@ -The master branch has no content - -Look at the c7 branch if you are working with CentOS-7, or the c4/c5/c6 branch for CentOS-4, 5 or 6 -If you find this file in a distro specific branch, it means that no content has been checked in yet diff --git a/SOURCES/0001-Port-to-Java-8.patch b/SOURCES/0001-Port-to-Java-8.patch new file mode 100644 index 0000000..c9bc901 --- /dev/null +++ b/SOURCES/0001-Port-to-Java-8.patch @@ -0,0 +1,76 @@ +From 2da86d459a4806760d2883ed3c6296f904c80593 Mon Sep 17 00:00:00 2001 +From: Michael Simacek +Date: Thu, 26 May 2016 15:43:14 +0200 +Subject: [PATCH 1/2] Port to Java 8 + +--- + aQute.libg/src/aQute/lib/collections/DoubleKeyMap.java | 14 -------------- + aQute.libg/src/aQute/lib/collections/SortedList.java | 6 ++++++ + biz.aQute.bnd/src/aQute/bnd/ant/BndTask.java | 2 +- + 3 files changed, 7 insertions(+), 15 deletions(-) + +diff --git a/aQute.libg/src/aQute/lib/collections/DoubleKeyMap.java b/aQute.libg/src/aQute/lib/collections/DoubleKeyMap.java +index 4107f31..40ecfdf 100644 +--- a/aQute.libg/src/aQute/lib/collections/DoubleKeyMap.java ++++ b/aQute.libg/src/aQute/lib/collections/DoubleKeyMap.java +@@ -97,20 +97,6 @@ public class DoubleKeyMap extends HashMap>implements Map + return result; + } + +- public V remove(K1 key1, K2 key2) { +- assert k1Class.isInstance(key1); +- assert k2Class.isInstance(key2); +- +- Map set = get(key1); +- if (set == null) { +- return null; +- } +- V result = set.remove(key2); +- if (set.isEmpty()) +- remove(key1); +- return result; +- } +- + public Iterator> iterate(K1 key) { + assert k1Class.isInstance(key); + Map set = get(key); +diff --git a/aQute.libg/src/aQute/lib/collections/SortedList.java b/aQute.libg/src/aQute/lib/collections/SortedList.java +index 493d7bc..8a48a72 100644 +--- a/aQute.libg/src/aQute/lib/collections/SortedList.java ++++ b/aQute.libg/src/aQute/lib/collections/SortedList.java +@@ -9,6 +9,7 @@ import java.util.List; + import java.util.ListIterator; + import java.util.NoSuchElementException; + import java.util.SortedSet; ++import java.util.Spliterator; + + /** + * An immutbale list that sorts objects by their natural order or through a +@@ -28,6 +29,11 @@ import java.util.SortedSet; + */ + @SuppressWarnings("unchecked") + public class SortedList implements SortedSet, List { ++ ++ @Override ++ public Spliterator spliterator() { ++ return List.super.spliterator(); ++ } + static SortedList< ? > empty = new SortedList(); + + final T[] list; +diff --git a/biz.aQute.bnd/src/aQute/bnd/ant/BndTask.java b/biz.aQute.bnd/src/aQute/bnd/ant/BndTask.java +index efd43a3..9fd21fd 100644 +--- a/biz.aQute.bnd/src/aQute/bnd/ant/BndTask.java ++++ b/biz.aQute.bnd/src/aQute/bnd/ant/BndTask.java +@@ -217,7 +217,7 @@ public class BndTask extends BaseTask { + if (inherit) { + Properties projectProperties = new UTF8Properties(); + @SuppressWarnings("unchecked") +- Hashtable antProps = getProject().getProperties(); ++ Hashtable antProps = getProject().getProperties(); + projectProperties.putAll(antProps); + projectProperties.putAll(builder.getProperties()); + builder.setProperties(projectProperties); +-- +2.7.4 + diff --git a/SOURCES/0002-Disable-removed-commands.patch b/SOURCES/0002-Disable-removed-commands.patch new file mode 100644 index 0000000..5d1dbe8 --- /dev/null +++ b/SOURCES/0002-Disable-removed-commands.patch @@ -0,0 +1,75 @@ +From fbc8e82303b4168ff9fcd7bc6cabd5e65a5b7495 Mon Sep 17 00:00:00 2001 +From: Michael Simacek +Date: Tue, 4 Oct 2016 18:02:26 +0200 +Subject: [PATCH 2/2] Disable removed commands + +--- + biz.aQute.bnd/src/aQute/bnd/main/bnd.java | 45 ------------------------------- + 1 file changed, 45 deletions(-) + +diff --git a/biz.aQute.bnd/src/aQute/bnd/main/bnd.java b/biz.aQute.bnd/src/aQute/bnd/main/bnd.java +index 8cd120d..1ceb4c6 100644 +--- a/biz.aQute.bnd/src/aQute/bnd/main/bnd.java ++++ b/biz.aQute.bnd/src/aQute/bnd/main/bnd.java +@@ -100,7 +100,6 @@ import aQute.bnd.osgi.Processor; + import aQute.bnd.osgi.Resource; + import aQute.bnd.osgi.Verifier; + import aQute.bnd.osgi.eclipse.EclipseClasspath; +-import aQute.bnd.repository.maven.provider.NexusCommand; + import aQute.bnd.service.Actionable; + import aQute.bnd.service.RepositoryPlugin; + import aQute.bnd.service.action.Action; +@@ -4136,50 +4135,6 @@ public class bnd extends Processor { + } + + /** +- * Resolve command +- * +- * @throws Exception +- */ +- +- public void _resolve(ResolveCommand.ResolveOptions options) throws Exception { +- ResolveCommand rc = new ResolveCommand(this); +- String help = options._command().subCmd(options, rc); +- if (help != null) +- out.println(help); +- getInfo(rc); +- rc.close(); +- } +- +- /** +- * Remote command +- * +- * @throws Exception +- */ +- +- public void _remote(RemoteCommand.RemoteOptions options) throws Exception { +- RemoteCommand rc = new RemoteCommand(this, options); +- String help = options._command().subCmd(options, rc); +- if (help != null) +- out.println(help); +- getInfo(rc); +- rc.close(); +- } +- +- /** +- * Nexus commands +- * +- * @throws Exception +- */ +- +- public void _nexus(NexusCommand.NexusOptions options) throws Exception { +- NexusCommand rc = new NexusCommand(this, options); +- String help = options._command().subCmd(options, rc); +- if (help != null) +- out.println(help); +- getInfo(rc); +- rc.close(); +- } +- /** + * Export a bndrun file + */ + +-- +2.7.4 + diff --git a/SOURCES/aQute.libg-3.3.0.pom b/SOURCES/aQute.libg-3.3.0.pom new file mode 100644 index 0000000..b92119e --- /dev/null +++ b/SOURCES/aQute.libg-3.3.0.pom @@ -0,0 +1,41 @@ + + + 4.0.0 + biz.aQute.bnd + aQute.libg + 3.3.0 + A library to be statically linked. Contains many small utilities. This bundle should not be installed in a framework, it is compile only. + aQute.libg + http://bnd.bndtools.org/ + + Bndtools + http://bndtools.org/ + + + + Apache-2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + Apache License, Version 2.0 + + + + https://github.com/bndtools/bnd + scm:git:https://github.com/bndtools/bnd.git + scm:git:git@github.com:bndtools/bnd.git + + + + pkriens + Peter.Kriens@aQute.biz + Peter Kriens + bndtools + http://bndtools.org + + architect + developer + + 1 + + + diff --git a/SOURCES/biz.aQute.bnd-3.3.0.pom b/SOURCES/biz.aQute.bnd-3.3.0.pom new file mode 100644 index 0000000..bd7b3dc --- /dev/null +++ b/SOURCES/biz.aQute.bnd-3.3.0.pom @@ -0,0 +1,41 @@ + + + 4.0.0 + biz.aQute.bnd + biz.aQute.bnd + 3.3.0 + This command line utility is the Swiss army knife of OSGi. It provides you with a breadth of tools to understand and manage OSGi based systems. This project basically uses bndlib. + biz.aQute.bnd + http://bnd.bndtools.org/ + + Bndtools + http://bndtools.org/ + + + + Apache-2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + Apache License, Version 2.0 + + + + https://github.com/bndtools/bnd + scm:git:https://github.com/bndtools/bnd.git + scm:git:git@github.com:bndtools/bnd.git + + + + pkriens + Peter.Kriens@aQute.biz + Peter Kriens + bndtools + http://bndtools.org + + architect + developer + + 1 + + + diff --git a/SOURCES/biz.aQute.bnd.annotation-3.3.0.pom b/SOURCES/biz.aQute.bnd.annotation-3.3.0.pom new file mode 100644 index 0000000..a4ba830 --- /dev/null +++ b/SOURCES/biz.aQute.bnd.annotation-3.3.0.pom @@ -0,0 +1,41 @@ + + + 4.0.0 + biz.aQute.bnd + biz.aQute.bnd.annotation + 3.3.0 + Contains only the annotations for bnd. + bnd Annotations Library + http://www.aQute.biz/Code/Bnd + + Bndtools + http://bndtools.org/ + + + + Apache-2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + Apache License, Version 2.0 + + + + https://github.com/bndtools/bnd + scm:git:https://github.com/bndtools/bnd.git + scm:git:git@github.com:bndtools/bnd.git + + + + pkriens + Peter.Kriens@aQute.biz + Peter Kriens + bndtools + http://bndtools.org + + architect + developer + + 1 + + + diff --git a/SOURCES/biz.aQute.bndlib-3.3.0.pom b/SOURCES/biz.aQute.bndlib-3.3.0.pom new file mode 100644 index 0000000..f5b73fc --- /dev/null +++ b/SOURCES/biz.aQute.bndlib-3.3.0.pom @@ -0,0 +1,37 @@ + + + 4.0.0 + biz.aQute.bnd + biz.aQute.bndlib + 3.3.0 + A Swiss Army Knife for OSGi + bndlib + http://bnd.bndtools.org/ + + Bndtools + http://bndtools.org/ + + + + Apache-2.0 + http://www.apache.org/licenses/LICENSE-2.0 + repo + Apache License, Version 2.0 + + + + https://github.com/bndtools/bnd + scm:git:https://github.com/bndtools/bnd.git + scm:git:git@github.com:bndtools/bnd.git + + + + peter.kriens@aQute.biz + peter.kriens@aQute.biz + + + njbartlett@gmail.com + njbartlett@gmail.com + + + diff --git a/SOURCES/parent.pom b/SOURCES/parent.pom new file mode 100644 index 0000000..d442c78 --- /dev/null +++ b/SOURCES/parent.pom @@ -0,0 +1,198 @@ + + + 4.0.0 + + biz.aQute.bnd + parent + @VERSION@ + + pom + + Parent project for bnd tool suite + Project information for bnd. + http://www.aQute.biz/Code/Bnd + + + aQute SARL + http://www.aQute.biz + + + + + Apache Software License 2.0 + http://www.opensource.org/licenses/apache2.0.php + repo + + + + + + bnd + Peter Kriens + aQute SARL + + Primary Developer + + + + bjhargrave + BJ Hargrave + + + mcculls + Stuart McCulloch + + + njbartlett + Neil Bartlett + Paremus + + + fhuberts + Ferry Huberts + Pelagic + + + psoreide + PK Søreide + Comactivity AB + + + + + + Carter Smithhart + + + + Chabanois Cédric + Entropysoft + + + + Paul Bakker + Luminis Technologies + + + + David Jencks + + + + Rafał Krzewski + Caltha - Krzewski, Mach, Potempski Sp. J. + + + + Xavier Fournet + + + + Casey Crabb + + + + David Bosschaert + + + + Harald Wellmann + + + + Jan Willem Janssen + + + + Marcel Offermans + + + + Marian Grigoras + + + + Markus Wolf + + + + Nicolas Lalevée + + + + Pierre Labiausse + + + + Raymond Auge + + + + Tim Ward + + + + Bram de Kruijff + + + + Tang Yong + + + + Gregory Amerson + + + + Guillaume Nodet + + + + Marc de Jonge + + + + Roman Shevchenko + + + + + https://github.com/bndtools/bnd + scm:git:git://github.com/bndtools/bnd.git + scm:git:ssh://github.com/bndtools/bnd.git + + + + aQute.libg + biz.aQute.bndlib + biz.aQute.bnd + biz.aQute.bnd.annotation + maven + + + + src + + + src/ + + **/*.java + **/packageinfo + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.5.1 + + 1.8 + 1.8 + + + + + + diff --git a/SOURCES/repack-tarball.sh b/SOURCES/repack-tarball.sh new file mode 100755 index 0000000..a770dd0 --- /dev/null +++ b/SOURCES/repack-tarball.sh @@ -0,0 +1,6 @@ +#!/bin/bash +VERSION=`sed -rn 's/^Version:\s*([0-9.]+)/\1/p' aqute-bnd.spec` +wget https://github.com/bndtools/bnd/archive/$VERSION.REL.tar.gz +gunzip $VERSION.REL.tar.gz +tar tf $VERSION.REL.tar | grep -E '\.(.ar|exe|tar\.(gz|bz2|xz)|zip)$' | xargs tar --delete --file $VERSION.REL.tar +gzip $VERSION.REL.tar diff --git a/SPECS/aqute-bnd.spec b/SPECS/aqute-bnd.spec new file mode 100644 index 0000000..517f832 --- /dev/null +++ b/SPECS/aqute-bnd.spec @@ -0,0 +1,309 @@ +%{?scl:%scl_package aqute-bnd} +%{!?scl:%global pkg_name %{name}} + +%bcond_without ant_tasks +%if 0%{?fedora} +%bcond_without maven_plugin +%endif + +Name: %{?scl_prefix}aqute-bnd +Version: 3.3.0 +Release: 6.2%{?dist} +Summary: BND Tool +License: ASL 2.0 +URL: http://bnd.bndtools.org/ +BuildArch: noarch + +Source0: %{version}.REL.tar.gz +# removes bundled jars from upstream tarball +# run as: +# ./repack-tarball.sh +Source1: repack-tarball.sh + +Source2: parent.pom +Source3: https://repo1.maven.org/maven2/biz/aQute/bnd/aQute.libg/%{version}/aQute.libg-%{version}.pom +Source4: https://repo1.maven.org/maven2/biz/aQute/bnd/biz.aQute.bnd/%{version}/biz.aQute.bnd-%{version}.pom +Source5: https://repo1.maven.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/%{version}/biz.aQute.bndlib-%{version}.pom +Source6: https://repo1.maven.org/maven2/biz/aQute/bnd/biz.aQute.bnd.annotation/%{version}/biz.aQute.bnd.annotation-%{version}.pom + +Patch0: 0001-Port-to-Java-8.patch +Patch1: 0002-Disable-removed-commands.patch + +BuildRequires: %{?scl_prefix}maven-local +BuildRequires: %{?scl_prefix}mvn(org.osgi:osgi.annotation) +BuildRequires: %{?scl_prefix}mvn(org.osgi:osgi.cmpn) +BuildRequires: %{?scl_prefix}mvn(org.osgi:osgi.core) +BuildRequires: %{?scl_prefix}mvn(org.slf4j:slf4j-api) +BuildRequires: %{?scl_prefix}mvn(org.slf4j:slf4j-simple) +%if %{with ant_tasks} +BuildRequires: %{?scl_prefix}mvn(org.apache.ant:ant) +%endif +%if %{with maven_plugin} +BuildRequires: %{?scl_prefix}mvn(junit:junit) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-artifact) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-compat) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-core) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven:maven-plugin-api) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.plugins:maven-plugin-plugin) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.plugins:maven-source-plugin) +BuildRequires: %{?scl_prefix}mvn(org.apache.maven.plugin-tools:maven-plugin-annotations) +BuildRequires: %{?scl_prefix}mvn(org.eclipse.aether:aether-api) +BuildRequires: %{?scl_prefix}mvn(org.sonatype.plexus:plexus-build-api) +%endif + +%description +The bnd tool helps you create and diagnose OSGi bundles. +The key functions are: +- Show the manifest and JAR contents of a bundle +- Wrap a JAR so that it becomes a bundle +- Create a Bundle from a specification and a class path +- Verify the validity of the manifest entries +The tool is capable of acting as: +- Command line tool +- File format +- Directives +- Use of macros + +%package -n %{?scl_prefix}aqute-bndlib +Summary: BND library + +%description -n %{?scl_prefix}aqute-bndlib +%{summary}. + +%if %{with maven_plugin} + +%package -n %{?scl_prefix}bnd-maven-plugin +Summary: BND Maven plugin + +%description -n %{?scl_prefix}bnd-maven-plugin +%{summary}. +%endif + +%package javadoc +Summary: Javadoc for %{pkg_name} + +%description javadoc +API documentation for %{pkg_name}. + +%prep +%setup -q -n bnd-%{version}.REL + +rm gradlew* + +%patch0 -p1 +%patch1 -p1 + +# the commands pull in more dependencies than we want (felix-resolver, jetty) +rm biz.aQute.bnd/src/aQute/bnd/main/{RemoteCommand,ResolveCommand}.java + +sed 's/@VERSION@/%{version}/' %SOURCE2 > pom.xml +sed -i 's|${Bundle-Version}|%{version}|' biz.aQute.bndlib/src/aQute/bnd/osgi/bnd.info + +%if %{without ant_tasks} +rm -rf biz.aQute.bnd/src/aQute/bnd/ant +%endif + +%if %{without maven_plugin} +%pom_disable_module maven +%endif + +# libg +pushd aQute.libg +cp -p %{SOURCE3} pom.xml +%pom_add_parent biz.aQute.bnd:parent:%{version} +%pom_add_dep org.osgi:osgi.cmpn +%pom_add_dep org.slf4j:slf4j-api +popd + +# bndlib.annotations +pushd biz.aQute.bnd.annotation +cp -p %{SOURCE6} pom.xml +%pom_add_parent biz.aQute.bnd:parent:%{version} +popd + +# bndlib +pushd biz.aQute.bndlib +cp -p %{SOURCE5} pom.xml +%pom_add_parent biz.aQute.bnd:parent:%{version} + +%pom_add_dep org.osgi:osgi.annotation +%pom_add_dep org.osgi:osgi.core +%pom_add_dep org.osgi:osgi.cmpn +%pom_add_dep org.slf4j:slf4j-api +%pom_add_dep biz.aQute.bnd:aQute.libg:%{version} +%pom_add_dep biz.aQute.bnd:biz.aQute.bnd.annotation:%{version} +popd + +# bnd +pushd biz.aQute.bnd +cp -p %{SOURCE4} pom.xml +%pom_add_parent biz.aQute.bnd:parent:%{version} + +%pom_add_dep biz.aQute.bnd:biz.aQute.bndlib:%{version} +%pom_add_dep biz.aQute.bnd:aQute.libg:%{version} +%pom_add_dep biz.aQute.bnd:biz.aQute.bnd.annotation:%{version} +%if %{with ant_tasks} +%pom_add_dep org.apache.ant:ant +%endif +%pom_add_dep org.osgi:osgi.annotation +%pom_add_dep org.osgi:osgi.core +%pom_add_dep org.osgi:osgi.cmpn +%pom_add_dep org.slf4j:slf4j-api + +%pom_add_dep org.slf4j:slf4j-simple:runtime +popd + +# maven-plugins + +# Unavailable reactor dependency - org.osgi.impl.bundle.repoindex.cli +%pom_disable_module bnd-indexer-maven-plugin maven +# Requires unbuilt parts of bnd +%pom_disable_module bnd-export-maven-plugin maven +# Integration tests require Internet access +%pom_remove_plugin -r :maven-invoker-plugin maven + + +%mvn_alias biz.aQute.bnd:biz.aQute.bnd :bnd biz.aQute:bnd +%mvn_alias biz.aQute.bnd:biz.aQute.bndlib :bndlib biz.aQute:bndlib + +%mvn_package biz.aQute.bnd:biz.aQute.bndlib bndlib +%mvn_package biz.aQute.bnd:biz.aQute.bnd.annotation bndlib +%mvn_package biz.aQute.bnd:aQute.libg bndlib +%mvn_package biz.aQute.bnd:bnd-maven-plugin maven +%mvn_package biz.aQute.bnd:bnd-baseline-maven-plugin maven +%mvn_package biz.aQute.bnd:parent __noinstall +%mvn_package biz.aQute.bnd:bnd-plugin-parent __noinstall + +%build +%mvn_build -- -Dproject.build.sourceEncoding=UTF-8 + +%install +%mvn_install + +%if %{with ant_tasks} +install -d -m 755 %{buildroot}%{_sysconfdir}/ant.d +echo "aqute-bnd slf4j/api slf4j/simple osgi-annotation osgi-core osgi-compendium" >%{buildroot}%{_sysconfdir}/ant.d/%{pkg_name} +%endif + +%jpackage_script aQute.bnd.main.bnd "" "" aqute-bnd:slf4j/slf4j-api:slf4j/slf4j-simple:osgi-annotation:osgi-core:osgi-compendium bnd 1 + +%files -f .mfiles +%license LICENSE +%{_bindir}/bnd +%if %{with ant_tasks} +%config(noreplace) %{_sysconfdir}/ant.d/* +%endif + +%files -n %{?scl_prefix}aqute-bndlib -f .mfiles-bndlib +%license LICENSE + +%if %{with maven_plugin} + +%files -n %{?scl_prefix}bnd-maven-plugin -f .mfiles-maven +%endif + +%files javadoc -f .mfiles-javadoc +%license LICENSE + +%changelog +* Thu Jun 22 2017 Michael Simacek - 3.3.0-6.2 +- Mass rebuild 2017-06-22 + +* Wed Jun 21 2017 Java Maintainers - 3.3.0-6.1 +- Automated package import and SCL-ization + +* Fri Feb 10 2017 Fedora Release Engineering - 3.3.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Oct 10 2016 Mikolaj Izdebski - 3.3.0-5 +- Don't use legacy Ant artifact coordinates + +* Mon Oct 10 2016 Mikolaj Izdebski - 3.3.0-4 +- Allow conditional builds without Ant tasks + +* Mon Oct 10 2016 Mikolaj Izdebski - 3.3.0-3 +- Allow conditional builds without Maven plugin + +* Thu Oct 06 2016 Michael Simacek - 3.3.0-2 +- Fix ant.d classpath + +* Thu Sep 29 2016 Michael Simacek - 3.3.0-1 +- Update to upstream version 3.3.0 +- Build against osgi-{core,compendium} + +* Tue Sep 27 2016 Mikolaj Izdebski - 3.2.0-5 +- Add felix-scr-annotations to classpath + +* Mon Sep 26 2016 Michael Simacek - 3.2.0-4 +- Use felix-annotations + +* Wed Sep 14 2016 Mikolaj Izdebski - 3.2.0-3 +- Build and install Maven plugins +- Resolves: rhbz#1375904 + +* Wed Jun 1 2016 Mikolaj Izdebski - 3.2.0-2 +- Install ant.d config files + +* Tue May 24 2016 Michael Simacek - 3.2.0-1 +- Update to upstream version 3.2.0 + +* Wed Feb 03 2016 Fedora Release Engineering - 2.4.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jul 17 2015 Michael Simacek - 2.4.1-2 +- Fix Tool header generation + +* Wed Jul 08 2015 Michael Simacek - 2.4.1-1 +- Update to upstream version 2.4.1 + +* Wed Jun 17 2015 Fedora Release Engineering - 0.0.363-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Thu May 14 2015 Mikolaj Izdebski - 0.0.363-15 +- Disable javadoc doclint + +* Sat Jun 07 2014 Fedora Release Engineering - 0.0.363-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Thu May 29 2014 Mikolaj Izdebski - 0.0.363-13 +- Use .mfiles generated during build + +* Fri May 09 2014 Jaromir Capik - 0.0.363-12 +- Fixing ambiguous base64 class + +* Fri May 09 2014 Gil Cattaneo 0.0.363-11 +- fix rhbz#991985 +- add source compatibility with ant 1.9 +- remove and rebuild from source aQute.runtime.jar +- update to current packaging guidelines + +* Tue Mar 04 2014 Stanislav Ochotnicky - 0.0.363-10 +- Use Requires: java-headless rebuild (#1067528) + +* Sat Aug 03 2013 Fedora Release Engineering - 0.0.363-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Feb 13 2013 Fedora Release Engineering - 0.0.363-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jul 18 2012 Fedora Release Engineering - 0.0.363-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Wed Apr 25 2012 Stanislav Ochotnicky - 0.0.363-6 +- Get rid of unusable eclipse plugins to simplify dependencies + +* Fri Mar 02 2012 Jaromir Capik - 0.0.363-5 +- Fixing build failures on f16 and later + +* Thu Jan 12 2012 Fedora Release Engineering - 0.0.363-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Sep 22 2011 Jaromir Capik - 0.0.363-3 +- Resurrection of bundled non-class files + +* Thu Sep 22 2011 Jaromir Capik - 0.0.363-2 +- Bundled classes removed +- jpackage-utils dependency added to the javadoc subpackage + +* Wed Sep 21 2011 Jaromir Capik - 0.0.363-1 +- Initial version (cloned from aqute-bndlib 0.0.363)