update to 5.20.20 [release 5.20.20-1mamba;Thu Feb 04 2021]

This commit is contained in:
Silvan Calarco 2024-01-05 20:12:34 +01:00
parent 794cad8c2c
commit 600acf39ca
2 changed files with 17 additions and 17 deletions

View File

@ -1,7 +1,6 @@
# adodb # adodb
PHP is a wonderful language for building dynamic web pages. Unfortunately, PHP's database access functions are not standardised. Every database extension uses a different and incompatibile API. This creates a need for a database class library to hide the differences between the different databases (encapsulate the differences) so we can easily switch databases. PHP is a wonderful language for building dynamic web pages. Unfortunately, PHP's database access functions are not standardised. Every database extension uses a different and incompatibile API. This creates a need for a database class library to hide the differences between the different databases (encapsulate the differences) so we can easily switch databases.
ADOdb stands for Active Data Objects Data Base. ADOdb stands for Active Data Objects Data Base.
We currently support MySQL, PostgreSQL, Interbase, Informix, Oracle, MS SQL 7, Foxpro, Access, ADO, SAP DB, SQLite, Sybase, DB2 and generic ODBC. The Sybase, Informix and PostgreSQL drivers are community contributions. We hope more people will contribute drivers to support more databases. We currently support MySQL, PostgreSQL, Interbase, Informix, Oracle, MS SQL 7, Foxpro, Access, ADO, SAP DB, SQLite, Sybase, DB2 and generic ODBC. The Sybase, Informix and PostgreSQL drivers are community contributions. We hope more people will contribute drivers to support more databases.

View File

@ -1,49 +1,50 @@
%define majver %(echo %version | cut -d. -f1) %define majver %(echo %version | cut -d. -f1)
%define minver %(echo %version | cut -d. -f2) %define minver %(echo %version | cut -d. -f2)
Name: adodb Name: adodb
Version: 5.09a Version: 5.20.20
Release: 1mamba Release: 1mamba
Summary: Active Data Objects Data Base PHP standard class library Summary: Active Data Objects Data Base PHP standard class library
Group: System/Kernel and Hardware Group: System/Kernel and Hardware
Vendor: openmamba Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
#URL: http://php.weblogs.com/adodb URL: https://adodb.org/dokuwiki/doku.php
URL: http://adodb.sourceforge.net Source: https://github.com/ADOdb/ADOdb.git/v%{version}/ADOdb-%{version}.tar.bz2
#Source: http://phplens.com/lens/dl/adodb495a.tgz #Source: http://downloads.sourceforge.net/adodb/adodb%{majver}%{minver}.tgz
Source: http://downloads.sourceforge.net/adodb/adodb%{majver}%{minver}.tgz
License: GPL License: GPL
Requires: php >= 5 ## AUTOBUILDREQ-BEGIN
## AUTOBUILDREQ-END
Requires: php
BuildRoot: %{_tmppath}/%{name}-%{version}-root BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description %description
PHP is a wonderful language for building dynamic web pages. Unfortunately, PHP's database access functions are not standardised. Every database extension uses a different and incompatibile API. This creates a need for a database class library to hide the differences between the different databases (encapsulate the differences) so we can easily switch databases. PHP is a wonderful language for building dynamic web pages. Unfortunately, PHP's database access functions are not standardised. Every database extension uses a different and incompatibile API. This creates a need for a database class library to hide the differences between the different databases (encapsulate the differences) so we can easily switch databases.
ADOdb stands for Active Data Objects Data Base. ADOdb stands for Active Data Objects Data Base.
We currently support MySQL, PostgreSQL, Interbase, Informix, Oracle, MS SQL 7, Foxpro, Access, ADO, SAP DB, SQLite, Sybase, DB2 and generic ODBC. The Sybase, Informix and PostgreSQL drivers are community contributions. We hope more people will contribute drivers to support more databases. We currently support MySQL, PostgreSQL, Interbase, Informix, Oracle, MS SQL 7, Foxpro, Access, ADO, SAP DB, SQLite, Sybase, DB2 and generic ODBC. The Sybase, Informix and PostgreSQL drivers are community contributions. We hope more people will contribute drivers to support more databases.
%prep %prep
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" %setup -q -n ADOdb-%{version}
%setup -q -n %{name}%{majver}
%build %build
%install %install
mkdir -p %{buildroot}/var/www/html [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
pushd %{buildroot}/var/www/html mkdir -p %{buildroot}/var/www/html/adodb
tar xzf %{SOURCE0} cp -r * %{buildroot}/var/www/html/adodb/
echo "" > %{buildroot}/var/www/html/adodb%{majver}/index.html touch %{buildroot}/var/www/html/adodb/index.html
%clean %clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" [ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%dir %{_localstatedir}/www/html/adodb%{majver} %dir %{_localstatedir}/www/html/adodb
%{_localstatedir}/www/html/adodb%{majver}/* %{_localstatedir}/www/html/adodb/*
%changelog %changelog
* Thu Feb 04 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 5.20.20-1mamba
- update to 5.20.20
* Sat Feb 19 2011 Automatic Build System <autodist@mambasoft.it> 5.09a-1mamba * Sat Feb 19 2011 Automatic Build System <autodist@mambasoft.it> 5.09a-1mamba
- update to 5.09a - update to 5.09a