diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 32fc3ce..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -/jboss-common-core-2.2.18.GA.tar.xz -/jboss-common-core-2.2.22.GA.tar.xz -/jboss-common-core-2.5.0.Final.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/jboss-common-core-2.2.22.GA-URLLister-removal.patch b/jboss-common-core-2.2.22.GA-URLLister-removal.patch deleted file mode 100644 index 2795204..0000000 --- a/jboss-common-core-2.2.22.GA-URLLister-removal.patch +++ /dev/null @@ -1,644 +0,0 @@ -From 36cfc148eb48bc06a9642e7b1ceec7ab32bf1942 Mon Sep 17 00:00:00 2001 -From: Marek Goldmann -Date: Tue, 1 Jul 2014 11:11:56 +0200 -Subject: [PATCH] URLLister removal patch - ---- - pom.xml | 20 +-- - .../java/org/jboss/net/protocol/URLLister.java | 89 ----------- - .../java/org/jboss/net/protocol/URLListerBase.java | 97 ------------ - .../org/jboss/net/protocol/URLListerFactory.java | 89 ----------- - .../org/jboss/net/protocol/file/FileURLLister.java | 168 --------------------- - .../org/jboss/net/protocol/http/DavURLLister.java | 115 -------------- - 6 files changed, 2 insertions(+), 576 deletions(-) - delete mode 100644 src/main/java/org/jboss/net/protocol/URLLister.java - delete mode 100644 src/main/java/org/jboss/net/protocol/URLListerBase.java - delete mode 100644 src/main/java/org/jboss/net/protocol/URLListerFactory.java - delete mode 100644 src/main/java/org/jboss/net/protocol/file/FileURLLister.java - delete mode 100644 src/main/java/org/jboss/net/protocol/http/DavURLLister.java - -diff --git a/pom.xml b/pom.xml -index c0f3aa7..388b6db 100644 ---- a/pom.xml -+++ b/pom.xml -@@ -103,27 +103,11 @@ - - - -- -- -- commons-httpclient -- commons-httpclient -- 2.0.2 -- compile -- true -- -- -- -- slide -- webdavlib -- 2.0 -- compile -- true -- - - - org.jboss.logging -- jboss-logging-spi -- 2.1.0.GA -+ jboss-logging -+ 3.0.0.GA - compile - - -diff --git a/src/main/java/org/jboss/net/protocol/URLLister.java b/src/main/java/org/jboss/net/protocol/URLLister.java -deleted file mode 100644 -index 8467cea..0000000 ---- a/src/main/java/org/jboss/net/protocol/URLLister.java -+++ /dev/null -@@ -1,89 +0,0 @@ --/* -- * JBoss, Home of Professional Open Source -- * Copyright 2005, JBoss Inc., and individual contributors as indicated -- * by the @authors tag. See the copyright.txt in the distribution for a -- * full listing of individual contributors. -- * -- * This is free software; you can redistribute it and/or modify it -- * under the terms of the GNU Lesser General Public License as -- * published by the Free Software Foundation; either version 2.1 of -- * the License, or (at your option) any later version. -- * -- * This software is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Lesser General Public License for more details. -- * -- * You should have received a copy of the GNU Lesser General Public -- * License along with this software; if not, write to the Free -- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. -- */ --package org.jboss.net.protocol; -- --import java.io.IOException; --import java.net.URL; --import java.util.Collection; -- --/** -- * Interface defining methods that can be used to list the contents of a URL -- * collection irrespective of the protocol. -- */ --@SuppressWarnings("unchecked") --public interface URLLister { -- /** -- * List the members of the given collection URL that match the patterns -- * supplied and, if it contains directory that contains NO dot in the name and -- * scanNonDottedSubDirs is true, recursively finds URL in these directories. -- * @param baseUrl the URL to list; must end in "/" -- * @param patterns the patterns to match (separated by ',') -- * @param scanNonDottedSubDirs enables recursive search for directories containing no dots -- * @return a Collection of URLs that match -- * @throws IOException if there was a problem getting the list -- */ -- Collection listMembers(URL baseUrl, String patterns, boolean scanNonDottedSubDirs) throws IOException; -- -- /** -- * List the members of the given collection URL that match the patterns -- * supplied. Doesn't recursively list files contained in directories. -- * @param baseUrl the URL to list; must end in "/" -- * @param patterns the patterns to match (separated by ',') -- * @return a Collection of URLs that match -- * @throws IOException if there was a problem getting the list -- */ -- Collection listMembers(URL baseUrl, String patterns) throws IOException; -- -- /** -- * List the members of the given collection that are accepted by the filter -- * @param baseUrl the URL to list; must end in "/" -- * @param filter a filter that is called to determine if a member should -- * be returned -- * @param scanNonDottedSubDirs enables recursive search for directories containing no dots -- * @return a Collection of URLs that match -- * @throws IOException if there was a problem getting the list -- */ -- Collection listMembers(URL baseUrl, URLFilter filter, boolean scanNonDottedSubDirs) throws IOException; -- -- /** -- * List the members of the given collection that are accepted by the filter -- * @param baseUrl the URL to list; must end in "/" -- * @param filter a filter that is called to determine if a member should -- * be returned -- * @return a Collection of URLs that match -- * @throws IOException if there was a problem getting the list -- */ -- Collection listMembers(URL baseUrl, URLFilter filter) throws IOException; -- -- /** -- * Interface defining a filter for listed members. -- */ -- public interface URLFilter { -- /** -- * Determine whether the supplied memberName should be accepted -- * @param baseURL the URL of the collection -- * @param memberName the member of the collection -- * @return true to accept -- */ -- boolean accept(URL baseURL, String memberName); -- } --} -diff --git a/src/main/java/org/jboss/net/protocol/URLListerBase.java b/src/main/java/org/jboss/net/protocol/URLListerBase.java -deleted file mode 100644 -index b9ed963..0000000 ---- a/src/main/java/org/jboss/net/protocol/URLListerBase.java -+++ /dev/null -@@ -1,97 +0,0 @@ --/* -- * JBoss, Home of Professional Open Source -- * Copyright 2005, JBoss Inc., and individual contributors as indicated -- * by the @authors tag. See the copyright.txt in the distribution for a -- * full listing of individual contributors. -- * -- * This is free software; you can redistribute it and/or modify it -- * under the terms of the GNU Lesser General Public License as -- * published by the Free Software Foundation; either version 2.1 of -- * the License, or (at your option) any later version. -- * -- * This software is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Lesser General Public License for more details. -- * -- * You should have received a copy of the GNU Lesser General Public -- * License along with this software; if not, write to the Free -- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. -- */ --package org.jboss.net.protocol; -- --import java.util.Arrays; --import java.util.HashSet; --import java.util.Collection; --import java.util.StringTokenizer; --import java.net.URL; --import java.io.IOException; -- --/** -- * Support class for URLLister's providing protocol independent functionality. -- * -- * @author Scott.Stark@jboss.org -- * @version $Revision: 2787 $ -- */ --@SuppressWarnings("unchecked") --public abstract class URLListerBase implements URLLister --{ -- public Collection listMembers (URL baseUrl, String patterns, -- boolean scanNonDottedSubDirs) throws IOException -- { -- // @todo, externalize the separator? -- StringTokenizer tokens = new StringTokenizer (patterns, ","); -- String[] members = new String[tokens.countTokens ()]; -- for (int i=0; tokens.hasMoreTokens (); i++) -- { -- String token = tokens.nextToken (); -- // Trim leading/trailing spaces as its unlikely they are meaningful -- members[i] = token.trim(); -- } -- URLFilter filter = new URLFilterImpl (members); -- return listMembers (baseUrl, filter, scanNonDottedSubDirs); -- } -- -- public Collection listMembers (URL baseUrl, String patterns) throws IOException -- { -- return listMembers (baseUrl, patterns, false); -- } -- -- /** -- * Inner class representing Filter criteria to be applied to the members -- * of the returned Collection -- */ -- public static class URLFilterImpl implements URLFilter -- { -- protected boolean allowAll; -- protected HashSet constants; -- -- public URLFilterImpl (String[] patterns) -- { -- constants = new HashSet (Arrays.asList (patterns)); -- allowAll = constants.contains ("*"); -- } -- -- public boolean accept (URL baseUrl, String name) -- { -- if (allowAll) -- { -- return true; -- } -- if (constants.contains (name)) -- { -- return true; -- } -- return false; -- } -- } -- -- protected static final URLFilter acceptAllFilter = new URLFilter () -- { -- public boolean accept (URL baseURL, String memberName) -- { -- return true; -- } -- }; --} -diff --git a/src/main/java/org/jboss/net/protocol/URLListerFactory.java b/src/main/java/org/jboss/net/protocol/URLListerFactory.java -deleted file mode 100644 -index edea79d..0000000 ---- a/src/main/java/org/jboss/net/protocol/URLListerFactory.java -+++ /dev/null -@@ -1,89 +0,0 @@ --/* -- * JBoss, Home of Professional Open Source -- * Copyright 2005, JBoss Inc., and individual contributors as indicated -- * by the @authors tag. See the copyright.txt in the distribution for a -- * full listing of individual contributors. -- * -- * This is free software; you can redistribute it and/or modify it -- * under the terms of the GNU Lesser General Public License as -- * published by the Free Software Foundation; either version 2.1 of -- * the License, or (at your option) any later version. -- * -- * This software is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Lesser General Public License for more details. -- * -- * You should have received a copy of the GNU Lesser General Public -- * License along with this software; if not, write to the Free -- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. -- */ --package org.jboss.net.protocol; -- --import java.net.URL; --import java.net.MalformedURLException; --import java.util.HashMap; -- --@SuppressWarnings("unchecked") --public class URLListerFactory { -- private static HashMap defaultClasses = new HashMap(); -- static { -- defaultClasses.put("file", "org.jboss.net.protocol.file.FileURLLister"); -- defaultClasses.put("http", "org.jboss.net.protocol.http.DavURLLister"); -- defaultClasses.put("https", "org.jboss.net.protocol.http.DavURLLister"); -- } -- -- private HashMap classes; -- -- /** -- * Create a URLLister with default listers defined for file and http -- * protocols. -- */ -- public URLListerFactory() { -- classes = (HashMap) defaultClasses.clone(); -- } -- -- /** -- * Create a URL lister using the protocol from the URL -- * @param url the url defining the protocol -- * @return a URLLister capable of listing URLs of that protocol -- * @throws MalformedURLException if no lister could be found for the protocol -- */ -- public URLLister createURLLister(URL url) throws MalformedURLException { -- return createURLLister(url.getProtocol()); -- } -- -- /** -- * Create a URL lister for the supplied protocol -- * @param protocol the protocol -- * @return a URLLister capable of listing URLs of that protocol -- * @throws MalformedURLException if no lister could be found for the protocol -- */ -- public URLLister createURLLister(String protocol) throws MalformedURLException { -- try { -- String className = (String) classes.get(protocol); -- if (className == null) { -- throw new MalformedURLException("No lister class defined for protocol "+protocol); -- } -- -- Class clazz = Thread.currentThread().getContextClassLoader().loadClass(className); -- return (URLLister) clazz.newInstance(); -- } catch (ClassNotFoundException e) { -- throw new MalformedURLException(e.getMessage()); -- } catch (InstantiationException e) { -- throw new MalformedURLException(e.getMessage()); -- } catch (IllegalAccessException e) { -- throw new MalformedURLException(e.getMessage()); -- } -- } -- -- /** -- * Register a URLLister class for a given protocol -- * @param protocol the protocol this class will handle -- * @param className the URLLister implementation to instanciate -- */ -- public void registerListener(String protocol, String className) { -- classes.put(protocol, className); -- } --} -diff --git a/src/main/java/org/jboss/net/protocol/file/FileURLLister.java b/src/main/java/org/jboss/net/protocol/file/FileURLLister.java -deleted file mode 100644 -index b5296a8..0000000 ---- a/src/main/java/org/jboss/net/protocol/file/FileURLLister.java -+++ /dev/null -@@ -1,168 +0,0 @@ --/* -- * JBoss, Home of Professional Open Source -- * Copyright 2005, JBoss Inc., and individual contributors as indicated -- * by the @authors tag. See the copyright.txt in the distribution for a -- * full listing of individual contributors. -- * -- * This is free software; you can redistribute it and/or modify it -- * under the terms of the GNU Lesser General Public License as -- * published by the Free Software Foundation; either version 2.1 of -- * the License, or (at your option) any later version. -- * -- * This software is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Lesser General Public License for more details. -- * -- * You should have received a copy of the GNU Lesser General Public -- * License along with this software; if not, write to the Free -- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. -- */ --package org.jboss.net.protocol.file; -- --import java.io.File; --import java.io.FileNotFoundException; --import java.io.FilenameFilter; --import java.io.IOException; --import java.net.MalformedURLException; --import java.net.URL; --import java.util.ArrayList; --import java.util.Collection; -- --import org.jboss.logging.Logger; --import org.jboss.net.protocol.URLListerBase; -- --/** -- * FileURLLister -- * -- * @author jboynes@users.sf.net -- * @author Dimitris Andreadis -- * @version $Revision: 2787 $ -- */ --@SuppressWarnings("unchecked") --public class FileURLLister extends URLListerBase --{ -- /** The Logger */ -- private static final Logger log = Logger.getLogger(FileURLLister.class); -- -- // Public -------------------------------------------------------- -- -- public Collection listMembers(URL baseUrl, URLFilter filter) throws IOException -- { -- return listMembers(baseUrl, filter, false); -- } -- -- public Collection listMembers(URL baseUrl, URLFilter filter, boolean scanNonDottedSubDirs) throws IOException -- { -- // Make sure this is a directory URL -- String baseUrlString = baseUrl.toString(); -- if (!baseUrlString.endsWith("/")) -- { -- throw new IOException("Does not end with '/', not a directory url: " + baseUrlString); -- } -- -- // Verify the directory actually exists -- File dir = new File(baseUrl.getPath()); -- if (!dir.isDirectory()) -- { -- throw new FileNotFoundException("Not pointing to a directory, url: " + baseUrlString); -- } -- -- // The list of URLs to return -- ArrayList resultList = new ArrayList(); -- -- // Do the actual job -- listFiles(baseUrl, filter, scanNonDottedSubDirs, resultList); -- -- // Done -- return resultList; -- } -- -- // Private ------------------------------------------------------- -- -- /** -- * Starting from baseUrl, that should point to a directory, populate the -- * resultList with the contents that pass the filter (in the form of URLs) -- * and possibly recurse into subdris not containing a '.' in their name. -- */ -- private void listFiles(final URL baseUrl, final URLFilter filter, boolean scanNonDottedSubDirs, ArrayList resultList) -- throws IOException -- { -- // List the files at the current dir level, using the provided filter -- final File baseDir = new File(baseUrl.getPath()); -- String[] filenames = baseDir.list(new FilenameFilter() -- { -- public boolean accept(File dir, String name) -- { -- try -- { -- return filter.accept(baseUrl, name); -- } -- catch (Exception e) -- { -- log.debug("Unexpected exception filtering entry '" + name + "' in directory '" + baseDir + "'", e); -- return true; -- } -- } -- }); -- -- if (filenames == null) -- { -- // This happens only when baseDir not a directory (but this is already -- // checked by the caller) or some unknown IOException happens internally -- // (e.g. run out of file descriptors?). Unfortunately the File API -- // doesn't provide a way to know. -- throw new IOException("Could not list directory '" + baseDir + "', reason unknown"); -- } -- else -- { -- String baseUrlString = baseUrl.toString(); -- -- for (int i = 0; i < filenames.length; i++) -- { -- String filename = filenames[i]; -- -- // Find out if this is a directory -- File file = new File(baseDir, filename); -- boolean isDir = file.isDirectory(); -- -- // The subUrl -- URL subUrl = createURL(baseUrlString, filename, isDir); -- -- // If scanning subdirs and we have a directory, not containing a '.' in -- // the name, recurse into it. This is to allow recursing into grouping -- // dirs like ./deploy/jms, ./deploy/management, etc., avoiding -- // at the same time exploded packages, like .sar, .war, etc. -- if (scanNonDottedSubDirs && isDir && (filename.indexOf('.') == -1)) -- { -- // recurse into it -- listFiles(subUrl, filter, scanNonDottedSubDirs, resultList); -- } -- else -- { -- // just add to the list -- resultList.add(subUrl); -- } -- } -- } -- } -- -- /** -- * Create a URL by concatenating the baseUrlString that should end at '/', -- * the filename, and a trailing slash, if it points to a directory -- */ -- private URL createURL(String baseUrlString, String filename, boolean isDirectory) -- { -- try -- { -- return new URL(baseUrlString + filename + (isDirectory ? "/" : "")); -- } -- catch (MalformedURLException e) -- { -- // shouldn't happen -- throw new IllegalStateException(); -- } -- } -- --} -diff --git a/src/main/java/org/jboss/net/protocol/http/DavURLLister.java b/src/main/java/org/jboss/net/protocol/http/DavURLLister.java -deleted file mode 100644 -index c0a3022..0000000 ---- a/src/main/java/org/jboss/net/protocol/http/DavURLLister.java -+++ /dev/null -@@ -1,115 +0,0 @@ --/* -- * JBoss, Home of Professional Open Source -- * Copyright 2005, JBoss Inc., and individual contributors as indicated -- * by the @authors tag. See the copyright.txt in the distribution for a -- * full listing of individual contributors. -- * -- * This is free software; you can redistribute it and/or modify it -- * under the terms of the GNU Lesser General Public License as -- * published by the Free Software Foundation; either version 2.1 of -- * the License, or (at your option) any later version. -- * -- * This software is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- * Lesser General Public License for more details. -- * -- * You should have received a copy of the GNU Lesser General Public -- * License along with this software; if not, write to the Free -- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA -- * 02110-1301 USA, or see the FSF site: http://www.fsf.org. -- */ --package org.jboss.net.protocol.http; -- --import java.io.IOException; --import java.net.MalformedURLException; --import java.net.URL; --import java.util.ArrayList; --import java.util.Collection; --import java.util.List; -- --import org.apache.commons.httpclient.HttpException; --import org.apache.commons.httpclient.HttpURL; --import org.apache.webdav.lib.WebdavResource; --import org.jboss.net.protocol.URLListerBase; -- --@SuppressWarnings("unchecked") --public class DavURLLister extends URLListerBase --{ -- public Collection listMembers (URL baseUrl, URLFilter filter) throws IOException -- { -- return listMembers (baseUrl, filter, false); -- } -- -- public Collection listMembers (URL baseUrl, URLFilter filter, boolean scanNonDottedSubDirs) throws IOException -- { -- WebdavResource resource = null; -- try -- { -- resource = new WebdavResource (baseUrl.toString ()); -- WebdavResource[] resources = resource.listWebdavResources (); -- List urls = new ArrayList(resources.length); -- for (int i = 0; i < resources.length; i++) -- { -- WebdavResource member = resources[i]; -- HttpURL httpURL = member.getHttpURL (); -- if (filter.accept (baseUrl, httpURL.getName ())) -- { -- String uri = httpURL.getURI(); -- if (member.isCollection ()) -- { -- if (! uri.endsWith ("/")) -- uri += "/"; -- -- // it is a directory: do we have to recursively list its content? -- String path = httpURL.getPath(); -- if (scanNonDottedSubDirs && getFilePartFromUrl(path).indexOf (".") == -1) -- { -- URL subUrl = new URL (uri) ; -- urls.addAll (listMembers (subUrl, filter, scanNonDottedSubDirs)); -- } -- else -- { -- urls.add (new URL (uri)); -- } -- } -- else -- { -- urls.add (new URL (uri)); -- } -- -- } -- } -- return urls; -- } catch (HttpException e) -- { -- throw new IOException (e.getMessage ()); -- } catch (MalformedURLException e) -- { -- // should not happen -- throw new IllegalStateException (e.getMessage ()); -- } finally -- { -- if (resource != null) -- { -- resource.close (); -- } -- } -- } -- -- protected static final String getFilePartFromUrl (String name) -- { -- int length = name.length (); -- -- if (name.charAt (length - 1) == '/') -- { -- int start = name.lastIndexOf ("/", length - 2); -- return name.substring (start, length -2); -- } -- else -- { -- int start = name.lastIndexOf ("/"); -- return name.substring (start); -- } -- } --} --- -1.9.3 - diff --git a/jboss-common-core.spec b/jboss-common-core.spec deleted file mode 100644 index 033cc31..0000000 --- a/jboss-common-core.spec +++ /dev/null @@ -1,141 +0,0 @@ -%global namedreltag .Final -%global namedversion %{version}%{?namedreltag} - -Name: jboss-common-core -Version: 2.5.0 -Release: 7%{?dist} -Summary: JBoss Common Classes -# Under Public Domain license src/main/java/org/jboss/util/Base64.java -License: ASL 2.0 and Public Domain -URL: http://www.jboss.org -Source0: https://github.com/jboss/jboss-common-core/archive/%{name}-%{namedversion}.tar.gz - -BuildArch: noarch - -BuildRequires: maven-local -BuildRequires: mvn(junit:junit) -BuildRequires: mvn(org.jboss:jboss-parent:pom:) -BuildRequires: mvn(org.jboss.logging:jboss-logging) -Provides: bundled(java-base64) = 2.1 - -%description -JBoss Common Core Utility classes - -%package javadoc -Summary: Javadoc for %{name} - -%description javadoc -This package contains the API documentation for %{name}. - -%prep -%setup -q -n %{name}-%{name}-%{namedversion} - -# The URLLister* family of classes was removed because the -# apache-slide:webdavlib is a dead project and -# the classes aren't used in JBoss AS 7 at all -rm src/main/java/org/jboss/net/protocol/URLLister.java \ - src/main/java/org/jboss/net/protocol/URLListerBase.java \ - src/main/java/org/jboss/net/protocol/URLListerFactory.java \ - src/main/java/org/jboss/net/protocol/file/FileURLLister.java - -%pom_change_dep org.jboss.logging:jboss-logging-spi org.jboss.logging:jboss-logging - -# javascript not allowed in javadoc. this is a bit weird -find ./ -name "package.html" -exec sed -i "s/javascript/java script/g" {} + - -# AssertionFailedError: expected:<333> but was:<324> -rm src/test/java/org/jboss/test/util/test/xml/resolver/JBossEntityResolverUnitTestCase.java - -%build - -%mvn_build - -%install -%mvn_install - -%files -f .mfiles -%doc README.md -%license LICENSE.txt - -%files javadoc -f .mfiles-javadoc -%license LICENSE.txt - -%changelog -* Fri Feb 01 2019 Fedora Release Engineering - 2.5.0-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 2.5.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 2.5.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 2.5.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 2.5.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Feb 03 2017 gil cattaneo 2.5.0-2 -- fix FTBFS - -* Tue May 31 2016 gil cattaneo 2.5.0-1 -- update to 2.5.0.Final - -* Thu Feb 04 2016 Fedora Release Engineering - 2.2.22-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Wed Aug 05 2015 gil cattaneo 2.2.22-3 -- fix FTBFS RHBZ#1239588 -- fix BR list and use BRs mvn()-like -- minor changes for adapt to current guideline -- resolve some rpmlint problem -- remove duplicate files - -* Wed Jun 17 2015 Fedora Release Engineering - 2.2.22-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Tue Jul 01 2014 Marek Goldmann - 2.2.22-1 -- Upstream release 2.2.22.GA, upgrade to xmvn - -* Sat Jun 07 2014 Fedora Release Engineering - 2.2.18-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Fri Mar 28 2014 Michael Simacek - 2.2.18-11 -- Use Requires: java-headless rebuild (#1067528) - -* Sat Aug 03 2013 Fedora Release Engineering - 2.2.18-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Thu Feb 14 2013 Fedora Release Engineering - 2.2.18-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Wed Feb 06 2013 Java SIG - 2.2.18-8 -- Update for https://fedoraproject.org/wiki/Fedora_19_Maven_Rebuild -- Replace maven BuildRequires with maven-local - -* Fri Jul 20 2012 Marek Goldmann 2.2.18-7 -- Fixed BR - -* Thu Jul 19 2012 Fedora Release Engineering - 2.2.18-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Mar 09 2012 Marek Goldmann 2.2.18-5 -- Relocated jars to _javadir - -* Fri Jan 13 2012 Fedora Release Engineering - 2.2.18-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Oct 11 2011 Marek Goldmann 2.2.18-3 -- Requires typo - -* Sun Oct 02 2011 Marek Goldmann 2.2.18-2 -- Another license field fix - -* Tue Sep 20 2011 Marek Goldmann 2.2.18-1 -- Upstream release 2.2.18 -- License field fix - -* Mon Aug 01 2011 Marek Goldmann 2.2.17-1 -- Initial packaging - diff --git a/sources b/sources deleted file mode 100644 index 3ff74c6..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -ada15178e28ad15c8f601dc2e93c3c9d jboss-common-core-2.5.0.Final.tar.gz