rpms/eclipse-changelog/F-8 eclipse-changelog-2.6.1.patch, NONE, 1.1 eclipse-changelog.spec, 1.66, 1.67

Jeff Johnston (jjohnstn) fedora-extras-commits at redhat.com
Tue Jan 22 00:05:38 UTC 2008


Author: jjohnstn

Update of /cvs/pkgs/rpms/eclipse-changelog/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv9868

Modified Files:
	eclipse-changelog.spec 
Added Files:
	eclipse-changelog-2.6.1.patch 
Log Message:

* Mon Jan 21 2008 Jeff Johnston <jjohnstn at redhat.com> 1:2.6.1-3
- fix regressions to GNU formatter, ChangeLog editor
- fix Prepare ChangeLog project menu activation
- allow CRTL+ALT+P from editors



eclipse-changelog-2.6.1.patch:

--- NEW FILE eclipse-changelog-2.6.1.patch ---
--- org.eclipse.linuxtools.changelog.core/.classpath	(revision 8005)
+++ org.eclipse.linuxtools.changelog.core/.classpath	(working copy)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <classpath>
 	<classpathentry kind="src" path="src"/>
-	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/J2SE-1.5"/>
 	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
 	<classpathentry kind="output" path="bin"/>
 </classpath>
--- org.eclipse.linuxtools.changelog.core/src/org/eclipse/linuxtools/changelog/core/ChangelogPlugin.java	(revision 8005)
+++ org.eclipse.linuxtools.changelog.core/src/org/eclipse/linuxtools/changelog/core/ChangelogPlugin.java	(working copy)
@@ -107,9 +107,9 @@
 		store.setDefault("IChangeLogConstants.AUTHOR_EMAIL", // $NON-NLS-2$
 				ChangeLogPreferencesPage.getUserEmail());
 		store.setDefault("IChangeLogConstants.DEFAULT_FORMATTER", // $NON-NLS-1$ 
-				getResourceString("gnuFormatter")); // $NON-NLS-1$
+				"gnuFormatter"); // $NON-NLS-1$
 		store.setDefault("IChangeLogConstants.DEFAULT_EDITOR", // $NON-NLS-1$ 
-				getResourceString("gnuEditorConfig")); // $NON-NLS-1$
+				"gnuEditorConfig"); // $NON-NLS-1$
 
 	}
 }
--- org.eclipse.linuxtools.changelog.core/plugin.xml	(revision 8005)
+++ org.eclipse.linuxtools.changelog.core/plugin.xml	(working copy)
@@ -38,6 +38,12 @@
         description="Formats ChangeLog"
         id="org.eclipse.linuxtools.changelog.core.formatChangeLog"
         name="Format ChangeLog"/>
+  <command
+        categoryId="org.eclipse.linuxtools.changelog"
+        description="Prepares ChangeLog in an editor"
+        id="org.eclipse.linuxtools.changelog.core.preparechangelog2"
+        name="Prepare Changelog In Editor">
+  </command>
 	</extension>
 	
 	 <!-- Actions -->	
@@ -73,6 +79,12 @@
                </or>
             </enablement>
          </action>
+         <action
+               class="org.eclipse.linuxtools.changelog.core.actions.PrepareChangelogKeyHandler"
+               definitionId="org.eclipse.linuxtools.changelog.core.preparechangelog2"
+               id="org.eclipse.linuxtools.changelog.core.action.prepChangeLogInEditor"
+               label="Prepare ChangeLog In Editor">
+         </action>
 		</actionSet>
 	</extension>
        
@@ -91,7 +103,7 @@
               inFile="false"
               class="org.eclipse.linuxtools.changelog.core.formatters.GNUFormat"
               id="org.eclipse.linuxtools.changelog.GNUFormat"
-              name="%gnuFormatter">
+              name="gnuFormatter">
               <fileName name="ChangeLog" />  
         </formatter>        
   </extension>
@@ -110,7 +122,7 @@
        <editor
              class="org.eclipse.linuxtools.changelog.core.editors.GNUEditorConfiguration"
              id="org.eclipse.linuxtools.changelog.core.gnueditor"
-             name="GNU Editor"/>
+             name="gnuEditorConfig"/>
     </extension>
     <extension
           point="org.eclipse.ui.navigator.viewer">
@@ -141,6 +153,12 @@
              id="org.eclipse.linuxtools.changelog.keyscheme.default"
              name="default"/>
        <key
+             commandId="org.eclipse.linuxtools.changelog.core.preparechangelog2"
+             contextId="org.eclipse.ui.textEditorScope"
+             schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+             sequence="Ctrl+Alt+P">
+       </key>
+       <key
              commandId="org.eclipse.linuxtools.changelog.core.preparechangelog"
              contextId="org.eclipse.ui.contexts.window"
              schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"


Index: eclipse-changelog.spec
===================================================================
RCS file: /cvs/pkgs/rpms/eclipse-changelog/F-8/eclipse-changelog.spec,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- eclipse-changelog.spec	16 Jan 2008 22:51:20 -0000	1.66
+++ eclipse-changelog.spec	22 Jan 2008 00:04:56 -0000	1.67
@@ -5,7 +5,7 @@
 
 Name:           eclipse-changelog
 Version:        2.6.1
-Release:        2%{?dist}
+Release:        3%{?dist}
 Summary:        Eclipse ChangeLog plug-in
 
 Group:          Development/Tools 
@@ -36,6 +36,9 @@
 
 Source0:        http://sourceware.org/eclipse/changelog/%{name}-src-%{version}.zip
 
+# Patch required to 2.6.1 sources to fix a number of problems
+Patch1: %{name}-2.6.1.patch
+
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:          eclipse-pde >= 1:3.3.0
@@ -67,6 +70,7 @@
 
 %prep
 %setup -q -c -n eclipse-changelog-%{version}
+%patch1 -p0
 
 %build
 # See comments in the script to understand this.
@@ -125,6 +129,11 @@
 %endif
 
 %changelog
+* Mon Jan 21 2008 Jeff Johnston <jjohnstn at redhat.com> 1:2.6.1-3
+- fix regressions to GNU formatter, ChangeLog editor
+- fix Prepare ChangeLog project menu activation
+- allow CRTL+ALT+P from editors
+
 * Wed Jan 16 2008 Jeff Johnston <jjohnstn at redhat.com> 1:2.6.1-2
 - fix Obsoletes statements
 




More information about the fedora-extras-commits mailing list