Skip to content

Commit fb06509

Browse files
Merge branch '3.0-dev' into skarambelkar/nginx/3.0
2 parents ce18bca + d977595 commit fb06509

File tree

141 files changed

+4327
-6795
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+4327
-6795
lines changed

LICENSES-AND-NOTICES/SPECS/LICENSES-MAP.md

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSES-AND-NOTICES/SPECS/data/licenses.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1851,6 +1851,7 @@
18511851
"python-sphinxcontrib-qthelp",
18521852
"python-sphinxcontrib-serializinghtml",
18531853
"python-sphinxygen",
1854+
"python-spnego",
18541855
"python-sqlalchemy",
18551856
"python-suds",
18561857
"python-systemd",

SPECS-EXTENDED/apache-commons-pool2/apache-commons-pool2.spec

Lines changed: 20 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Summary: Apache Commons Pool 2.x series
44
Name: apache-commons-pool2
55
Version: 2.4.2
6-
Release: 7%{?dist}
6+
Release: 8%{?dist}
77
License: Apache-2.0
88
Vendor: Microsoft Corporation
99
Distribution: Azure Linux
@@ -12,12 +12,11 @@ URL: https://commons.apache.org/proper/commons-pool/
1212
Source0: https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
1313
Patch0: jakarta-commons-pool-build.patch
1414
BuildRequires: ant
15-
BuildRequires: ant-junit
1615
BuildRequires: cglib
1716
BuildRequires: fdupes
1817
BuildRequires: java-devel >= 1.8
19-
BuildRequires: javapackages-local-bootstrap
20-
BuildRequires: xml-commons-apis
18+
BuildRequires: javapackages-local-bootstrap >= 6
19+
BuildRequires: junit
2120
Requires: cglib
2221
Provides: %{short_name} = %{version}
2322
Obsoletes: %{short_name} < %{version}
@@ -44,55 +43,46 @@ This package contains the javadoc documentation for the Apache Commons
4443
Pool 2.x Package.
4544

4645
%prep
47-
%autosetup -p0 -n %{short_name}-%{version}-src
46+
%setup -q -n %{short_name}-%{version}-src
4847
# remove all binary libs
49-
find . -name "*.jar" -exec rm -f {} \;
50-
51-
%pom_remove_parent .
52-
%pom_xpath_inject "pom:project" "<groupId>org.apache.commons</groupId>" .
48+
find . -name "*.jar" -print -delete
49+
%patch -P 0
5350

5451
%build
55-
export CLASSPATH=%(build-classpath cglib objectweb-asm/asm objectweb-asm/asm-tree objectweb-asm/asm-util)
56-
%{ant} -Dbuild.sysclasspath=first clean dist
52+
echo "cglib.jar=$(build-classpath cglib)" >> build.properties
53+
ant \
54+
-Djavac.target.version=8 -Djavac.src.version=8 \
55+
-Djava.io.tmpdir=. clean dist
5756

5857
%install
5958
# jars
6059
install -d -m 755 %{buildroot}%{_javadir}
61-
install -m 644 dist/%{short_name}-%{version}.jar %{buildroot}%{_javadir}/%{name}-%{version}.jar
62-
(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} `echo $jar| sed "s|apache-||g"`; done)
63-
(cd %{buildroot}%{_javadir} && for jar in *-%{version}*; do ln -sf ${jar} `echo $jar| sed "s|-%{version}||g"`; done)
60+
install -m 644 dist/%{short_name}-%{version}.jar %{buildroot}%{_javadir}/%{name}.jar
61+
ln -sf %{_javadir}/%{name}.jar %{buildroot}%{_javadir}/%{short_name}.jar
6462
# pom
6563
install -d -m 755 %{buildroot}%{_mavenpomdir}
66-
install -m 644 pom.xml %{buildroot}%{_mavenpomdir}/%{name}-%{version}.pom
67-
%add_maven_depmap %{name}-%{version}.pom %{name}-%{version}.jar
64+
install -pm 0644 pom.xml %{buildroot}%{_mavenpomdir}/%{name}.pom
65+
%add_maven_depmap %{name}.pom %{name}.jar
6866

6967
# javadoc
7068
install -d -m 755 %{buildroot}%{_javadocdir}/%{name}
7169
cp -pr dist/docs/api/* %{buildroot}%{_javadocdir}/%{name}
7270
%fdupes -s %{buildroot}%{_javadocdir}/%{name}
7371

74-
%check
75-
export CLASSPATH=%(build-classpath cglib objectweb-asm/asm objectweb-asm/asm-tree objectweb-asm/asm-util)
76-
%{ant} -Dbuild.sysclasspath=first test
77-
78-
%files
72+
%files -f .mfiles
7973
%license LICENSE.txt
8074
%doc README.txt
81-
%{_javadir}/%{name}.jar
82-
%{_javadir}/%{name}-%{version}.jar
8375
%{_javadir}/%{short_name}.jar
84-
%{_javadir}/%{short_name}-%{version}.jar
85-
%{_mavenpomdir}/%{name}-%{version}.pom
86-
%if %{defined _maven_repository}
87-
%{_mavendepmapfragdir}/%{name}
88-
%else
89-
%{_datadir}/maven-metadata/%{name}.xml*
90-
%endif
9176

9277
%files javadoc
9378
%doc %{_javadocdir}/%{name}
79+
%exclude /usr/share/javadoc/%{name}/legal
9480

9581
%changelog
82+
* Wed May 28 2025 Durga Jagadeesh Palli <[email protected]> - 2.4.2-8
83+
- Initial Azure Linux import from openSUSE Tumbleweed (license: same as "License" tag).
84+
- License verified
85+
9686
* Wed Nov 09 2022 Sumedh Sharma <[email protected]> - 2.4.2-7
9787
- Enable check section
9888
- License verified
@@ -107,32 +97,25 @@ export CLASSPATH=%(build-classpath cglib objectweb-asm/asm objectweb-asm/asm-tre
10797
* Mon Mar 25 2019 Fridrich Strba <[email protected]>
10898
- Remove pom parent, since we don't use it when not building with
10999
maven
110-
111100
* Thu Dec 13 2018 Fridrich Strba <[email protected]>
112101
- Add maven pom file
113-
114102
* Tue May 15 2018 [email protected]
115103
- Build with source and target 8 to prepare for a possible removal
116104
of 1.6 compatibility
117105
- Run fdupes on documentation
118-
119106
* Thu Sep 14 2017 [email protected]
120107
- Fix javadoc build
121-
122108
* Thu Sep 29 2016 [email protected]
123109
- Version update to 2.4.2 release from pool2:
124110
* rename to latest 2.x pool series for dbcp and other packages
125-
126111
* Thu Sep 29 2016 [email protected]
127112
- Rename from jakarta-commons-pool to apache-commons-pool
128113
- Version update to 1.6:
129114
* drop the tomcat5 package, we need pool2 to work with new tomcat
130115
* Last and final from the pool1 series, new pool2 was introduced
131116
for future developement.
132-
133117
* Mon Sep 9 2013 [email protected]
134118
- Move from jpackage-utils to javapackage-tools
135-
136119
* Thu Mar 13 2008 [email protected]
137120
- merged with jpackage 1.7
138121
- update to 1.3
@@ -147,21 +130,15 @@ export CLASSPATH=%(build-classpath cglib objectweb-asm/asm objectweb-asm/asm-tre
147130
- provides and obsoletes of main package contains the version
148131
- new tomcat5 subpackage
149132
- new manual subpackage (build only with maven)
150-
151133
* Fri Sep 15 2006 [email protected]
152134
- set source=1.4 for java
153-
154135
* Wed Jan 25 2006 [email protected]
155136
- converted neededforbuild to BuildRequires
156-
157137
* Thu Jul 28 2005 [email protected]
158138
- Adjustments in the spec file.
159-
160139
* Mon Jul 18 2005 [email protected]
161140
- Current version 1.2 from JPackage.org
162-
163141
* Thu Sep 16 2004 [email protected]
164142
- Fix prerequires of javadoc subpackage
165-
166143
* Thu Sep 2 2004 [email protected]
167144
- Initial package created with version 1.2 (JPackage 1.5)

SPECS-EXTENDED/buildah/buildah.spec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Epoch: 0
3030
Version: 1.41.4
3131
# The `AND` needs to be uppercase in the License for SPDX compatibility
3232
License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0
33-
Release: 2%{?dist}
33+
Release: 3%{?dist}
3434
Vendor: Microsoft Corporation
3535
Distribution: Azure Linux
3636
ExclusiveArch: aarch64 ppc64le s390x x86_64
@@ -43,7 +43,7 @@ BuildRequires: device-mapper-devel
4343
BuildRequires: git-core
4444
BuildRequires: golang >= 1.16.6
4545
BuildRequires: glib2-devel
46-
BuildRequires: glibc-static >= 2.38-14%{?dist}
46+
BuildRequires: glibc-static >= 2.38-15%{?dist}
4747
%if !%{defined gobuild}
4848
BuildRequires: go-rpm-macros
4949
%endif
@@ -173,6 +173,9 @@ make test-unit
173173
%{_datadir}/%{name}/test
174174

175175
%changelog
176+
* Thu Oct 23 2025 Kanishk Bansal <[email protected]> - 0:1.41.4-3
177+
- Bump to rebuild with updated glibc
178+
176179
* Wed Oct 08 2025 Andrew Phelps <[email protected]> - 0:1.41.4-2
177180
- Bump to rebuild with updated glibc
178181

SPECS-EXTENDED/catatonit/catatonit.spec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Distribution: Azure Linux
33

44
Name: catatonit
55
Version: 0.1.7
6-
Release: 22%{?dist}
6+
Release: 23%{?dist}
77
Summary: A signal-forwarding process manager for containers
88
License: GPLv3+
99
URL: https://github.com/openSUSE/catatonit
@@ -13,7 +13,7 @@ BuildRequires: automake
1313
BuildRequires: file
1414
BuildRequires: gcc
1515
BuildRequires: git
16-
BuildRequires: glibc-static >= 2.38-14%{?dist}
16+
BuildRequires: glibc-static >= 2.38-15%{?dist}
1717
BuildRequires: libtool
1818
BuildRequires: make
1919

@@ -61,6 +61,9 @@ ln -s %{_libexecdir}/%{name}/%{name} %{buildroot}%{_libexecdir}/podman/%{name}
6161
%{_libexecdir}/podman/%{name}
6262

6363
%changelog
64+
* Thu Oct 23 2025 Kanishk Bansal <[email protected]> - 0.1.7-23
65+
- Bump to rebuild with updated glibc
66+
6467
* Wed Oct 08 2025 Andrew Phelps <[email protected]> - 0.1.7-22
6568
- Bump to rebuild with updated glibc
6669

SPECS-EXTENDED/dyninst/dyninst.spec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Summary: An API for Run-time Code Generation
22
License: LGPLv2+
33
Name: dyninst
4-
Release: 24%{?dist}
4+
Release: 25%{?dist}
55
Vendor: Microsoft Corporation
66
Distribution: Azure Linux
77
URL: http://www.dyninst.org
@@ -31,7 +31,7 @@ BuildRequires: tbb tbb-devel
3131

3232
# Extra requires just for the testsuite
3333
BuildRequires: gcc-gfortran libstdc++-static libxml2-devel
34-
BuildRequires: glibc-static >= 2.38-14%{?dist}
34+
BuildRequires: glibc-static >= 2.38-15%{?dist}
3535

3636
# Testsuite files should not provide/require anything
3737
%{?filter_setup:
@@ -194,6 +194,9 @@ echo "%{_libdir}/dyninst" > %{buildroot}/etc/ld.so.conf.d/%{name}-%{_arch}.conf
194194
%attr(644,root,root) %{_libdir}/dyninst/testsuite/*.a
195195

196196
%changelog
197+
* Thu Oct 23 2025 Kanishk Bansal <[email protected]> - 10.1.0-25
198+
- Bump to rebuild with updated glibc
199+
197200
* Wed Oct 08 2025 Andrew Phelps <[email protected]> - 10.1.0-24
198201
- Bump to rebuild with updated glibc
199202

SPECS-EXTENDED/junitperf/junitperf.spec

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Distribution: Azure Linux
2222

2323
Name: junitperf
2424
Version: 1.9.1
25-
Release: 27%{?dist}
25+
Release: 28%{?dist}
2626
Summary: JUnit extension for performance and scalability testing
2727
License: BSD
2828
Group: Development/Libraries/Java
@@ -79,8 +79,8 @@ find . -name "*.jar" | xargs -t rm
7979
export CLASSPATH=
8080
export OPT_JAR_LIST="junit ant/ant-junit"
8181
# performance tests sometimes failed on build farm, so lets disable them to avoid unpredictable build fails
82-
#ant -Dant.build.javac.source=1.6 -Dant.build.javac.target=1.6 -Dbuild.sysclasspath=first jar test javadoc
83-
ant -Dant.build.javac.source=1.6 -Dant.build.javac.target=1.6 -Dbuild.sysclasspath=first jar javadoc
82+
#ant -Dant.build.javac.source=1.8 -Dant.build.javac.target=1.8 -Dbuild.sysclasspath=first jar test javadoc
83+
ant -Dant.build.javac.source=1.8 -Dant.build.javac.target=1.8 -Dbuild.sysclasspath=first jar javadoc
8484

8585
%install
8686
# jars
@@ -90,18 +90,27 @@ install -p -m 0644 dist/%{name}-%{version}.jar $RPM_BUILD_ROOT%{_javadir}/%{name
9090
# javadoc
9191
install -d -m 0755 $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
9292
cp -pr build/docs/api/* $RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}
93+
install -D -m 0644 build/docs/api/legal/ADDITIONAL_LICENSE_INFO \
94+
$RPM_BUILD_ROOT%{_javadocdir}/%{name}-%{version}/legal/ADDITIONAL_LICENSE_INFO
95+
install -D -m 0644 build/docs/api/legal/ADDITIONAL_LICENSE_INFO \
96+
$RPM_BUILD_ROOT%{_licensedir}/%{name}-javadoc/ADDITIONAL_LICENSE_INFO
9397
ln -s %{name}-%{version} $RPM_BUILD_ROOT%{_javadocdir}/%{name}
9498
# demo
9599
install -d -m 0755 $RPM_BUILD_ROOT%{_datadir}/%{name}
96100
cp -pr samples $RPM_BUILD_ROOT%{_datadir}/%{name}
97101

98102
%files
99103
%defattr(0644,root,root,0755)
100-
%doc LICENSE README docs/JUnitPerf.html
104+
%license LICENSE
105+
%doc README docs/JUnitPerf.html
101106
%{_javadir}/%{name}.jar
102107
%{_javadir}/%{name}-%{version}.jar
103108

104109
%files javadoc
110+
%license LICENSE
111+
%license %{_licensedir}/%{name}-javadoc/ADDITIONAL_LICENSE_INFO
112+
%exclude /usr/share/javadoc/junitperf-1.9.1/legal/ADDITIONAL_LICENSE_INFO
113+
%exclude /usr/share/javadoc/junitperf-1.9.1/legal/LICENSE
105114
%defattr(0644,root,root,0755)
106115
%{_javadocdir}/%{name}-%{version}
107116
%{_javadocdir}/%{name}
@@ -111,6 +120,9 @@ cp -pr samples $RPM_BUILD_ROOT%{_datadir}/%{name}
111120
%{_datadir}/%{name}
112121

113122
%changelog
123+
* Mon Feb 24 2025 Akarsh Chaudhary <[email protected]> - 1.9.1-28
124+
- Bumped build option to 8.
125+
114126
* Thu Dec 16 2021 Pawel Winogrodzki <[email protected]> - 1.9.1-27
115127
- Removing the explicit %%clean stage.
116128
- License verified.

SPECS-EXTENDED/kernel-ipe/config

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Automatically generated file; DO NOT EDIT.
3-
# Linux/x86_64 6.6.104.2 Kernel Configuration
3+
# Linux/x86_64 6.6.112.1 Kernel Configuration
44
#
55
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.2.0"
66
CONFIG_CC_IS_GCC=y
@@ -546,6 +546,7 @@ CONFIG_MITIGATION_RFDS=y
546546
CONFIG_MITIGATION_SPECTRE_BHI=y
547547
CONFIG_MITIGATION_ITS=y
548548
CONFIG_MITIGATION_TSA=y
549+
CONFIG_MITIGATION_VMSCAPE=y
549550
CONFIG_ARCH_HAS_ADD_PAGES=y
550551

551552
#
@@ -946,7 +947,8 @@ CONFIG_BLK_DEV_INTEGRITY_T10=y
946947
CONFIG_BLK_DEV_ZONED=y
947948
CONFIG_BLK_DEV_THROTTLING=y
948949
# CONFIG_BLK_DEV_THROTTLING_LOW is not set
949-
# CONFIG_BLK_WBT is not set
950+
CONFIG_BLK_WBT=y
951+
CONFIG_BLK_WBT_MQ=y
950952
CONFIG_BLK_CGROUP_IOLATENCY=y
951953
# CONFIG_BLK_CGROUP_FC_APPID is not set
952954
# CONFIG_BLK_CGROUP_IOCOST is not set

SPECS-EXTENDED/kernel-ipe/config_aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#
22
# Automatically generated file; DO NOT EDIT.
3-
# Linux/arm64 6.6.104.2 Kernel Configuration
3+
# Linux/arm64 6.6.112.1 Kernel Configuration
44
#
55
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.2.0"
66
CONFIG_CC_IS_GCC=y
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"Signatures": {
33
"azurelinux-ca-20230216.pem": "d545401163c75878319f01470455e6bc18a5968e39dd964323225e3fe308849b",
4-
"config": "644e1f800c5b821d7e9c68a17df0581f09b0d2d44a7dd07c25e6b149205e6ef0",
5-
"config_aarch64": "94a873573f94b1a5e72cc3a5e4b92b98c84ab8e18b036279e3a16b433d3de98b",
4+
"config": "77447b428d270902d02c064ea477da4b6fe23856db005fe064b8ce40ee742f10",
5+
"config_aarch64": "e7876afb4c18e809d6d4c25e6dc9bb1ae546e5d9cc1d06e88444201fa70b7ee5",
66
"cpupower": "d7518767bf2b1110d146a49c7d42e76b803f45eb8bd14d931aa6d0d346fae985",
77
"cpupower.service": "b057fe9e5d0e8c36f485818286b80e3eba8ff66ff44797940e99b1fd5361bb98",
88
"sha512hmac-openssl.sh": "02ab91329c4be09ee66d759e4d23ac875037c3b56e5a598e32fd1206da06a27f",
99
"azl-ipe-boot-policy.pol": "f2b7941bd3b721aadc8e937d0472c36fe5e140221f7bb54af6ef905884e0372c",
1010
"Makefile": "1c2e740407215ed9b9cbbc09f9102bc99c08b370bbe2cbb0490aefdc9eb70455",
1111
"tarfs.c": "066084e1ca2c1e7ba83e76a6696cf17928e7efb46a2b1670a7a1f597c2d9bc51",
12-
"kernel-6.6.104.2.tar.gz": "dfc7b852fd9e63ce199c35721d00a5e4741c4e881da8235129f853402d784aa2"
12+
"kernel-6.6.112.1.tar.gz": "2ea56b2ca06df6672cbe3387c4d137c37683e3306029da6baf8820e8fa4795ae"
1313
}
1414
}

0 commit comments

Comments
 (0)