orafce/orafce.spec
Emiliano Langella 4c1614d0fa Accepting request 1176507 from home:emilianolangella
- Update to version 4.10.2+git0.8d10ace:
  * prepare for 4.10.2
  * When load of orafce was triggered by using some orafce's function by nonprivileged user, then the check orafce_umask_check_hook fails and breaks loading of Orafce. This fix disable check in initialization time when orafce_umask is set to default value (so the check can be disabled).
  * prepare for 4.10.1
  * regress tests for issues #266 and #267
  * fix obsolete (and broken) implementation of dbms_assert.qualified_sql_name
  * fix not correct test of identifier validity in dbms_assert.simple_sql_name
  * Add an alternative output for test dbms_random (Illumos)

OBS-URL: https://build.opensuse.org/request/show/1176507
OBS-URL: https://build.opensuse.org/package/show/server:database:postgresql/orafce?expand=0&rev=57
2024-05-23 15:24:26 +00:00

68 lines
2.0 KiB
RPMSpec

#
# spec file for package orafce
#
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define pgname @BUILD_FLAVOR@
%define realname orafce
Name: %{pgname}-orafce
Version: 4.10.2+git0.8d10ace
Release: 0
Summary: Implementation of some Oracle functions into PostgreSQL
Group: Productivity/Databases/Tools
License: MIT
URL: https://github.com/orafce/orafce
Source0: %{realname}-%{version}.tar.gz
BuildRequires: %{pgname}-server-devel
BuildRequires: bison
BuildRequires: flex
BuildRequires: krb5-devel
BuildRequires: libicu-devel
BuildRequires: openssl-devel
%requires_eq %{pgname}-server
Provides: orafce = %{version}-%{release}
%if "%{pgname}" == ""
ExclusiveArch: do_not_build
Name: %{realname}
%endif
%description
The goal of this project is implementation some functions from Oracle database.
Some date functions (next_day, last_day, trunc, round, ...) are implemented
now. Functionality was verified on Oracle 10g and module is useful
for production work.
%prep
%setup -q -n %{realname}-%{version}
%build
export PATH="$PATH:/usr/lib/%{pgname}/bin"
make USE_PGXS=1 %{?_smp_mflags} FLEX=/usr/bin/flex
%install
export PATH="$PATH:/usr/lib/%{pgname}/bin"
make USE_PGXS=1 install DESTDIR=$RPM_BUILD_ROOT
%files
%defattr(-,root,root,-)
%doc COPYRIGHT.orafce INSTALL.orafce README.asciidoc NEWS
%{_prefix}/lib/%{pgname}/%{_lib}
%{_datadir}/%{pgname}/
%exclude %{_docdir}/%{pgname}/
%changelog