From 71bb0865a6d2730a39dfb379f97fc757dbe98fa1 Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Sun, 20 Jul 2014 11:30:22 +0200 Subject: [PATCH 01/82] Update to upstream version 1.2 --- .gitignore | 1 + apache-commons-logging.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fa99b2a..ac92f7c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ commons-logging-1.1.1-src.tar.gz /commons-logging-1.1.2-src.tar.gz /commons-logging-1.1.3-src.tar.gz +/commons-logging-1.2-src.tar.gz diff --git a/apache-commons-logging.spec b/apache-commons-logging.spec index 6d08b54..1452c0d 100644 --- a/apache-commons-logging.spec +++ b/apache-commons-logging.spec @@ -3,8 +3,8 @@ %global short_name commons-%{base_name} Name: apache-%{short_name} -Version: 1.1.3 -Release: 13%{?dist} +Version: 1.2 +Release: 1%{?dist} Summary: Apache Commons Logging License: ASL 2.0 URL: http://commons.apache.org/%{base_name} @@ -102,6 +102,9 @@ install -pm 644 %{SOURCE2} %{buildroot}/%{_mavenpomdir}/JPP-%{short_name}-api.po # ----------------------------------------------------------------------------- %changelog +* Sun Jul 20 2014 Mikolaj Izdebski - 1.2-1 +- Update to upstream version 1.2 + * Sat Jun 07 2014 Fedora Release Engineering - 1.1.3-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild diff --git a/sources b/sources index 95751b9..87aa2f2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e8e197d628436490886d17cffa108fe3 commons-logging-1.1.3-src.tar.gz +ce977548f1cbf46918e93cd38ac35163 commons-logging-1.2-src.tar.gz From 8994abf010eb56058e70f40499e9bfabea4485cb Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Sun, 20 Jul 2014 12:52:14 +0200 Subject: [PATCH 02/82] Fix BR on commons-parent --- apache-commons-logging.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apache-commons-logging.spec b/apache-commons-logging.spec index 1452c0d..eb2fd2a 100644 --- a/apache-commons-logging.spec +++ b/apache-commons-logging.spec @@ -18,7 +18,7 @@ BuildRequires: mvn(javax.servlet:servlet-api) BuildRequires: mvn(junit:junit) BuildRequires: mvn(log4j:log4j) BuildRequires: mvn(logkit:logkit) -BuildRequires: mvn(org.apache.commons:commons-parent) +BuildRequires: mvn(org.apache.commons:commons-parent:pom:) BuildRequires: mvn(org.apache.maven.plugins:maven-failsafe-plugin) BuildRequires: mvn(org.apache.maven.plugins:maven-dependency-plugin) BuildRequires: mvn(org.codehaus.mojo:build-helper-maven-plugin) From 0ccbd402b937c33543d937a9aa54e4394b9286e3 Mon Sep 17 00:00:00 2001 From: Mikolaj Izdebski Date: Wed, 30 Jul 2014 12:50:24 +0200 Subject: [PATCH 03/82] Generate different Bundle-SymbolicName for different JARs - Resolves: rhbz#1123055 --- ...nt-Bundle-SymbolicName-for-different.patch | 99 +++++++++++++++++++ apache-commons-logging.spec | 9 +- 2 files changed, 107 insertions(+), 1 deletion(-) create mode 100644 0001-Generate-different-Bundle-SymbolicName-for-different.patch diff --git a/0001-Generate-different-Bundle-SymbolicName-for-different.patch b/0001-Generate-different-Bundle-SymbolicName-for-different.patch new file mode 100644 index 0000000..52943b1 --- /dev/null +++ b/0001-Generate-different-Bundle-SymbolicName-for-different.patch @@ -0,0 +1,99 @@ +From 00823b8008bffc5dd65c9e8de604994040a3190d Mon Sep 17 00:00:00 2001 +From: Mikolaj Izdebski +Date: Tue, 29 Jul 2014 09:00:03 +0200 +Subject: [PATCH] Generate different Bundle-SymbolicName for different JARs + +--- + pom.xml | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ + 1 file changed, 55 insertions(+) + +diff --git a/pom.xml b/pom.xml +index cdad31c..5707595 100644 +--- a/pom.xml ++++ b/pom.xml +@@ -179,6 +179,52 @@ under the License. + + + ++ ++ org.apache.felix ++ maven-bundle-plugin ++ ++ ++ tests-bundle-manifest ++ process-classes ++ ++ manifest ++ ++ ++ ${project.build.directory}/osgi-tests ++ ++ ${commons.osgi.symbolicName}.tests ++ ++ ++ ++ ++ api-bundle-manifest ++ process-classes ++ ++ manifest ++ ++ ++ ${project.build.directory}/osgi-api ++ ++ ${commons.osgi.symbolicName}.api ++ ++ ++ ++ ++ adapters-bundle-manifest ++ process-classes ++ ++ manifest ++ ++ ++ ${project.build.directory}/osgi-adapters ++ ++ ${commons.osgi.symbolicName}.adapters ++ ++ ++ ++ ++ ++ + +- org.codehaus.mojo +- build-helper-maven-plugin +- 1.0 +- +- +- attach-artifacts +- package +- +- attach-artifact +- +- +- +- +- ${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar +- jar +- adapters +- +- +- ${project.build.directory}/${project.artifactId}-api-${project.version}.jar +- jar +- api +- +- +- +- +- +- +- +- +- -- org.codehaus.mojo -- build-helper-maven-plugin -- 1.0 -- -- -- attach-artifacts -- package -- -- attach-artifact -- -- -- -- -- ${project.build.directory}/${project.artifactId}-adapters-${project.version}.jar -- jar -- adapters -- -- -- ${project.build.directory}/${project.artifactId}-api-${project.version}.jar -- jar -- api -- -- -- -- -- -- -- -- --