Accepting request 316532 from home:ecsos:server
update to 5.0 OBS-URL: https://build.opensuse.org/request/show/316532 OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/bugzilla?expand=0&rev=3
This commit is contained in:
parent
f1634cd2fe
commit
f422ac86f0
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:90edf7a3193a3bd8c7ac49e3325e63c539b506db28bd48eb173d30ff59385046
|
|
||||||
size 4924519
|
|
3
bugzilla-5.0.tar.gz
Normal file
3
bugzilla-5.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:ee5a26c00c67531ef4ce9bf5eae6f07bd59d8900ebe3139ca8e96562f92c7e06
|
||||||
|
size 3996799
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:70c32249bba0f8c190b32e39e05042112c6c69035fc81114f9542c102aea40d6
|
|
||||||
size 263000
|
|
3
bugzilla-de-5.0-1.utf-8.tar.gz
Normal file
3
bugzilla-de-5.0-1.utf-8.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bd630f9beb493875158ed58e5cbc849db6cb77edfc18383a1422b8b567950b5a
|
||||||
|
size 262277
|
@ -1,3 +1,35 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jul 13 16:48:40 UTC 2015 - ecsos@opensuse.org
|
||||||
|
|
||||||
|
- update to 5.0
|
||||||
|
https://www.bugzilla.org/releases/5.0/release-notes.html
|
||||||
|
- update german language to 5.0
|
||||||
|
- fix no acccess under apache 2.4 in bugzilla.conf
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jun 23 07:32:15 UTC 2015 - ecsos@opensuse.org
|
||||||
|
|
||||||
|
- add perl-Module-Pluggable and perl-Object-Pluggable to Requires:
|
||||||
|
because it will be removed in next perl major release.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 23 16:20:39 UTC 2015 - ecsos@opensuse.org
|
||||||
|
|
||||||
|
- update to 4.4.9
|
||||||
|
- Users who are not in the insidergroup were able to determine
|
||||||
|
if some specific user made a private comment in bugs.
|
||||||
|
(Bug 1151290)
|
||||||
|
- Due to a regression caused by bug 1090275, the WebService
|
||||||
|
methods Bug.get_bugs and Bug.get_history were no longer
|
||||||
|
allowed. (Bug 1154099)
|
||||||
|
- Bugzilla now supports the new .htaccess format from Apache 2.4.
|
||||||
|
(Bug 1121477)
|
||||||
|
- A regression in Bugzilla 4.4.3 due to CVE-2014-1517 caused the
|
||||||
|
admin's password to be ignored when starting a sudo session.
|
||||||
|
(Bug 1132887)
|
||||||
|
- update bugzilla.conf with new from .htaccess
|
||||||
|
- update german language to 4.4.9
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Mar 25 11:17:32 UTC 2015 - jweberhofer@weberhofer.at
|
Wed Mar 25 11:17:32 UTC 2015 - jweberhofer@weberhofer.at
|
||||||
|
|
||||||
|
@ -5,12 +5,34 @@ Alias /bugzilla "/srv/www/bugzilla/"
|
|||||||
Options +ExecCGI +FollowSymLinks
|
Options +ExecCGI +FollowSymLinks
|
||||||
DirectoryIndex index.cgi index.html
|
DirectoryIndex index.cgi index.html
|
||||||
AllowOverride Limit FileInfo Indexes Options
|
AllowOverride Limit FileInfo Indexes Options
|
||||||
Order allow,deny
|
<IfModule mod_version.c>
|
||||||
Allow from all
|
<IfVersion < 2.4>
|
||||||
|
Order allow,deny
|
||||||
|
Allow from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.4>
|
||||||
|
Require all granted
|
||||||
|
</IfVersion>
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
# Don't allow people to retrieve non-cgi executable files or our private data
|
# Don't allow people to retrieve non-cgi executable files or our private data
|
||||||
<FilesMatch (\.pm|\.pl|\.tmpl|localconfig.*)$>
|
<FilesMatch (\.pm|\.pl|\.tmpl|localconfig.*)$>
|
||||||
deny from all
|
<IfModule mod_version.c>
|
||||||
|
<IfVersion < 2.4>
|
||||||
|
Deny from all
|
||||||
|
</IfVersion>
|
||||||
|
<IfVersion >= 2.4>
|
||||||
|
<IfModule mod_perl.c>
|
||||||
|
Deny from all
|
||||||
|
</IfModule>
|
||||||
|
<IfModule !mod_perl.c>
|
||||||
|
Require all denied
|
||||||
|
</IfModule>
|
||||||
|
</IfVersion>
|
||||||
|
</IfModule>
|
||||||
|
<IfModule !mod_version.c>
|
||||||
|
Deny from all
|
||||||
|
</IfModule>
|
||||||
</FilesMatch>
|
</FilesMatch>
|
||||||
|
|
||||||
Options -Indexes
|
Options -Indexes
|
||||||
|
@ -20,14 +20,14 @@
|
|||||||
%define has_systemd 1
|
%define has_systemd 1
|
||||||
%endif
|
%endif
|
||||||
Name: bugzilla
|
Name: bugzilla
|
||||||
Version: 4.4.8
|
Version: 5.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Bug tracker for software development
|
Summary: Bug tracker for software development
|
||||||
License: MPL-2.0
|
License: MPL-2.0
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
Url: http://bugzilla.org/
|
Url: http://bugzilla.org/
|
||||||
Source: http://ftp.mozilla.org/pub/mozilla.org/webtools/%{name}-%{version}.tar.gz
|
Source: http://ftp.mozilla.org/pub/mozilla.org/webtools/%{name}-%{version}.tar.gz
|
||||||
Source2: http://downloads.sourceforge.net/project/bugzilla-de/4.4/%{version}/%{name}-de-%{version}-1.utf-8.tar.gz
|
Source2: http://downloads.sourceforge.net/project/bugzilla-de/5.0/%{version}/%{name}-de-%{version}-1.utf-8.tar.gz
|
||||||
Source3: MPL-2.0.html
|
Source3: MPL-2.0.html
|
||||||
Source4: %{name}.conf
|
Source4: %{name}.conf
|
||||||
BuildRequires: apache
|
BuildRequires: apache
|
||||||
@ -38,19 +38,20 @@ Requires: apache2-mod_perl >= 1.999022
|
|||||||
Requires: patchutils
|
Requires: patchutils
|
||||||
Requires: perl(CGI) >= 5.8.1
|
Requires: perl(CGI) >= 5.8.1
|
||||||
Requires: perl-Authen-SASL
|
Requires: perl-Authen-SASL
|
||||||
Requires: perl-Chart >= 2.1.0
|
Requires: perl-Chart >= 2.4.1
|
||||||
Requires: perl-DBD-Pg >= 2.7.0
|
Requires: perl-DBD-Pg >= 2.7.0
|
||||||
Requires: perl-DBD-SQLite >= 1.29
|
Requires: perl-DBD-SQLite >= 1.29
|
||||||
Requires: perl-DBD-mysql >= 4.001
|
Requires: perl-DBD-mysql >= 4.001
|
||||||
Requires: perl-DBI >= 1.614
|
Requires: perl-DBI >= 1.614
|
||||||
#Recommends: RadiusPerl
|
#Recommends: RadiusPerl
|
||||||
Requires: perl-Daemon-Generic
|
Requires: perl-Daemon-Generic
|
||||||
Requires: perl-DateTime >= 0.28
|
Requires: perl-DateTime >= 0.75
|
||||||
Requires: perl-DateTime-TimeZone >= 0.71
|
Requires: perl-DateTime-TimeZone >= 1.64
|
||||||
Requires: perl-Digest-SHA1
|
Requires: perl-Digest-SHA1
|
||||||
Requires: perl-Email-MIME >= 1.904
|
Requires: perl-Email-MIME >= 1.904
|
||||||
Requires: perl-Email-Reply
|
Requires: perl-Email-Reply
|
||||||
Requires: perl-Email-Send >= 2.02
|
Requires: perl-Email-Send >= 2.02
|
||||||
|
Requires: perl-Email-Sender >= v1.300011
|
||||||
Requires: perl-Encode >= 2.21
|
Requires: perl-Encode >= 2.21
|
||||||
Requires: perl-Encode-Detect
|
Requires: perl-Encode-Detect
|
||||||
Requires: perl-File-MimeInfo
|
Requires: perl-File-MimeInfo
|
||||||
@ -63,7 +64,7 @@ Requires: perl-HTML-Parser >= 3.67
|
|||||||
Requires: perl-HTML-Scrubber
|
Requires: perl-HTML-Scrubber
|
||||||
Requires: perl-IO-stringy
|
Requires: perl-IO-stringy
|
||||||
Requires: perl-JSON-RPC
|
Requires: perl-JSON-RPC
|
||||||
Requires: perl-JSON-XS >= 2.0
|
Requires: perl-JSON-XS >= 2.01
|
||||||
Requires: perl-List-MoreUtils >= 0.32
|
Requires: perl-List-MoreUtils >= 0.32
|
||||||
Requires: perl-MIME-tools >= 5.406
|
Requires: perl-MIME-tools >= 5.406
|
||||||
Requires: perl-Math-Random-ISAAC >= 1.0.1
|
Requires: perl-Math-Random-ISAAC >= 1.0.1
|
||||||
@ -71,16 +72,20 @@ Requires: perl-Net-SMTP-SSL >= 1.01
|
|||||||
Requires: perl-PatchReader >= 0.9.6
|
Requires: perl-PatchReader >= 0.9.6
|
||||||
Requires: perl-SOAP-Lite >= 0.712
|
Requires: perl-SOAP-Lite >= 0.712
|
||||||
Requires: perl-Template-GD
|
Requires: perl-Template-GD
|
||||||
Requires: perl-Template-Toolkit >= 2.22
|
Requires: perl-Template-Toolkit >= 2.24
|
||||||
Requires: perl-Test-Taint
|
Requires: perl-Test-Taint >= 1.0.6
|
||||||
Requires: perl-TheSchwartz >= 1.07
|
Requires: perl-TheSchwartz >= 1.07
|
||||||
Requires: perl-TimeDate
|
Requires: perl-TimeDate >= 2.23
|
||||||
Requires: perl-URI >= 1.37
|
Requires: perl-URI >= 1.55
|
||||||
Requires: perl-XML-Twig
|
Requires: perl-XML-Twig
|
||||||
Requires: perl-XMLRPC-Lite >= 0.712
|
Requires: perl-XMLRPC-Lite >= 0.712
|
||||||
Requires: perl-base >= 5.8.1
|
Requires: perl-base >= 5.8.1
|
||||||
Requires: perl-ldap
|
Requires: perl-ldap
|
||||||
Requires: perl-libwww-perl
|
Requires: perl-libwww-perl
|
||||||
|
Requires: perl-Module-Pluggable
|
||||||
|
Requires: perl-Object-Pluggable
|
||||||
|
Requires: perl-Cache-Memcached
|
||||||
|
Requires: perl-File-Copy-Recursive
|
||||||
Recommends: perl-DBD-Oracle >= 1.19
|
Recommends: perl-DBD-Oracle >= 1.19
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user