Compare commits
No commits in common. "rawhide" and "f30" have entirely different histories.
4 changed files with 112 additions and 156 deletions
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
SHA512 (voms-clients-java-3.3.7.tar.gz) = 7ed80d50ec844a93fa6f566523fb64dc0b37b7163501bd30029a6ed7bf1d01103fc753daf438405b645c1e8b501846297cc705893fced23e270f31f7b89e7eda
|
SHA512 (voms-clients-java-3.3.0.tar.gz) = 854c38c43d7220da3bfed370a98f74864b78c486e87ef2083e0c278d7ed94f2eb3ffc2557027790a4f69905b757dfcc047c1dcc428933a859bbb6657dfcc17b3
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,48 @@
|
||||||
|
From 2dcbb765d60078c2148f77a1a873895829c7e18e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Mattias Ellert <mattias.ellert@physics.uu.se>
|
||||||
|
Date: Wed, 31 Oct 2018 14:52:28 +0100
|
||||||
|
Subject: [PATCH] Change default proxy cert key length to 2048 bits
|
||||||
|
|
||||||
|
---
|
||||||
|
README.md | 4 ++--
|
||||||
|
.../java/org/italiangrid/voms/clients/ProxyInitParams.java | 2 +-
|
||||||
|
2 files changed, 3 insertions(+), 3 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/README.md b/README.md
|
||||||
|
index 85743f1..72fd068 100644
|
||||||
|
--- a/README.md
|
||||||
|
+++ b/README.md
|
||||||
|
@@ -108,7 +108,7 @@ subject : /C=IT/O=INFN/OU=Personal Certificate/L=CNAF/CN=Andrea Ceccanti/CN=pr
|
||||||
|
issuer : /C=IT/O=INFN/OU=Personal Certificate/L=CNAF/CN=Andrea Ceccanti
|
||||||
|
identity : /C=IT/O=INFN/OU=Personal Certificate/L=CNAF/CN=Andrea Ceccanti
|
||||||
|
type : proxy
|
||||||
|
-strength : 1024
|
||||||
|
+strength : 2048
|
||||||
|
path : /tmp/x509up_u501
|
||||||
|
timeleft : 11:59:48
|
||||||
|
key usage : digitalSignature keyEncipherment dataEncipherment
|
||||||
|
@@ -122,7 +122,7 @@ subject : /C=IT/O=INFN/OU=Personal Certificate/L=CNAF/CN=Andrea Ceccanti/CN=pr
|
||||||
|
issuer : /C=IT/O=INFN/OU=Personal Certificate/L=CNAF/CN=Andrea Ceccanti
|
||||||
|
identity : /C=IT/O=INFN/OU=Personal Certificate/L=CNAF/CN=Andrea Ceccanti
|
||||||
|
type : proxy
|
||||||
|
-strength : 1024
|
||||||
|
+strength : 2048
|
||||||
|
path : /tmp/x509up_u501
|
||||||
|
timeleft : 12:04:48
|
||||||
|
key usage : digitalSignature keyEncipherment dataEncipherment
|
||||||
|
diff --git a/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java b/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java
|
||||||
|
index 8982f72..ce292d7 100644
|
||||||
|
--- a/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java
|
||||||
|
+++ b/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java
|
||||||
|
@@ -34,7 +34,7 @@ public class ProxyInitParams {
|
||||||
|
.toSeconds(12);
|
||||||
|
public static final int DEFAULT_AC_LIFETIME = (int) TimeUnit.HOURS
|
||||||
|
.toSeconds(12);
|
||||||
|
- public static final int DEFAULT_KEY_SIZE = 1024;
|
||||||
|
+ public static final int DEFAULT_KEY_SIZE = 2048;
|
||||||
|
|
||||||
|
public static final int DEFAULT_CONNECT_TIMEOUT_IN_SECONDS = 10;
|
||||||
|
|
||||||
|
--
|
||||||
|
2.17.2
|
||||||
|
|
||||||
25
voms-clients-java-use-a-more-sensible-timeout.patch
Normal file
25
voms-clients-java-use-a-more-sensible-timeout.patch
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
From 752b6566d246210fd690da102c53e329c01a09c2 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Andrea Ceccanti <andrea.ceccanti@gmail.com>
|
||||||
|
Date: Thu, 28 Jun 2018 14:41:04 +0200
|
||||||
|
Subject: [PATCH] Use a more sensible timeout
|
||||||
|
|
||||||
|
---
|
||||||
|
src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java b/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java
|
||||||
|
index 87d5cc6..8982f72 100644
|
||||||
|
--- a/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java
|
||||||
|
+++ b/src/main/java/org/italiangrid/voms/clients/ProxyInitParams.java
|
||||||
|
@@ -36,7 +36,7 @@ public class ProxyInitParams {
|
||||||
|
.toSeconds(12);
|
||||||
|
public static final int DEFAULT_KEY_SIZE = 1024;
|
||||||
|
|
||||||
|
- public static final int DEFAULT_CONNECT_TIMEOUT_IN_SECONDS = 2;
|
||||||
|
+ public static final int DEFAULT_CONNECT_TIMEOUT_IN_SECONDS = 10;
|
||||||
|
|
||||||
|
private String certFile;
|
||||||
|
private String keyFile;
|
||||||
|
--
|
||||||
|
2.17.2
|
||||||
|
|
||||||
|
|
@ -1,36 +1,28 @@
|
||||||
Name: voms-clients-java
|
Name: voms-clients-java
|
||||||
Version: 3.3.7
|
Version: 3.3.0
|
||||||
Release: 3%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: Virtual Organization Membership Service Java clients
|
Summary: Virtual Organization Membership Service Java clients
|
||||||
|
|
||||||
License: Apache-2.0
|
License: ASL 2.0
|
||||||
URL: https://github.com/italiangrid/voms-clients
|
URL: https://wiki.italiangrid.it/VOMS
|
||||||
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
Source0: https://github.com/italiangrid/voms-clients/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
# Use a more sensible timeout
|
||||||
|
# Backport from upstream git
|
||||||
|
Patch0: %{name}-use-a-more-sensible-timeout.patch
|
||||||
|
# Change default proxy cert key length to 2048 bits
|
||||||
|
# https://github.com/italiangrid/voms-clients/pull/20
|
||||||
|
Patch1: %{name}-change-default-proxy-cert-key-length-to-2048-bits.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
ExclusiveArch: %{java_arches} noarch
|
|
||||||
|
|
||||||
%if %{?fedora}%{!?fedora:0} >= 43
|
|
||||||
BuildRequires: maven-local-openjdk25
|
|
||||||
%else
|
|
||||||
BuildRequires: maven-local
|
BuildRequires: maven-local
|
||||||
%endif
|
|
||||||
BuildRequires: mvn(org.italiangrid:voms-api-java) >= 3.3.7
|
|
||||||
BuildRequires: mvn(commons-cli:commons-cli)
|
BuildRequires: mvn(commons-cli:commons-cli)
|
||||||
BuildRequires: mvn(commons-io:commons-io)
|
BuildRequires: mvn(commons-io:commons-io)
|
||||||
BuildRequires: mvn(junit:junit)
|
BuildRequires: mvn(org.italiangrid:voms-api-java)
|
||||||
BuildRequires: asciidoctor
|
BuildRequires: voms-api-java >= 3.3.0
|
||||||
Requires: mvn(org.italiangrid:voms-api-java) >= 3.3.7
|
Requires: voms-api-java >= 3.3.0
|
||||||
%if %{?rhel}%{!?rhel:0} == 9
|
|
||||||
Requires: (java-headless or java-1.8.0-headless or java-11-headless or java-17-headless or java-21-headless or java-25-headless)
|
|
||||||
%else
|
|
||||||
Requires: (java-headless or java-21-headless or java-25-headless)
|
|
||||||
%endif
|
|
||||||
Suggests: java-headless
|
|
||||||
Requires: javapackages-tools
|
|
||||||
|
|
||||||
Requires(post): %{_sbindir}/update-alternatives
|
Requires(post): %{_sbindir}/update-alternatives
|
||||||
Requires(preun): %{_sbindir}/update-alternatives
|
Requires(postun): %{_sbindir}/update-alternatives
|
||||||
|
|
||||||
# Older versions of voms-clients did not have alternatives
|
# Older versions of voms-clients did not have alternatives
|
||||||
Conflicts: voms-clients < 2.0.12
|
Conflicts: voms-clients < 2.0.12
|
||||||
|
|
@ -50,10 +42,8 @@ voms-proxy-init, voms-proxy-destroy and voms-proxy-info.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n voms-clients-%{version}
|
%setup -q -n voms-clients-%{version}
|
||||||
|
%patch0 -p1
|
||||||
# Remove maven-javadoc-plugin configuration
|
%patch1 -p1
|
||||||
# We are not building the javadoc for this package
|
|
||||||
%pom_remove_plugin org.apache.maven.plugins:maven-javadoc-plugin
|
|
||||||
|
|
||||||
# Do not create source jars
|
# Do not create source jars
|
||||||
%pom_remove_plugin org.apache.maven.plugins:maven-source-plugin
|
%pom_remove_plugin org.apache.maven.plugins:maven-source-plugin
|
||||||
|
|
@ -61,17 +51,12 @@ voms-proxy-init, voms-proxy-destroy and voms-proxy-info.
|
||||||
# Don't do assembly
|
# Don't do assembly
|
||||||
%pom_remove_plugin :maven-assembly-plugin
|
%pom_remove_plugin :maven-assembly-plugin
|
||||||
|
|
||||||
# The asciidoctor plugin is not available in Fedora
|
# Remove license plugin
|
||||||
# Run asciidoctor explicitly in the build section instead
|
%pom_remove_plugin com.mycila.maven-license-plugin:maven-license-plugin
|
||||||
%pom_remove_plugin org.asciidoctor:asciidoctor-maven-plugin
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%mvn_build -j
|
%mvn_build -j
|
||||||
|
|
||||||
pushd man
|
|
||||||
for x in *.adoc ; do asciidoctor -b manpage $x ; done
|
|
||||||
popd
|
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%mvn_install
|
%mvn_install
|
||||||
|
|
||||||
|
|
@ -79,25 +64,32 @@ mkdir -p %{buildroot}%{_bindir}
|
||||||
|
|
||||||
cat > %{buildroot}%{_bindir}/voms-proxy-init3 << EOF
|
cat > %{buildroot}%{_bindir}/voms-proxy-init3 << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
VOMS_CLIENTS_JAVA_OPTIONS=\${VOMS_CLIENTS_JAVA_OPTIONS:-"-XX:+UseSerialGC -Xmx32m"}
|
VOMS_CLIENTS_JAVA_OPTIONS=\${VOMS_CLIENTS_JAVA_OPTIONS:-"-XX:+UseSerialGC -Xmx16m"}
|
||||||
java \$VOMS_CLIENTS_JAVA_OPTIONS -cp \$(build-classpath voms-clients-java voms-api-java canl-java bcpkix bcutil bcprov commons-cli commons-io) org.italiangrid.voms.clients.VomsProxyInit "\$@"
|
java \$VOMS_CLIENTS_JAVA_OPTIONS -cp \$(build-classpath voms-clients-java voms-api-java canl-java bcpkix bcprov commons-cli commons-io) org.italiangrid.voms.clients.VomsProxyInit "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 %{buildroot}%{_bindir}/voms-proxy-init3
|
chmod 755 %{buildroot}%{_bindir}/voms-proxy-init3
|
||||||
|
|
||||||
cat > %{buildroot}%{_bindir}/voms-proxy-info3 << EOF
|
cat > %{buildroot}%{_bindir}/voms-proxy-info3 << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
VOMS_CLIENTS_JAVA_OPTIONS=\${VOMS_CLIENTS_JAVA_OPTIONS:-"-XX:+UseSerialGC -Xmx32m"}
|
VOMS_CLIENTS_JAVA_OPTIONS=\${VOMS_CLIENTS_JAVA_OPTIONS:-"-XX:+UseSerialGC -Xmx16m"}
|
||||||
java \$VOMS_CLIENTS_JAVA_OPTIONS -cp \$(build-classpath voms-clients-java voms-api-java canl-java bcpkix bcutil bcprov commons-cli commons-io) org.italiangrid.voms.clients.VomsProxyInfo "\$@"
|
java \$VOMS_CLIENTS_JAVA_OPTIONS -cp \$(build-classpath voms-clients-java voms-api-java canl-java bcpkix bcprov commons-cli commons-io) org.italiangrid.voms.clients.VomsProxyInfo "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 %{buildroot}%{_bindir}/voms-proxy-info3
|
chmod 755 %{buildroot}%{_bindir}/voms-proxy-info3
|
||||||
|
|
||||||
cat > %{buildroot}%{_bindir}/voms-proxy-destroy3 << EOF
|
cat > %{buildroot}%{_bindir}/voms-proxy-destroy3 << EOF
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
VOMS_CLIENTS_JAVA_OPTIONS=\${VOMS_CLIENTS_JAVA_OPTIONS:-"-XX:+UseSerialGC -Xmx32m"}
|
VOMS_CLIENTS_JAVA_OPTIONS=\${VOMS_CLIENTS_JAVA_OPTIONS:-"-XX:+UseSerialGC -Xmx16m"}
|
||||||
java \$VOMS_CLIENTS_JAVA_OPTIONS -cp \$(build-classpath voms-clients-java voms-api-java canl-java bcpkix bcutil bcprov commons-cli commons-io) org.italiangrid.voms.clients.VomsProxyDestroy "\$@"
|
java \$VOMS_CLIENTS_JAVA_OPTIONS -cp \$(build-classpath voms-clients-java voms-api-java canl-java bcpkix bcprov commons-cli commons-io) org.italiangrid.voms.clients.VomsProxyDestroy "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod 755 %{buildroot}%{_bindir}/voms-proxy-destroy3
|
chmod 755 %{buildroot}%{_bindir}/voms-proxy-destroy3
|
||||||
|
|
||||||
|
touch %{buildroot}%{_bindir}/voms-proxy-init
|
||||||
|
chmod 755 %{buildroot}%{_bindir}/voms-proxy-init
|
||||||
|
touch %{buildroot}%{_bindir}/voms-proxy-info
|
||||||
|
chmod 755 %{buildroot}%{_bindir}/voms-proxy-info
|
||||||
|
touch %{buildroot}%{_bindir}/voms-proxy-destroy
|
||||||
|
chmod 755 %{buildroot}%{_bindir}/voms-proxy-destroy
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_mandir}/man1
|
mkdir -p %{buildroot}%{_mandir}/man1
|
||||||
install -p -m 644 man/voms-proxy-init.1 \
|
install -p -m 644 man/voms-proxy-init.1 \
|
||||||
%{buildroot}%{_mandir}/man1/voms-proxy-init3.1
|
%{buildroot}%{_mandir}/man1/voms-proxy-init3.1
|
||||||
|
|
@ -106,13 +98,9 @@ install -p -m 644 man/voms-proxy-info.1 \
|
||||||
install -p -m 644 man/voms-proxy-destroy.1 \
|
install -p -m 644 man/voms-proxy-destroy.1 \
|
||||||
%{buildroot}%{_mandir}/man1/voms-proxy-destroy3.1
|
%{buildroot}%{_mandir}/man1/voms-proxy-destroy3.1
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_sysconfdir}/alternatives
|
touch %{buildroot}%{_mandir}/man1/voms-proxy-init.1
|
||||||
for b in voms-proxy-init voms-proxy-info voms-proxy-destroy; do
|
touch %{buildroot}%{_mandir}/man1/voms-proxy-info.1
|
||||||
ln -s %{_bindir}/${b}3 %{buildroot}%{_sysconfdir}/alternatives/${b}
|
touch %{buildroot}%{_mandir}/man1/voms-proxy-destroy.1
|
||||||
ln -s %{_sysconfdir}/alternatives/${b} %{buildroot}%{_bindir}/${b}
|
|
||||||
ln -s %{_mandir}/man1/${b}3.1.gz %{buildroot}%{_sysconfdir}/alternatives/${b}.1.gz
|
|
||||||
ln -s %{_sysconfdir}/alternatives/${b}.1.gz %{buildroot}%{_mandir}/man1/${b}.1.gz
|
|
||||||
done
|
|
||||||
|
|
||||||
mkdir -p %{buildroot}%{_mandir}/man5
|
mkdir -p %{buildroot}%{_mandir}/man5
|
||||||
install -p -m 644 man/vomsdir.5 %{buildroot}%{_mandir}/man5/vomsdir.5
|
install -p -m 644 man/vomsdir.5 %{buildroot}%{_mandir}/man5/vomsdir.5
|
||||||
|
|
@ -132,7 +120,7 @@ install -p -m 644 man/vomses.5 %{buildroot}%{_mandir}/man5/vomses.5
|
||||||
--slave %{_mandir}/man1/voms-proxy-destroy.1.gz voms-proxy-destroy-man \
|
--slave %{_mandir}/man1/voms-proxy-destroy.1.gz voms-proxy-destroy-man \
|
||||||
%{_mandir}/man1/voms-proxy-destroy3.1.gz
|
%{_mandir}/man1/voms-proxy-destroy3.1.gz
|
||||||
|
|
||||||
%preun
|
%postun
|
||||||
if [ $1 -eq 0 ] ; then
|
if [ $1 -eq 0 ] ; then
|
||||||
%{_sbindir}/update-alternatives --remove voms-proxy-init \
|
%{_sbindir}/update-alternatives --remove voms-proxy-init \
|
||||||
%{_bindir}/voms-proxy-init3
|
%{_bindir}/voms-proxy-init3
|
||||||
|
|
@ -143,130 +131,25 @@ if [ $1 -eq 0 ] ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
%files -f .mfiles
|
%files -f .mfiles
|
||||||
|
%dir %{_javadir}/%{name}
|
||||||
%{_bindir}/voms-proxy-destroy3
|
%{_bindir}/voms-proxy-destroy3
|
||||||
%{_bindir}/voms-proxy-info3
|
%{_bindir}/voms-proxy-info3
|
||||||
%{_bindir}/voms-proxy-init3
|
%{_bindir}/voms-proxy-init3
|
||||||
%ghost %{_bindir}/voms-proxy-destroy
|
%ghost %{_bindir}/voms-proxy-destroy
|
||||||
%ghost %{_bindir}/voms-proxy-info
|
%ghost %{_bindir}/voms-proxy-info
|
||||||
%ghost %{_bindir}/voms-proxy-init
|
%ghost %{_bindir}/voms-proxy-init
|
||||||
%ghost %{_sysconfdir}/alternatives/voms-proxy-destroy
|
|
||||||
%ghost %{_sysconfdir}/alternatives/voms-proxy-info
|
|
||||||
%ghost %{_sysconfdir}/alternatives/voms-proxy-init
|
|
||||||
%{_mandir}/man1/voms-proxy-destroy3.1*
|
%{_mandir}/man1/voms-proxy-destroy3.1*
|
||||||
%{_mandir}/man1/voms-proxy-info3.1*
|
%{_mandir}/man1/voms-proxy-info3.1*
|
||||||
%{_mandir}/man1/voms-proxy-init3.1*
|
%{_mandir}/man1/voms-proxy-init3.1*
|
||||||
%ghost %{_mandir}/man1/voms-proxy-destroy.1*
|
%ghost %{_mandir}/man1/voms-proxy-destroy.1*
|
||||||
%ghost %{_mandir}/man1/voms-proxy-info.1*
|
%ghost %{_mandir}/man1/voms-proxy-info.1*
|
||||||
%ghost %{_mandir}/man1/voms-proxy-init.1*
|
%ghost %{_mandir}/man1/voms-proxy-init.1*
|
||||||
%ghost %{_sysconfdir}/alternatives/voms-proxy-destroy.1*
|
|
||||||
%ghost %{_sysconfdir}/alternatives/voms-proxy-info.1*
|
|
||||||
%ghost %{_sysconfdir}/alternatives/voms-proxy-init.1*
|
|
||||||
%{_mandir}/man5/vomsdir.5*
|
%{_mandir}/man5/vomsdir.5*
|
||||||
%{_mandir}/man5/vomses.5*
|
%{_mandir}/man5/vomses.5*
|
||||||
%doc README.md
|
%doc AUTHORS README.md
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.7-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.7-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Dec 20 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.7-1
|
|
||||||
- Update to version 3.3.7
|
|
||||||
- Increase default max heap memory (following upstream)
|
|
||||||
|
|
||||||
* Wed Aug 06 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.6-1
|
|
||||||
- Update to version 3.3.6
|
|
||||||
|
|
||||||
* Mon Jul 28 2025 jiri vanek <jvanek@redhat.com> - 3.3.5-5
|
|
||||||
- Rebuilt for java-25-openjdk as preffered jdk
|
|
||||||
|
|
||||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.5-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 08 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.5-3
|
|
||||||
- Allow alternative java versions in EPEL 9
|
|
||||||
|
|
||||||
* Tue Apr 22 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.5-2
|
|
||||||
- Update URL tag
|
|
||||||
|
|
||||||
* Sat Apr 19 2025 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.5-1
|
|
||||||
- Update to version 3.3.5
|
|
||||||
|
|
||||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.3-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Aug 03 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.3-1
|
|
||||||
- Update to version 3.3.3
|
|
||||||
|
|
||||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-16
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri May 24 2024 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.2-15
|
|
||||||
- Update License tags (SPDX)
|
|
||||||
- Add additional ghost files to package (rpmlint)
|
|
||||||
|
|
||||||
* Thu May 23 2024 Marian Koncek <mkoncek@redhat.com> - 3.3.2-14
|
|
||||||
- Add Requires on java-headless
|
|
||||||
|
|
||||||
* Tue Feb 27 2024 Jiri Vanek <jvanek@redhat.com> - 3.3.2-13
|
|
||||||
- Rebuilt for java-21-openjdk as system jdk
|
|
||||||
|
|
||||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-12
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-11
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-10
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 08 2022 Jiri Vanek <jvanek@redhat.com> - 3.3.2-8
|
|
||||||
- Rebuilt for Drop i686 JDKs
|
|
||||||
|
|
||||||
* Sat Feb 05 2022 Jiri Vanek <jvanek@redhat.com> - 3.3.2-7
|
|
||||||
- Rebuilt for java-17-openjdk as system jdk
|
|
||||||
|
|
||||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-6
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jan 14 2022 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.2-5
|
|
||||||
- Add bcutil to classpath
|
|
||||||
|
|
||||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-4
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 17 2021 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.2-3
|
|
||||||
- Add missing build requires mvn(junit:junit)
|
|
||||||
|
|
||||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.2-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Oct 13 2020 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.2-1
|
|
||||||
- Update to version 3.3.2
|
|
||||||
- Drop patches voms-clients-java-use-a-more-sensible-timeout.patch and
|
|
||||||
voms-clients-java-change-default-proxy-cert-key-length-to-2048-bits.patch
|
|
||||||
|
|
||||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-9
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sat Jul 11 2020 Jiri Vanek <jvanek@redhat.com> - 3.3.0-8
|
|
||||||
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
|
||||||
|
|
||||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-7
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Aug 20 2019 Mattias Ellert <mattias.ellert@physics.uu.se> - 3.3.0-6
|
|
||||||
- Remove maven-javadoc-plugin configuration
|
|
||||||
|
|
||||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-5
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-4
|
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue