Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package glassfish-jsp for openSUSE:Factory 
checked in at 2024-11-26 20:56:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/glassfish-jsp (Old)
 and      /work/SRC/openSUSE:Factory/.glassfish-jsp.new.28523 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "glassfish-jsp"

Tue Nov 26 20:56:18 2024 rev:7 rq:1226463 version:2.3.4

Changes:
--------
--- /work/SRC/openSUSE:Factory/glassfish-jsp/glassfish-jsp.changes      
2024-02-21 17:59:52.742815972 +0100
+++ /work/SRC/openSUSE:Factory/.glassfish-jsp.new.28523/glassfish-jsp.changes   
2024-11-26 20:57:02.241271354 +0100
@@ -1,0 +2,7 @@
+Mon Nov 11 16:35:49 UTC 2024 - Fridrich Strba <[email protected]>
+
+- Added patch:
+  * glassfish-jsp-port-to-servlet-4.0.patch
+    + port to javax.servlet-api 4.0
+
+-------------------------------------------------------------------

New:
----
  glassfish-jsp-port-to-servlet-4.0.patch

BETA DEBUG BEGIN:
  New:- Added patch:
  * glassfish-jsp-port-to-servlet-4.0.patch
    + port to javax.servlet-api 4.0
BETA DEBUG END:

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ glassfish-jsp.spec ++++++
--- /var/tmp/diff_new_pack.Ga7mHz/_old  2024-11-26 20:57:02.769293289 +0100
+++ /var/tmp/diff_new_pack.Ga7mHz/_new  2024-11-26 20:57:02.773293455 +0100
@@ -30,7 +30,8 @@
 Source2:        http://www.apache.org/licenses/LICENSE-2.0
 Patch0:         %{name}-build-eclipse-compilers.patch
 Patch1:         %{name}-port-to-servlet-3.1.patch
-Patch2:         Tag.patch
+Patch2:         %{name}-port-to-servlet-4.0.patch
+Patch3:         Tag.patch
 BuildRequires:  fdupes
 BuildRequires:  java-devel >= 1.8
 BuildRequires:  maven-local
@@ -67,10 +68,7 @@
 %{summary}.
 
 %prep
-%setup -q -n %{artifactId}-%{version}
-%patch -P 0 -p1
-%patch -P 1 -p1
-%patch -P 2 -p1
+%autosetup -n %{artifactId}-%{version} -p1
 
 %pom_add_dep org.eclipse.jdt:core::provided
 %pom_add_dep org.apache.ant:ant::provided

++++++ glassfish-jsp-port-to-servlet-4.0.patch ++++++
--- 
javax.servlet.jsp-2.3.4/src/main/java/org/apache/jasper/servlet/JspCServletContext.java
     2024-11-11 17:17:23.900839969 +0100
+++ 
javax.servlet.jsp-2.3.4/src/main/java/org/apache/jasper/servlet/JspCServletContext.java
     2024-11-11 17:20:07.928605001 +0100
@@ -888,4 +888,32 @@
     public String getVirtualServerName() {
         throw new UnsupportedOperationException("Not implemented yet");
     }
+
+    public void setResponseCharacterEncoding(String charset) {
+        throw new UnsupportedOperationException("Not implemented yet");
+    }
+
+    public String getResponseCharacterEncoding() {
+        throw new UnsupportedOperationException("Not implemented yet");
+    }
+
+    public void setRequestCharacterEncoding(String charset) {
+        throw new UnsupportedOperationException("Not implemented yet");
+    }
+
+    public String getRequestCharacterEncoding() {
+        throw new UnsupportedOperationException("Not implemented yet");
+    }
+
+    public void setSessionTimeout(int sessionTimeout) {
+        throw new UnsupportedOperationException("Not implemented yet");
+    }
+
+    public int getSessionTimeout() {
+        throw new UnsupportedOperationException("Not implemented yet");
+    }
+
+    public ServletRegistration.Dynamic addJspFile(String servletName, String 
jspFile) {
+        throw new UnsupportedOperationException("Not implemented yet");
+    }
 }

Reply via email to