forked from deepin-community/tomcat-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: update tomcat-native to 1.2.35
Tomcat native library using the Apache Portable Runtime Issue: deepin-community/sig-deepin-sysdev-team#547 Log: update repo
- Loading branch information
Showing
88 changed files
with
2,243 additions
and
1,039 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
================================================================================ | ||
Licensed to the Apache Software Foundation (ASF) under one or more | ||
contributor license agreements. See the NOTICE file distributed with | ||
this work for additional information regarding copyright ownership. | ||
The ASF licenses this file to You under the Apache License, Version 2.0 | ||
(the "License"); you may not use this file except in compliance with | ||
the License. You may obtain a copy of the License at | ||
|
||
http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
================================================================================ | ||
|
||
How to do a Tomcat Native release | ||
================================= | ||
|
||
Requirements | ||
------------ | ||
|
||
Java 8 | ||
Apache Ant 1.9 or later | ||
Apache APR 1.4.3 or later source (1.7.0 or later recommended) | ||
|
||
|
||
Preparation | ||
----------- | ||
|
||
Review the open issues in Bugzilla. | ||
Review open PRs in GitHub. | ||
|
||
If you haven't already, add your public PGP key to KEYS. | ||
|
||
Ensure dates and/or version numbers are up to date: | ||
- build.properties.default | ||
- native/build/rpm/tcnative.spec.in | ||
- native/include/tcn_version.h | ||
- native/os/win32/libtcnative.rc | ||
- xdocs/miscellaneous/changelog.xml | ||
|
||
Run the release script to check the Java code is aligned with the current 9.0.x | ||
source. | ||
./jnirelease.sh --ver=1.2.x --with-apr=/path/to/apr/source | ||
|
||
Switch back to the main branch | ||
git checkout main | ||
|
||
Tagging | ||
------- | ||
|
||
# Check clone is up to date and clean | ||
git pull | ||
git status | ||
|
||
# Edit files to remove / disable dev build flags | ||
# - build.properties.default | ||
# - tcn_version.h | ||
|
||
# Confirm the previous edits | ||
git diff | ||
|
||
# Tag (modify version as appropriate) | ||
git commit -a -m "Tag 1.2.35" | ||
git tag 1.2.35 | ||
git push origin 1.2.35 | ||
|
||
# Reset main | ||
git reset --hard HEAD~1 | ||
|
||
|
||
Create the source release | ||
------------------------- | ||
|
||
# Modify version as appropriate | ||
./jnirelease.sh --ver=1.2.35 --with-apr=/path/to/apr/source | ||
|
||
# Switch back to the main branch | ||
git checkout main | ||
|
||
|
||
Create the binary release for Windows | ||
------------------------------------- | ||
|
||
See native/building |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,20 @@ | ||
tomcat-native (1.2.35-1) unstable; urgency=medium | ||
|
||
* Team upload. | ||
* New upstream version 1.2.35. | ||
- Restore compatibility with Tomcat 10.1.x. (Closes: #1030871) | ||
Thanks to Jorge Moraleda for the report. | ||
* Declare compliance with Debian Policy 4.6.2. | ||
|
||
-- Markus Koschany <[email protected]> Sun, 12 Feb 2023 18:35:01 +0100 | ||
|
||
tomcat-native (1.2.32-1) unstable; urgency=medium | ||
|
||
* Team upload. | ||
* New upstream release | ||
|
||
-- Emmanuel Bourg <[email protected]> Mon, 02 May 2022 19:03:02 +0200 | ||
|
||
tomcat-native (1.2.31-1) unstable; urgency=medium | ||
|
||
* Team upload. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
NOTICE |
Oops, something went wrong.