Compare commits
5 commits
rawhide
...
EL-6-split
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
707763cacb | ||
|
|
0f3b436671 | ||
|
|
387e44533d | ||
|
|
d8c5e874f5 | ||
|
|
3833cd12a5 |
7 changed files with 30 additions and 40 deletions
|
|
@ -1 +1 @@
|
|||
bugzilla-3.4.2.tar.gz
|
||||
bugzilla-3.4.5.tar.gz
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -4,7 +4,7 @@ NAME := bugzilla
|
|||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
|
|
|||
1
branch
Normal file
1
branch
Normal file
|
|
@ -0,0 +1 @@
|
|||
F-12
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
diff -ruNp a/bugzilla-3.4.1/Bugzilla/Constants.pm b/bugzilla-3.4.1/Bugzilla/Constants.pm
|
||||
--- a/bugzilla-3.4.1/Bugzilla/Constants.pm 2009-08-01 11:28:41.000000000 -0300
|
||||
+++ b/bugzilla-3.4.1/Bugzilla/Constants.pm 2009-08-04 01:26:18.761892048 -0300
|
||||
@@ -400,7 +400,7 @@ use constant DB_MODULE => {
|
||||
# Disallow development versions
|
||||
blacklist => ['_'],
|
||||
# For UTF-8 support
|
||||
- version => '4.00',
|
||||
+ version => '3.00',
|
||||
},
|
||||
name => 'MySQL'},
|
||||
'pg' => {db => 'Bugzilla::DB::Pg', db_version => '8.00.0000',
|
||||
diff -ruNp a/bugzilla-3.4.1/Bugzilla/Install/Requirements.pm b/bugzilla-3.4.1/Bugzilla/Install/Requirements.pm
|
||||
--- a/bugzilla-3.4.1/Bugzilla/Install/Requirements.pm 2009-07-24 15:58:46.000000000 -0300
|
||||
+++ b/bugzilla-3.4.1/Bugzilla/Install/Requirements.pm 2009-08-04 01:27:02.852909164 -0300
|
||||
@@ -118,7 +118,7 @@ sub REQUIRED_MODULES {
|
||||
{
|
||||
package => 'Email-MIME',
|
||||
module => 'Email::MIME',
|
||||
- version => '1.861'
|
||||
+ version => '1.859'
|
||||
},
|
||||
{
|
||||
package => 'Email-MIME-Encodings',
|
||||
@@ -129,7 +129,7 @@ sub REQUIRED_MODULES {
|
||||
{
|
||||
package => 'Email-MIME-Modifier',
|
||||
module => 'Email::MIME::Modifier',
|
||||
- version => '1.442'
|
||||
+ version => '1.441'
|
||||
},
|
||||
{
|
||||
package => 'URI',
|
||||
|
|
@ -1,3 +1,4 @@
|
|||
Alias /bugzilla/var/lib/bugzilla/data/webdot /var/lib/bugzilla/data/webdot
|
||||
Alias /bugzilla /usr/share/bugzilla
|
||||
|
||||
<Directory /usr/share/bugzilla>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
Summary: Bug tracking system
|
||||
URL: http://www.bugzilla.org/
|
||||
Name: bugzilla
|
||||
Version: 3.4.2
|
||||
Version: 3.4.5
|
||||
Group: Applications/Publishing
|
||||
Release: 1%{?dist}
|
||||
License: MPLv1.1
|
||||
|
|
@ -12,11 +12,20 @@ Source0: http://ftp.mozilla.org/pub/mozilla.org/webtools/bugzilla-%{version}.tar
|
|||
Source1: bugzilla-httpd-conf
|
||||
Source2: README.fedora.bugzilla
|
||||
Patch0: bugzilla-rw-paths.patch
|
||||
Patch1: bugzilla-EL5-perl-versions.patch
|
||||
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
Requires: webserver, patchutils, mod_perl, perl(SOAP::Lite), which
|
||||
Requires: webserver, patchutils, mod_perl, perl(SOAP::Lite), perl(Digest::SHA), which
|
||||
Requires: perl(CGI) >= 3.33
|
||||
Requires: perl(Date::Format) >= 2.21
|
||||
Requires: perl(DateTime) >= 0.28
|
||||
Requires: perl(DateTime::TimeZone) >= 0.71
|
||||
Requires: perl(DBI) >= 1.41
|
||||
Requires: perl(Template) >= 2.22
|
||||
Requires: perl(Email::Send) >= 2.00
|
||||
Requires: perl(Email::MIME) >= 1.861
|
||||
Requires: perl(Email::MIME::Encodings) >= 1.313
|
||||
Requires: perl(Email::MIME::Modifier) >= 1.442
|
||||
|
||||
%package doc
|
||||
Summary: Bugzilla documentation
|
||||
|
|
@ -49,7 +58,6 @@ Contributed scripts and functions for Bugzilla
|
|||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
%patch0 -p1
|
||||
%patch1 -p2
|
||||
|
||||
# Filter unwanted Requires found by /usr/lib/rpm/perldeps.pl:
|
||||
# create a wrapper script which runs the original perl_requires
|
||||
|
|
@ -155,6 +163,19 @@ popd > /dev/null)
|
|||
%{bzinstallprefix}/bugzilla/contrib
|
||||
|
||||
%changelog
|
||||
* Mon Feb 01 2010 Emmanuel Seyman <emmanuel.seyman@club-internet.fr> - 3.4.5-1
|
||||
- Update to 3.4.5 (CVE-2009-3989, CVE-2009-3387)
|
||||
- Remove bugzilla-EL5-perl-versions.patch which is EPEL-specific
|
||||
|
||||
* Thu Nov 19 2009 Emmanuel Seyman <emmanuel.seyman@club-internet.fr> - 3.4.4-1
|
||||
- Update to 3.4.4 (CVE-2009-3386)
|
||||
|
||||
* Wed Nov 11 2009 Emmanuel Seyman <emmanuel.seyman@club-internet.fr> - 3.4.3-1
|
||||
- Update to 3.4.3 (fixes memory leak issues)
|
||||
- Add perl(Digest::SHA) in the Requires
|
||||
- Specify Perl module versions in the Requires (fixes #524309)
|
||||
- Add an alias to make $webdotdir a working path (fixes #458848)
|
||||
|
||||
* Fri Sep 11 2009 Emmanuel Seyman <emmanuel.seyman@club-internet.fr> - 3.4.2-1
|
||||
- Update to 3.4.2 (CVE-2009-3125, CVE-2009-3165 and CVE-2009-3166)
|
||||
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
db35a67b7470f46f208b9ecb1abc561b bugzilla-3.4.2.tar.gz
|
||||
42c7f6bf31be3198cbf1f55fffaff441 bugzilla-3.4.5.tar.gz
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue