Compare commits

...
Sign in to create a new pull request.

12 commits

Author SHA1 Message Date
Sandro Mani
50e6691d5e Update to 4.3.4 2026-01-09 12:49:28 +01:00
Python Maint
432caaf640 Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 12:34:13 +02:00
Python Maint
e8adcf1ce4 Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 13:03:35 +02:00
Miroslav Suchý
264fdc9e8d Migrate to SPDX license
This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4
2025-08-03 10:31:43 +00:00
Fedora Release Engineering
8f08aafa90 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-24 23:29:44 +00:00
Python Maint
64be380724 Rebuilt for Python 3.14 2025-06-10 14:51:17 +02:00
Sandro Mani
67de2cbc27 Remove unnecessary postrotate script from logrotate configuration 2025-06-10 08:26:29 +02:00
Python Maint
9bd5ae16ae Rebuilt for Python 3.14 2025-06-02 19:58:41 +02:00
Sandro Mani
0d61c0eb71 Remove license review comment 2025-05-31 19:03:36 +02:00
Sandro Mani
d766436713 Update to 4.3.3 2025-04-02 10:12:05 +02:00
Zbigniew Jędrzejewski-Szmek
dfe2a938e5 Add sysusers.d config file to allow rpm to create users/groups automatically
See https://fedoraproject.org/wiki/Changes/RPMSuportForSystemdSysusers.
2025-02-11 15:53:27 +01:00
Fedora Release Engineering
bf28d9ad82 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-17 21:28:26 +00:00
4 changed files with 45 additions and 17 deletions

2
.gitignore vendored
View file

@ -8,3 +8,5 @@
/omniORB-4.3.0.tar.bz2
/omniORB-4.3.1.tar.bz2
/omniORB-4.3.2.tar.bz2
/omniORB-4.3.3.tar.bz2
/omniORB-4.3.4.tar.bz2

View file

@ -6,7 +6,4 @@
compress
notifempty
missingok
postrotate
/bin/kill -USR1 `cat /var/run/omniORB/omniORB.pid 2>/dev/null` 2> /dev/null|| true
endscript
}
}

View file

@ -8,8 +8,8 @@
%bcond_without openssl
Name: omniORB
Version: 4.3.2
Release: 6%{?dist}
Version: 4.3.4
Release: 1%{?dist}
Summary: A robust high performance CORBA ORB for C++ and Python
License: LGPL-2.0-or-later
@ -34,7 +34,6 @@ Requires(postun): systemd
%else
Requires(post): chkconfig
Requires(preun): chkconfig
Requires(pre): shadow-utils
# This is for /sbin/service
Requires(postun): initscripts
%endif
@ -53,7 +52,7 @@ compliant.
%package devel
Summary: Development files for %{name}
License: LGPLv2+
License: LGPL-2.0-or-later
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
@ -71,7 +70,6 @@ developing and administrating applications that use %{name}.
%package servers
Summary: OmniORB naming service
# Automatically converted from old format: GPLv2+ - review is highly recommended.
License: GPL-2.0-or-later
Requires: %{name}%{?_isa} = %{version}-%{release}
@ -80,7 +78,6 @@ The %{name}-servers package contains omniNames naming server.
%package utils
Summary: Development files for %{name}
# Automatically converted from old format: GPLv2+ - review is highly recommended.
License: GPL-2.0-or-later
Requires: %{name}%{?_isa} = %{version}-%{release}
@ -96,6 +93,11 @@ sed -i '1s=^#!/usr/bin/\(python\|env python\)[0-9.]*=#!%{__python3}=' \
./src/tool/omniidl/python3/scripts/omniidlrun.py \
./src/tool/omniidl/python3/omniidl/main.py
# Create a sysusers.d config file
cat >omniorb.sysusers.conf <<EOF
u omniORB - 'OmniNames Naming Service' %{_sharedstatedir}/%{name} -
EOF
%build
# Per guidelines: if the same functionality is provided regardless of the interpreter version, only the python 3 version should be packaged
export PYTHON=%{__python3}
@ -144,14 +146,10 @@ mkdir -p %{buildroot}%{_mandir}/man8
install -m 0644 man8/* %{buildroot}%{_mandir}/man8/
popd
install -m0644 -D omniorb.sysusers.conf %{buildroot}%{_sysusersdir}/omniorb.conf
%ldconfig_scriptlets
%pre servers
getent group %{name} >/dev/null || groupadd -r %{name}
getent passwd %{name} >/dev/null || \
useradd -r -g %{name} -d %{_sharedstatedir}/%{name} -s /sbin/nologin \
-c "OmniNames Naming Service" %{name}
exit 0
%if 0%{?with_systemd}
%post servers
@ -209,6 +207,7 @@ fi
%{_bindir}/omniMapper
%{_bindir}/%{nameserver}
%{_mandir}/man8/*
%{_sysusersdir}/omniorb.conf
%files devel
%doc doc/
@ -241,6 +240,36 @@ fi
%changelog
* Fri Jan 09 2026 Sandro Mani <manisandro@gmail.com> - 4.3.4-1
- Update to 4.3.4
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 4.3.3-7
- Rebuilt for Python 3.14.0rc3 bytecode
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 4.3.3-6
- Rebuilt for Python 3.14.0rc2 bytecode
* Thu Jul 24 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.3-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Tue Jun 10 2025 Python Maint <python-maint@redhat.com> - 4.3.3-4
- Rebuilt for Python 3.14
* Tue Jun 10 2025 Sandro Mani <manisandro@gmail.com> - 4.3.3-3
- Remove unnecessary postrotate script from logrotate configuration
* Mon Jun 02 2025 Python Maint <python-maint@redhat.com> - 4.3.3-2
- Rebuilt for Python 3.14
* Wed Apr 02 2025 Sandro Mani <manisandro@gmail.com> - 4.3.3-1
- Update to 4.3.3
* Tue Feb 11 2025 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 4.3.2-8
- Add sysusers.d config file to allow rpm to create users/groups automatically
* Fri Jan 17 2025 Fedora Release Engineering <releng@fedoraproject.org> - 4.3.2-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Fri Jul 26 2024 Miroslav Suchý <msuchy@redhat.com> - 4.3.2-6
- convert license to SPDX

View file

@ -1 +1 @@
SHA512 (omniORB-4.3.2.tar.bz2) = a17744259042e65bd18172036d85f413d49f473a5ea6ce8ce616a3d33bb4509c4b526df78dd302a304512d163b27e4b4274b0bac9ccbaa29b08e417075d77b6b
SHA512 (omniORB-4.3.4.tar.bz2) = e9eddcd9e53df1783f74a75b6471de6f0e4dbb806329506de1e3b87a279b0a0894db2df47cd1917254fa1ef660ec8503fba260144d3b810f6380f56f337791cd