2024-01-05 21:58:43 +01:00
|
|
|
|
%define serverdir %(/usr/bin/apxs -q htdocsdir 2>/dev/null)
|
|
|
|
|
|
|
|
|
|
# To create a customized installation:
|
|
|
|
|
# autospec -u drupal -a5 \
|
|
|
|
|
# -d "installdir=%serverdir/../www.example.com, \
|
|
|
|
|
# sitename=example, \
|
|
|
|
|
# adminmail=webmaster@example.com"
|
|
|
|
|
|
|
|
|
|
%if "%{?installdir}" == ""
|
|
|
|
|
%define installdir %{serverdir}/drupal
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
%if "%{?sitename}" != ""
|
|
|
|
|
%if "%{?servername}" == ""
|
|
|
|
|
%define servername %(basename %installdir 2>/dev/null)
|
|
|
|
|
%endif
|
|
|
|
|
%define serverlogdir %(/usr/sbin/apxs -q logfiledir 2>/dev/null)
|
|
|
|
|
%else
|
|
|
|
|
%if "%{?aliasdir}" == ""
|
|
|
|
|
%define aliasdir /drupal
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
|
|
|
|
|
Name: %{?sitename:%sitename-website-}drupal
|
2024-01-05 21:58:45 +01:00
|
|
|
|
Version: 9.0.2
|
2024-01-05 21:58:43 +01:00
|
|
|
|
Release: 1mamba
|
2024-01-05 21:58:43 +01:00
|
|
|
|
Summary: An open source content management platform powering millions of websites and applications
|
|
|
|
|
Group: Applications/Web
|
|
|
|
|
Vendor: openmamba
|
|
|
|
|
Distribution: openmamba
|
|
|
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
|
|
|
URL: http://drupal.org
|
|
|
|
|
Source: http://ftp.drupal.org/files/projects/drupal-%{version}.tar.gz
|
|
|
|
|
Source1: http://ftp.drupal.org/files/projects/es-6.x-1.4.tar.gz
|
|
|
|
|
Source2: http://www.drupalitalia.org/sites/drupalitalia.org/files/translations/drupal-6.17-it-translations.tgz
|
|
|
|
|
License: GPL
|
2024-01-05 21:58:43 +01:00
|
|
|
|
## AUTOBUILDREQ-BEGIN
|
|
|
|
|
## AUTOBUILDREQ-END
|
2024-01-05 21:58:43 +01:00
|
|
|
|
Requires: php
|
|
|
|
|
Requires: mysql
|
|
|
|
|
Requires: apache
|
|
|
|
|
Requires: apache-mod_php
|
|
|
|
|
Requires: php-mysql
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
Drupal is an open source content management platform powering millions of websites and applications. It’s built, used, and supported by an active and diverse community of people around the world.
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
|
%setup -q -a1 -a2
|
2024-01-05 21:58:43 +01:00
|
|
|
|
sed -i "s|#!/bin/php|#!%{_bindir}/php|" core/scripts/update-countries.sh
|
2024-01-05 21:58:43 +01:00
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
chmod 644 profiles/default/translations/it.po
|
|
|
|
|
cp sites/default/default.settings.php sites/default/settings.php
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
|
install -d %{buildroot}%{installdir}
|
|
|
|
|
cp -a * %{buildroot}%{installdir}
|
|
|
|
|
|
|
|
|
|
install -d %{buildroot}%{_sysconfdir}/httpd/httpd.d
|
|
|
|
|
%if "%{?sitename}" != ""
|
|
|
|
|
cat > %{buildroot}%{_sysconfdir}/httpd/httpd.d/%{servername}.conf << EOF
|
|
|
|
|
%else
|
|
|
|
|
cat > %{buildroot}%{_sysconfdir}/httpd/httpd.d/%{name}.conf << EOF
|
|
|
|
|
%endif
|
|
|
|
|
%if "%{?sitename}" == ""
|
|
|
|
|
%if "%(dirname %installdir)" != "%{serverdir}"
|
|
|
|
|
Alias %{aliasdir} %{installdir}
|
|
|
|
|
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
<Directory %{installdir}>
|
|
|
|
|
AllowOverride All
|
|
|
|
|
RewriteEngine On
|
|
|
|
|
Order allow,deny
|
|
|
|
|
Allow from All
|
|
|
|
|
</Directory>
|
|
|
|
|
%if "%{?sitename}" != ""
|
|
|
|
|
%if "%(dirname %installdir)" != "%{serverdir}"
|
|
|
|
|
|
|
|
|
|
<VirtualHost *:80>
|
|
|
|
|
%{?adminmail:ServerAdmin %adminmail}
|
|
|
|
|
DocumentRoot %{installdir}
|
|
|
|
|
ServerName %{servername}
|
|
|
|
|
ErrorLog %{serverlogdir}/%{servername}-error_log
|
|
|
|
|
CustomLog %{serverlogdir}/%{servername}-access_log common
|
|
|
|
|
</VirtualHost>
|
|
|
|
|
%endif
|
|
|
|
|
%endif
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
%clean
|
|
|
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
|
|
|
|
|
|
%post
|
|
|
|
|
if [ $1 -ge 1 ]; then
|
|
|
|
|
[ -e %{_localstatedir}/lock/subsys/httpd ] && service httpd reload || :
|
|
|
|
|
fi
|
|
|
|
|
:
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%defattr(-,root,root)
|
|
|
|
|
%if "%{?sitename}" != ""
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/httpd.d/%{servername}.conf
|
|
|
|
|
%else
|
|
|
|
|
%config(noreplace) %{_sysconfdir}/httpd/httpd.d/%{name}.conf
|
|
|
|
|
%endif
|
|
|
|
|
%{installdir}/*.txt
|
2024-01-05 21:58:43 +01:00
|
|
|
|
%{installdir}/autoload.php
|
|
|
|
|
%{installdir}/composer.json
|
|
|
|
|
%{installdir}/composer.lock
|
|
|
|
|
#%{installdir}/authorize.php
|
|
|
|
|
%{installdir}/core
|
|
|
|
|
#%{installdir}/cron.php
|
|
|
|
|
%{installdir}/example.gitignore
|
|
|
|
|
#%{installdir}/includes
|
2024-01-05 21:58:43 +01:00
|
|
|
|
%{installdir}/index.php
|
2024-01-05 21:58:43 +01:00
|
|
|
|
#%{installdir}/install.php
|
|
|
|
|
#%{installdir}/misc
|
2024-01-05 21:58:43 +01:00
|
|
|
|
%{installdir}/modules
|
|
|
|
|
%{installdir}/profiles
|
2024-01-05 21:58:43 +01:00
|
|
|
|
%{installdir}/sites
|
2024-01-05 21:58:43 +01:00
|
|
|
|
%dir %attr(0775,root,nobody) %{installdir}/sites/default
|
|
|
|
|
%attr(0664,root,nobody) %config(noreplace) %{installdir}/sites/default/settings.php
|
|
|
|
|
%{installdir}/sites/default/default.settings.php
|
|
|
|
|
%{installdir}/sites/example.sites.php
|
|
|
|
|
%{installdir}/sites/README.txt
|
2024-01-05 21:58:43 +01:00
|
|
|
|
#%{installdir}/scripts
|
2024-01-05 21:58:43 +01:00
|
|
|
|
#%{installdir}/sites
|
|
|
|
|
%{installdir}/themes
|
|
|
|
|
%{installdir}/update.php
|
2024-01-05 21:58:43 +01:00
|
|
|
|
%{installdir}/vendor
|
2024-01-05 21:58:43 +01:00
|
|
|
|
%{installdir}/web.config
|
2024-01-05 21:58:43 +01:00
|
|
|
|
#%{installdir}/xmlrpc.php
|
2024-01-05 21:58:43 +01:00
|
|
|
|
|
|
|
|
|
%changelog
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Sun Jul 19 2020 Automatic Build System <autodist@mambasoft.it> 9.0.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Fri Jun 05 2020 Automatic Build System <autodist@mambasoft.it> 9.0.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Thu May 28 2020 Automatic Build System <autodist@mambasoft.it> 8.8.6-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Mon Apr 06 2020 Automatic Build System <autodist@mambasoft.it> 8.8.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Tue Mar 24 2020 Automatic Build System <autodist@mambasoft.it> 8.8.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Sat Mar 07 2020 Automatic Build System <autodist@mambasoft.it> 8.8.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Mon Feb 03 2020 Automatic Build System <autodist@mambasoft.it> 8.8.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Wed Jan 01 2020 Automatic Build System <autodist@mambasoft.it> 8.8.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Thu Dec 05 2019 Automatic Build System <autodist@mambasoft.it> 8.8.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Fri Nov 15 2019 Automatic Build System <autodist@mambasoft.it> 8.7.10-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Thu Nov 07 2019 Automatic Build System <autodist@mambasoft.it> 8.7.9-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Sat Oct 05 2019 Automatic Build System <autodist@mambasoft.it> 8.7.8-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Wed Sep 11 2019 Automatic Build System <autodist@mambasoft.it> 8.7.7-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Tue Aug 13 2019 Automatic Build System <autodist@mambasoft.it> 8.7.6-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Mon Jul 22 2019 Automatic Build System <autodist@mambasoft.it> 8.7.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:45 +01:00
|
|
|
|
* Wed Jul 10 2019 Automatic Build System <autodist@mambasoft.it> 8.7.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jun 06 2019 Automatic Build System <autodist@mambasoft.it> 8.7.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri May 24 2019 Automatic Build System <autodist@mambasoft.it> 8.7.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu May 09 2019 Automatic Build System <autodist@mambasoft.it> 8.7.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri May 03 2019 Automatic Build System <autodist@mambasoft.it> 8.7.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Mon Apr 22 2019 Automatic Build System <autodist@mambasoft.it> 8.6.15-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Mon Apr 08 2019 Automatic Build System <autodist@mambasoft.it> 8.6.14-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Sun Mar 24 2019 Automatic Build System <autodist@mambasoft.it> 8.6.13-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Mon Mar 18 2019 Automatic Build System <autodist@mambasoft.it> 8.6.12-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Mar 14 2019 Automatic Build System <autodist@mambasoft.it> 8.6.11-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Feb 21 2019 Automatic Build System <autodist@mambasoft.it> 8.6.10-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Mon Feb 11 2019 Automatic Build System <autodist@mambasoft.it> 8.6.9-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jan 17 2019 Automatic Build System <autodist@mambasoft.it> 8.6.7-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jan 10 2019 Automatic Build System <autodist@mambasoft.it> 8.6.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Dec 06 2018 Automatic Build System <autodist@mambasoft.it> 8.6.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Nov 15 2018 Automatic Build System <autodist@mambasoft.it> 8.6.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri Oct 19 2018 Automatic Build System <autodist@mambasoft.it> 8.6.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Tue Sep 11 2018 Automatic Build System <autodist@mambasoft.it> 8.6.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Sep 06 2018 Automatic Build System <autodist@mambasoft.it> 8.6.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Mon Aug 06 2018 Automatic Build System <autodist@mambasoft.it> 8.5.6-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Mon Jul 09 2018 Automatic Build System <autodist@mambasoft.it> 8.5.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jun 07 2018 Automatic Build System <autodist@mambasoft.it> 8.5.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Apr 26 2018 Automatic Build System <autodist@mambasoft.it> 8.5.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Apr 19 2018 Automatic Build System <autodist@mambasoft.it> 8.5.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Mar 29 2018 Automatic Build System <autodist@mambasoft.it> 8.5.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri Mar 09 2018 Automatic Build System <autodist@mambasoft.it> 8.5.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Feb 22 2018 Automatic Build System <autodist@mambasoft.it> 8.4.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Wed Jan 10 2018 Automatic Build System <autodist@mambasoft.it> 8.4.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Wed Dec 20 2017 Automatic Build System <autodist@mambasoft.it> 8.4.3-1mamba
|
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri Nov 03 2017 Automatic Build System <autodist@mambasoft.it> 8.4.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri Oct 06 2017 Automatic Build System <autodist@mambasoft.it> 8.4.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri Aug 18 2017 Automatic Build System <autodist@mambasoft.it> 8.3.7-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Aug 03 2017 Automatic Build System <autodist@mambasoft.it> 8.3.6-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jul 06 2017 Automatic Build System <autodist@mambasoft.it> 8.3.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jun 22 2017 Automatic Build System <autodist@mambasoft.it> 8.3.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jun 08 2017 Automatic Build System <autodist@mambasoft.it> 8.3.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu May 04 2017 Automatic Build System <autodist@mambasoft.it> 8.3.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Apr 20 2017 Automatic Build System <autodist@mambasoft.it> 8.3.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Fri Apr 07 2017 Automatic Build System <autodist@mambasoft.it> 8.3.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Mar 16 2017 Automatic Build System <autodist@mambasoft.it> 8.2.7-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Feb 02 2017 Automatic Build System <autodist@mambasoft.it> 8.2.6-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Jan 05 2017 Automatic Build System <autodist@mambasoft.it> 8.2.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Dec 08 2016 Automatic Build System <autodist@mambasoft.it> 8.2.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Thu Nov 17 2016 Automatic Build System <autodist@mambasoft.it> 8.2.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:44 +01:00
|
|
|
|
* Mon Nov 07 2016 Automatic Build System <autodist@mambasoft.it> 8.2.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Fri Oct 14 2016 Automatic Build System <autodist@mambasoft.it> 8.2.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Thu Oct 06 2016 Automatic Build System <autodist@mambasoft.it> 8.2.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Fri Sep 23 2016 Automatic Build System <autodist@mambasoft.it> 8.1.10-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Thu Sep 08 2016 Automatic Build System <autodist@mambasoft.it> 8.1.9-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Fri Aug 05 2016 Automatic Build System <autodist@mambasoft.it> 8.1.8-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Tue Jul 19 2016 Automatic Build System <autodist@mambasoft.it> 8.1.7-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Wed Jul 13 2016 Automatic Build System <autodist@mambasoft.it> 8.1.6-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Mon Jul 11 2016 Automatic Build System <autodist@mambasoft.it> 8.1.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Wed Jun 22 2016 Automatic Build System <autodist@mambasoft.it> 8.1.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Thu Jun 02 2016 Automatic Build System <autodist@mambasoft.it> 8.1.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Mon May 09 2016 Automatic Build System <autodist@mambasoft.it> 8.1.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Wed Apr 20 2016 Automatic Build System <autodist@mambasoft.it> 8.1.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Tue Apr 19 2016 Silvan Calarco <silvan.calarco@mambasoft.it> 8.0.6-2mamba
|
|
|
|
|
- fix missing /bin/php autorequirement
|
|
|
|
|
|
|
|
|
|
* Mon Apr 11 2016 Automatic Build System <autodist@mambasoft.it> 8.0.6-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Wed Mar 09 2016 Automatic Build System <autodist@mambasoft.it> 8.0.5-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Thu Feb 25 2016 Automatic Build System <autodist@mambasoft.it> 8.0.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Feb 08 2016 Automatic Build System <autodist@mambasoft.it> 8.0.3-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Sun Jan 24 2016 Automatic Build System <autodist@mambasoft.it> 8.0.2-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Tue Dec 29 2015 Automatic Build System <autodist@mambasoft.it> 8.0.1-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Thu Dec 24 2015 Automatic Build System <autodist@mambasoft.it> 8.0.0-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Thu Oct 22 2015 Automatic Build System <autodist@mambasoft.it> 7.41-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Sat Oct 17 2015 Automatic Build System <autodist@mambasoft.it> 7.40-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Fri Aug 21 2015 Automatic Build System <autodist@mambasoft.it> 7.39-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Thu Jun 18 2015 Automatic Build System <autodist@mambasoft.it> 7.38-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Tue May 12 2015 Automatic Build System <autodist@mambasoft.it> 7.37-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Wed Apr 08 2015 Automatic Build System <autodist@mambasoft.it> 7.36-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Sat Mar 21 2015 Automatic Build System <autodist@mambasoft.it> 7.35-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Fri Nov 21 2014 Automatic Build System <autodist@mambasoft.it> 7.34-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Sat Nov 08 2014 Automatic Build System <autodist@mambasoft.it> 7.33-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Thu Oct 16 2014 Automatic Build System <autodist@mambasoft.it> 7.32-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Fri Aug 08 2014 Automatic Build System <autodist@mambasoft.it> 7.31-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Mon Jul 28 2014 Automatic Build System <autodist@mambasoft.it> 7.30-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Fri Jul 18 2014 Automatic Build System <autodist@mambasoft.it> 7.29-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
2024-01-05 21:58:43 +01:00
|
|
|
|
* Thu May 08 2014 Automatic Build System <autodist@mambasoft.it> 7.28-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Apr 21 2014 Automatic Build System <autodist@mambasoft.it> 7.27-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Jan 27 2014 Automatic Build System <autodist@mambasoft.it> 7.26-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Jan 06 2014 Automatic Build System <autodist@mambasoft.it> 7.25-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Sat Nov 23 2013 Automatic Build System <autodist@mambasoft.it> 7.24-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Sun Aug 11 2013 Automatic Build System <autodist@mambasoft.it> 7.23-1mamba
|
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
|
|
* Sun Apr 14 2013 Automatic Build System <autodist@mambasoft.it> 7.22-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Mar 11 2013 Automatic Build System <autodist@mambasoft.it> 7.21-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Thu Feb 28 2013 Automatic Build System <autodist@mambasoft.it> 7.20-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Fri Jan 18 2013 Automatic Build System <autodist@mambasoft.it> 7.19-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Thu Jan 10 2013 Automatic Build System <autodist@mambasoft.it> 7.18-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Sat Oct 27 2012 Automatic Build System <autodist@mambasoft.it> 7.16-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Wed Aug 15 2012 Automatic Build System <autodist@mambasoft.it> 7.15-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Fri Jun 15 2012 Automatic Build System <autodist@mambasoft.it> 7.14-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Oct 03 2011 Automatic Build System <autodist@mambasoft.it> 7.8-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Fri Jul 29 2011 Automatic Build System <autodist@mambasoft.it> 7.7-1mamba
|
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Jul 25 2011 Automatic Build System <autodist@mambasoft.it> 7.4-1mamba
|
|
|
|
|
- automatic version update by autodist
|
|
|
|
|
|
|
|
|
|
* Tue Jun 07 2011 Automatic Build System <autodist@mambasoft.it> 7.2-1mamba
|
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
|
|
* Mon Jan 31 2011 Automatic Build System <autodist@mambasoft.it> 7.0-1mamba
|
|
|
|
|
- automatic update by autodist
|
|
|
|
|
|
|
|
|
|
* Sat Oct 30 2010 Silvan Calarco <silvan.calarco@mambasoft.it> 6.19-1mamba
|
|
|
|
|
- package created by autospec
|