Orphaned for 6+ weeks
This commit is contained in:
parent
1c2d3b2f94
commit
38eab5ebb3
6 changed files with 1 additions and 224 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -1,2 +0,0 @@
|
|||
commons-discovery-0.4-src.tar.gz
|
||||
commons-discovery-0.5-src.tar.gz
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
--- src/conf/MANIFEST.MF.orig 2006-11-30 00:15:55.000000000 +0100
|
||||
+++ src/conf/MANIFEST.MF 2009-05-27 23:35:42.000000000 +0200
|
||||
@@ -6,4 +6,22 @@ Specification-Vendor: The Apache Softwar
|
||||
Implementation-Title: @package@
|
||||
Implementation-Vendor: The Apache Software Foundation
|
||||
Implementation-Version: @version@
|
||||
+Bundle-ManifestVersion: 2
|
||||
+Bundle-Name: Jakarta-Commons Discovery
|
||||
+Specification-Version: 1.0
|
||||
+Bundle-SymbolicName: org.apache.commons.discovery
|
||||
+Bundle-Version: 0.2.0.qualifier
|
||||
+Bundle-Vendor: Eclipse.org
|
||||
+Bundle-Localization: plugin
|
||||
+Bundle-RequiredExecutionEnvironment: J2SE-1.4
|
||||
+Export-Package: org.apache.commons.discovery,
|
||||
+ org.apache.commons.discovery.ant,
|
||||
+ org.apache.commons.discovery.jdk,
|
||||
+ org.apache.commons.discovery.log,
|
||||
+ org.apache.commons.discovery.resource,
|
||||
+ org.apache.commons.discovery.resource.classes,
|
||||
+ org.apache.commons.discovery.resource.names,
|
||||
+ org.apache.commons.discovery.tools
|
||||
+Require-Bundle: org.junit;bundle-version="[3.8.0,4.0.0)";resolution:=optional
|
||||
+Import-Package: org.apache.commons.logging;version="[1.0.4,2.0.0)"
|
||||
|
||||
|
|
@ -1,41 +0,0 @@
|
|||
From e61f06eccf6946a6dc4633fe39206d0ad427caab Mon Sep 17 00:00:00 2001
|
||||
From: Michal Srb <msrb@redhat.com>
|
||||
Date: Wed, 7 Aug 2013 07:12:16 +0200
|
||||
Subject: [PATCH] Remove unreliable test
|
||||
|
||||
---
|
||||
.../org/apache/commons/discovery/test/TestAll.java | 20 --------------------
|
||||
1 file changed, 20 deletions(-)
|
||||
|
||||
diff --git a/src/test/org/apache/commons/discovery/test/TestAll.java b/src/test/org/apache/commons/discovery/test/TestAll.java
|
||||
index 623a6d8..fa81585 100644
|
||||
--- a/src/test/org/apache/commons/discovery/test/TestAll.java
|
||||
+++ b/src/test/org/apache/commons/discovery/test/TestAll.java
|
||||
@@ -291,24 +291,4 @@ public class TestAll {
|
||||
assertNotNull(serviceImpl);
|
||||
assertEquals(TestImpl2_1.class, serviceImpl.getClass());
|
||||
}
|
||||
-
|
||||
- @Test
|
||||
- public void findImplementationsViaService() {
|
||||
- final int expectedLogImplementations = 2;
|
||||
- int actualLogImplementations = 0;
|
||||
-
|
||||
- Enumeration<? extends Log> logImplementations = providers(newSPInterface(Log.class,
|
||||
- new Class<?>[]{ String.class },
|
||||
- new Object[]{ getClass().getName() }),
|
||||
- null);
|
||||
-
|
||||
- while (logImplementations.hasMoreElements()) {
|
||||
- Log log = logImplementations.nextElement();
|
||||
- assertNotNull(log);
|
||||
- actualLogImplementations++;
|
||||
- }
|
||||
-
|
||||
- assertEquals(expectedLogImplementations, actualLogImplementations);
|
||||
- }
|
||||
-
|
||||
}
|
||||
--
|
||||
1.8.1.4
|
||||
|
||||
|
|
@ -1,155 +0,0 @@
|
|||
%global base_name discovery
|
||||
%global short_name commons-%{base_name}
|
||||
|
||||
Name: apache-%{short_name}
|
||||
Version: 0.5
|
||||
Release: 24%{?dist}
|
||||
Epoch: 2
|
||||
Summary: Apache Commons Discovery
|
||||
License: ASL 2.0
|
||||
URL: http://commons.apache.org/%{base_name}
|
||||
Source0: http://www.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
||||
Patch0: %{name}-addosgimanifest.patch
|
||||
Patch1: %{name}-remove-unreliable-test.patch
|
||||
BuildArch: noarch
|
||||
|
||||
BuildRequires: maven-local
|
||||
BuildRequires: mvn(commons-logging:commons-logging)
|
||||
BuildRequires: mvn(junit:junit)
|
||||
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
||||
BuildRequires: mvn(org.apache.maven.plugins:maven-assembly-plugin)
|
||||
|
||||
%description
|
||||
The Discovery component is about discovering, or finding, implementations for
|
||||
pluggable interfaces. Pluggable interfaces are specified with the intent that
|
||||
multiple implementations are, or will be, available to provide the service
|
||||
described by the interface. Discovery provides facilities for finding and
|
||||
instantiating classes, and for lifecycle management of singleton (factory)
|
||||
classes.
|
||||
|
||||
%package javadoc
|
||||
Summary: API documentation for %{name}
|
||||
|
||||
%description javadoc
|
||||
%{summary}.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{short_name}-%{version}-src
|
||||
%patch0
|
||||
%patch1 -p1
|
||||
%mvn_file : %{short_name} %{name}
|
||||
|
||||
%pom_add_plugin "org.apache.maven.plugins:maven-javadoc-plugin" . "
|
||||
<configuration>
|
||||
<additionalparam>-Xdoclint:none</additionalparam>
|
||||
</configuration>
|
||||
"
|
||||
|
||||
%build
|
||||
%mvn_build -- -Dcommons.osgi.symbolicName=org.apache.commons.discovery
|
||||
|
||||
%install
|
||||
%mvn_install
|
||||
|
||||
%files -f .mfiles
|
||||
%doc RELEASE-NOTES.txt
|
||||
%license LICENSE.txt NOTICE.txt
|
||||
|
||||
%files javadoc -f .mfiles-javadoc
|
||||
%license LICENSE.txt NOTICE.txt
|
||||
|
||||
|
||||
%changelog
|
||||
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.5-24
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sat Mar 16 2019 Mat Booth <mat.booth@redhat.com> - 2:0.5-23
|
||||
- Fix javadoc generation
|
||||
|
||||
* Thu Feb 07 2019 Mat Booth <mat.booth@redhat.com> - 2:0.5-22
|
||||
- Rebuild to regenerate OSGi metadata
|
||||
|
||||
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.5-21
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.5-20
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.5-19
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.5-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.5-17
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Wed Jun 15 2016 Mikolaj Izdebski <mizdebsk@redhat.com> - 2:0.5-16
|
||||
- Add missing build-requires
|
||||
|
||||
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2:0.5-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:0.5-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Tue Oct 14 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2:0.5-13
|
||||
- Remove legacy Obsoletes/Provides for jakarta-commons
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:0.5-12
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Mon May 26 2014 Mikolaj Izdebski <mizdebsk@redhat.com> - 2:0.5-11
|
||||
- Remove BuildRequires on maven-surefire-provider-junit4
|
||||
|
||||
* Tue Mar 04 2014 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2:0.5-10
|
||||
- Use Requires: java-headless rebuild (#1067528)
|
||||
|
||||
* Wed Aug 07 2013 Michal Srb <msrb@redhat.com> - 2:0.5-9
|
||||
- Remove unreliable test (Resolves: #991968)
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:0.5-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:0.5-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Wed Feb 06 2013 Java SIG <java-devel@lists.fedoraproject.org> - 2:0.5-6
|
||||
- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild
|
||||
- Replace maven BuildRequires with maven-local
|
||||
|
||||
* Tue Jan 15 2013 Michal Srb <msrb@redhat.com> - 2:0.5-5
|
||||
- Build with xmvn
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:0.5-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Thu May 17 2012 gil cattaneo <puntogil@libero.it> - 2:0.5-3
|
||||
- add maven pom
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:0.5-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Nov 7 2011 Alexander Kurtakov <akurtako@redhat.com> 2:0.5-1
|
||||
- Update to 0.5 upstream release.
|
||||
- Build with maven.
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2:0.4-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Jul 8 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2:0.4-5
|
||||
- Add license to javadoc subpackage
|
||||
- Fix jar symlink installation
|
||||
|
||||
* Wed May 12 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2:0.4-4
|
||||
- Add obsoletes to javadoc subpackage
|
||||
- Add proper symlinks for unversioned jar files
|
||||
|
||||
* Fri May 7 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2:0.4-3
|
||||
- Add jpackage-utils as dep for -javadoc subpackage
|
||||
|
||||
* Fri May 7 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 2:0.4-2
|
||||
- Fix provides
|
||||
|
||||
* Thu May 6 2010 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.4-1
|
||||
- Rename and cleanup of jakarta-commons-discovery
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
9222c64ae780df6301de7152b4e55874 commons-discovery-0.5-src.tar.gz
|
||||
Reference in a new issue