From 76bd0d6efcf24a78a258a2236ea62961cefa5452 Mon Sep 17 00:00:00 2001 From: Miro HronĨok Date: Dec 26 2019 12:48:11 +0000 Subject: Orphaned for 6+ weeks --- diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 8866784..0000000 --- a/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -eclipse-checkstyle-5.1.0.tar.xz -/eclipse-checkstyle-5.6.1.tar.xz -/eclipse-cs-git-028c97d095457b648b1561cc4c4ae158524a7b52.zip -/eclipse-cs-git-9abeafbc67f7136ef7e79e62ba9df3a738535ede.zip -/eclipse-cs-git-38600a3c2b01faba76ede3976da733fab453a535.zip -/*.src.rpm 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/eclipse-checkstyle.spec b/eclipse-checkstyle.spec deleted file mode 100644 index 73d3106..0000000 --- a/eclipse-checkstyle.spec +++ /dev/null @@ -1,267 +0,0 @@ -%global install_loc %{_datadir}/eclipse/droplets/checkstyle -%global cs_ver 7.6 - -Summary: Checkstyle plugin for Eclipse -Name: eclipse-checkstyle -Version: 7.6.0 -Release: 8%{?dist} -License: LGPLv2+ -URL: http://eclipse-cs.sourceforge.net - -BuildArch: noarch - -# Upstream Eclipse no longer supports non-64bit arches -ExcludeArch: s390 %{arm} %{ix86} - -# Redirected from https://sourceforge.net/p/eclipse-cs/git/ci/7.6.0/tarball -Source0: https://sourceforge.net/code-snapshots/git/e/ec/eclipse-cs/git.git/eclipse-cs-git-38600a3c2b01faba76ede3976da733fab453a535.zip - -# Sent upstream: https://sourceforge.net/p/eclipse-cs/bugs/421/ -Patch0: oxygen-compatibility.patch - -Requires: checkstyle >= %{cs_ver} -Requires: antlr-tool -Requires: antlr4-runtime -Requires: guava -Requires: apache-commons-beanutils -Requires: apache-commons-collections -Requires: apache-commons-logging -Requires: dom4j -Requires: jfreechart -Requires: jfreechart-swt - -BuildRequires: tycho -BuildRequires: tycho-extras -BuildRequires: eclipse-jdt -BuildRequires: checkstyle >= %{cs_ver} -BuildRequires: antlr-tool -BuildRequires: antlr4-runtime -BuildRequires: guava -BuildRequires: apache-commons-beanutils -BuildRequires: apache-commons-collections -BuildRequires: apache-commons-logging -BuildRequires: dom4j -BuildRequires: jfreechart -BuildRequires: jfreechart-swt - -%description -The Eclipse Checkstyle plugin integrates the Checkstyle Java code -auditor into the Eclipse IDE. The plugin provides real-time feedback -to the user about violations of rules that check for coding style and -possible error prone code constructs. - -%prep -%setup -q -n eclipse-cs-git-38600a3c2b01faba76ede3976da733fab453a535 - -%patch0 -p1 - -# Ensure correct JDT bundle is wired -sed -i -e '/org.eclipse.jdt.core/d' -e '/Require-Bundle/s/\(.*\)/\1,org.eclipse.jdt.core/' \ - net.sf.eclipsecs.{core,ui}/META-INF/MANIFEST.MF - -# Delete pre-built binaries -find -name '*.class' -exec rm -f '{}' \; -find -name '*.jar' -exec rm -f '{}' \; -find -name '*.zip' -exec rm -f '{}' \; - -# Fix checkstyle libs manifest -sed -i -e "s|checkstyle-%{cs_ver}-all.jar|checkstyle.jar,antlr.jar,antlr4-runtime.jar,guava.jar,commons-beanutils.jar,commons-collections.jar,commons-logging.jar|g" \ - net.sf.eclipsecs.checkstyle/META-INF/MANIFEST.MF net.sf.eclipsecs.checkstyle/build.properties - -# Dir shaped bundles for those with embedded libs -sed -i -e "/ActivationPolicy/aEclipse-BundleShape: dir" net.sf.eclipsecs.{checkstyle,core,ui}/META-INF/MANIFEST.MF - -pushd net.sf.eclipsecs.checkstyle -ln -s $(build-classpath checkstyle) checkstyle.jar -ln -s $(build-classpath guava) guava.jar -ln -s $(build-classpath antlr) antlr.jar -ln -s $(build-classpath antlr4-runtime) antlr4-runtime.jar -ln -s $(build-classpath commons-beanutils) commons-beanutils.jar -ln -s $(build-classpath commons-collections) commons-collections.jar -ln -s $(build-classpath commons-logging) commons-logging.jar -popd - -pushd net.sf.eclipsecs.core -ln -s $(build-classpath dom4j/dom4j) lib/dom4j-1.6.1.jar -popd - -pushd net.sf.eclipsecs.ui -ln -s $(build-classpath jcommon/jcommon) lib/jcommon-1.0.16.jar -ln -s $(build-classpath jfreechart/jfreechart) lib/jfreechart-1.0.14.jar -ln -s $(build-classpath jfreechart/jfreechart-swt) lib/jfreechart-1.0.14-swt.jar -popd - -%pom_remove_plugin org.eclipse.tycho:tycho-packaging-plugin net.sf.eclipsecs.parent -%pom_disable_module ../net.sf.eclipsecs-updatesite net.sf.eclipsecs.parent -%pom_disable_module ../net.sf.eclipsecs.sample net.sf.eclipsecs.parent - -# Unable to bundle checkstyle source into source plugin -%pom_remove_plugin :maven-antrun-plugin net.sf.eclipsecs.checkstyle - -# Don't install poms -%mvn_package "::pom::" __noinstall - -%build -%mvn_build -j -- -f net.sf.eclipsecs.parent/pom.xml - -%install -%mvn_install - -pushd $RPM_BUILD_ROOT%{install_loc}/plugins/net.sf.eclipsecs.checkstyle_* -rm *.jar -ln -s $(build-classpath checkstyle) checkstyle.jar -ln -s $(build-classpath guava) guava.jar -ln -s $(build-classpath antlr) antlr.jar -ln -s $(build-classpath antlr4-runtime) antlr4-runtime.jar -ln -s $(build-classpath commons-beanutils) commons-beanutils.jar -ln -s $(build-classpath commons-collections) commons-collections.jar -ln -s $(build-classpath commons-logging) commons-logging.jar -popd - -pushd $RPM_BUILD_ROOT%{install_loc}/plugins/net.sf.eclipsecs.core_* -rm lib/*.jar -ln -s $(build-classpath dom4j/dom4j) lib/dom4j-1.6.1.jar -popd - -pushd $RPM_BUILD_ROOT%{install_loc}/plugins/net.sf.eclipsecs.ui_* -rm lib/*.jar -ln -s $(build-classpath jcommon/jcommon) lib/jcommon-1.0.16.jar -ln -s $(build-classpath jfreechart/jfreechart) lib/jfreechart-1.0.14.jar -ln -s $(build-classpath jfreechart/jfreechart-swt) lib/jfreechart-1.0.14-swt.jar -popd - -%files -f .mfiles -%license net.sf.eclipsecs-feature/license.html - -%changelog -* Wed Jul 24 2019 Fedora Release Engineering - 7.6.0-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Mon Mar 18 2019 Mat Booth - 7.6.0-7 -- Restrict to same architectures as Eclipse itself - -* Thu Jan 31 2019 Fedora Release Engineering - 7.6.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jul 12 2018 Fedora Release Engineering - 7.6.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed May 9 2018 Alexander Kurtakov 7.6.0-4 -- Adjust for the removed extra eclipse dir in droplets. - -* Wed Feb 07 2018 Fedora Release Engineering - 7.6.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 7.6.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri May 05 2017 Mat Booth - 7.6.0-1 -- Update to latest upstream release and modernise spec file -- Add patch for compatibility with Eclipse Oxygen -- Resolves: rhbz#1448554, rhbz#1366888 - -* Fri Feb 10 2017 Fedora Release Engineering - 6.11.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Feb 03 2016 Fedora Release Engineering - 6.11.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Mon Nov 30 2015 Mikolaj Izdebski - 6.11.1-1 -- Update to upstream version 6.11.1 - -* Fri Sep 04 2015 Roland Grunberg - 6.5.0-3 -- Minor changes to build as a droplet. - -* Wed Jun 17 2015 Fedora Release Engineering - 6.5.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Thu May 14 2015 Alexander Kurtakov 6.5.0-1 -- Update to upstream 6.5.0. - -* Fri Feb 6 2015 Mikolaj Izdebski - 5.6.1-5 -- Rebuild to generate missing OSGi auto-requires - -* Fri Dec 5 2014 Alexander Kurtakov 5.6.1-4 -- Build with xmvn. - -* Wed Sep 17 2014 Alexander Kurtakov 5.6.1-3 -- Fix build for new jcommon path. - -* Sat Jun 07 2014 Fedora Release Engineering - 5.6.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Fri Aug 16 2013 Mat Booth 5.6.1-1 -- Update to 5.6.1 -- Build with maven/tycho -- Drop upstreamed patches - -* Sat Aug 03 2013 Fedora Release Engineering - 5.1.0-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Mon Apr 22 2013 Mat Booth 5.1.0-8 -- Fix broken symlink to beanutils, remove unused patches. -- Add missing runtime requirements. -- Patch out checks that have been removed in later versions of checkstyle. -- Minor changes to conform better to guidelines. - -* Thu Feb 21 2013 Alexander Kurtakov 5.1.0-7 -- Switch to eclipse-pdebuild command. - -* Wed Feb 13 2013 Fedora Release Engineering - 5.1.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Wed Jul 18 2012 Fedora Release Engineering - 5.1.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Jan 13 2012 Fedora Release Engineering - 5.1.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Feb 08 2011 Fedora Release Engineering - 5.1.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Mon Oct 25 2010 Alexander Kurtakov 5.1.0-2 -- Don't have strict requires on checkstyle. - -* Wed Jul 7 2010 Alexander Kurtakov 5.1.0-1 -- Update to 5.1. - -* Fri Jul 24 2009 Fedora Release Engineering - 4.0.1-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Tue Jul 21 2009 Alexander Kurtakov 4.0.1-13 -- Fix build with Eclipse 3.5. -- Remove gcj_support. - -* Tue Feb 24 2009 Fedora Release Engineering - 4.0.1-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Wed Jul 30 2008 Andrew Overholt 4.0.1-11 -- Update for Eclipse SDK 3.4 - -* Tue Feb 19 2008 Fedora Release Engineering - 4.0.1-10 -- Autorebuild for GCC 4.3 - -* Wed Aug 15 2007 Rob Myers 4.0.1-9 -- Require eclipse-jdt because checkstyle isn't useful without it - -* Fri Aug 03 2007 Rob Myers 4.0.1-8 -- update for eclipse 3.3 - -* Thu Aug 02 2007 Rob Myers 4.0.1-7 -- update license from LGPL to LGPLv2+ - -* Wed May 16 2007 Rob Myers 4.0.1-6 -- remove epoch from changelog - -* Tue May 15 2007 Rob Myers 4.0.1-5 -- add eclipse_ver -- include licenses -- spec cleanup - -* Sat May 12 2007 Rob Myers 4.0.1-4 -- add gcj_support -- use wildcard to match eclipse library jar for all build architectures -- fine tune Requires - -* Fri May 11 2007 Rob Myers 4.0.1-1 -- first build for fc7 diff --git a/oxygen-compatibility.patch b/oxygen-compatibility.patch deleted file mode 100644 index 970338b..0000000 --- a/oxygen-compatibility.patch +++ /dev/null @@ -1,36 +0,0 @@ -From 8920d29f4a01367aca18c6c5f27a493bafa55b02 Mon Sep 17 00:00:00 2001 -From: Mat Booth -Date: Fri, 5 May 2017 12:56:13 +0100 -Subject: [PATCH] #421 Fix build against Eclipse Oxygen - -Signed-off-by: Mat Booth ---- - .../net/sf/eclipsecs/ui/util/table/EnhancedCheckBoxTableViewer.java | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/net.sf.eclipsecs.ui/src/net/sf/eclipsecs/ui/util/table/EnhancedCheckBoxTableViewer.java b/net.sf.eclipsecs.ui/src/net/sf/eclipsecs/ui/util/table/EnhancedCheckBoxTableViewer.java -index ea803e6..3130150 100644 ---- a/net.sf.eclipsecs.ui/src/net/sf/eclipsecs/ui/util/table/EnhancedCheckBoxTableViewer.java -+++ b/net.sf.eclipsecs.ui/src/net/sf/eclipsecs/ui/util/table/EnhancedCheckBoxTableViewer.java -@@ -17,8 +17,8 @@ import java.util.Enumeration; - import java.util.List; - import java.util.NoSuchElementException; - -+import org.eclipse.core.runtime.ListenerList; - import org.eclipse.jface.util.Assert; --import org.eclipse.jface.util.ListenerList; - import org.eclipse.jface.util.SafeRunnable; - import org.eclipse.jface.viewers.CheckStateChangedEvent; - import org.eclipse.jface.viewers.ColumnWeightData; -@@ -47,7 +47,7 @@ public class EnhancedCheckBoxTableViewer extends EnhancedTableViewer implements - /** - * List of check state listeners (element type: ICheckStateListener). - */ -- private final ListenerList checkStateListeners = new ListenerList(3); -+ private final ListenerList checkStateListeners = new ListenerList(); - - /** - * Creates a table viewer on a newly-created table control under the given parent. The table control is created --- -2.7.4 - diff --git a/sources b/sources deleted file mode 100644 index 7345787..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (eclipse-cs-git-38600a3c2b01faba76ede3976da733fab453a535.zip) = 10847a4ebee6166204a777ed1568b8d435faedbb444519e11002dab06919c17bc7a393d43fe238e0e3ca79df288cba0a3e1e7cfaccc8f6fa6909affcf643be23