Sat Jan 16 08:15:01 2021 UTC ()
bugzilla: update to 5.0.6, fix default configuration

- No skin was installed
- Some configuration seemed to be relevant for Apache 2.2

5.0.6:
This release contains a schema change to the flagtypes table, allowing for many more flagtypes.

The flagtypes table should have been using a mediumint for several releases, but due to a bug in the schema migration code this never happened.

5.0.5:
This release reformats the code according to the same conventions as the popular Mojolicious product and includes a .perltidyrc to do the same. You may use whatever coding style you want, but all files commited to the repo must be reformatted according to those rules.

Additionally, we no longer follow the same release process as before. Releases will be more frequent.

As it is now 2019, the bugs_fulltext table is now InnoDB instead of MyISAM. This may cause upgrade headaches.

5.0.4:
This release fixes one security issue. CVE-2018-5123

This release also contains the following [% terms.bug %] fixes:

    checksetup.pl would fail to update Chart storage during pre-3.6 to 5.0 upgrade. ([% terms.Bug %] 1273846)
    editflagtypes.cgi would crash when classifications are enabled and the user did not have global editcomponents privileges. ([% terms.Bug %] 1310728)
    The File::Slurp would trigger warnings on perl 5.24. ([% terms.Bug %] 1301887)
    All the time entries in the 'when' column had the correct date but the time was fixed to 00:00 when using Sqlite. ([% terms.Bug %] 1303702)


(maya)
diff -r1.5 -r1.6 pkgsrc/devel/bugzilla/MESSAGE
diff -r1.58 -r1.59 pkgsrc/devel/bugzilla/Makefile
diff -r1.18 -r1.19 pkgsrc/devel/bugzilla/PLIST
diff -r1.22 -r1.23 pkgsrc/devel/bugzilla/distinfo
diff -r1.3 -r1.4 pkgsrc/devel/bugzilla/files/bugzilla.conf
diff -r1.1 -r0 pkgsrc/devel/bugzilla/patches/patch-Bugzilla_Install_Filesystem_pm

cvs diff -r1.5 -r1.6 pkgsrc/devel/bugzilla/MESSAGE (expand / switch to unified diff)

--- pkgsrc/devel/bugzilla/MESSAGE 2017/03/17 16:26:30 1.5
+++ pkgsrc/devel/bugzilla/MESSAGE 2021/01/16 08:15:01 1.6
@@ -1,24 +1,27 @@ @@ -1,24 +1,27 @@
1=========================================================================== 1===========================================================================
2$NetBSD: MESSAGE,v 1.5 2017/03/17 16:26:30 mef Exp $ 2$NetBSD: MESSAGE,v 1.6 2021/01/16 08:15:01 maya Exp $
3 3
4To complete the setup you will need to read the Bugzilla-Guide.txt in order 4To complete the setup you will need to read the Bugzilla-Guide.txt in order
5to setup Database counter-part properly. In particular secion 2.2.2 of the 5to setup Database counter-part properly. In particular secion 2.2.2 of the
6document deals with database setup. After the initial setup of the database 6document deals with database setup. After the initial setup of the database
7you can then check the settings in ${BZDIR}/localconfig and with super user 7you can then check the settings in ${BZDIR}/localconfig and with super user
8privilege, 8privilege,
9 9
10 cd ${BZDIR}; 10 cd ${BZDIR};
11 ./checksetup.pl 11 ./checksetup.pl
12 12
13You will need to make Bugzilla accessible through your HTTP server. 13You will need to make Bugzilla accessible through your HTTP server.
14If you are running Apache then you may add the following lines to httpd.conf: 14If you are running Apache then you will need to add the following lines to
 15httpd.conf:
15 16
16 Include ${PKG_SYSCONFDIR}/bugzilla.conf 17 Include ${PKG_SYSCONFDIR}/bugzilla.conf
17 18
 19And possibly enable mod_cgid or another CGI provider.
 20
18to make Bugzilla accessible through: 21to make Bugzilla accessible through:
19 22
20 http://localhost/bugzilla/index.cgi 23 http://localhost/bugzilla/index.cgi
21 24
22IMPORTANTLY: CHANGE YOUR DATABASE PASSWORD FROM THE DEFAULT !! 25IMPORTANTLY: CHANGE YOUR DATABASE PASSWORD FROM THE DEFAULT !!
23 26
24=========================================================================== 27===========================================================================

cvs diff -r1.58 -r1.59 pkgsrc/devel/bugzilla/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/bugzilla/Makefile 2020/09/04 11:09:01 1.58
+++ pkgsrc/devel/bugzilla/Makefile 2021/01/16 08:15:01 1.59
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.58 2020/09/04 11:09:01 wiz Exp $ 1# $NetBSD: Makefile,v 1.59 2021/01/16 08:15:01 maya Exp $
2 2
3DISTNAME= bugzilla-5.0.3 3DISTNAME= bugzilla-5.0.6
4PKGREVISION= 7 
5CATEGORIES= www devel 4CATEGORIES= www devel
6MASTER_SITES= ${MASTER_SITE_MOZILLA_ALL:=webtools/} 5MASTER_SITES= ${MASTER_SITE_MOZILLA_ALL:=webtools/}
7 6
8MAINTAINER= pkgsrc-users@NetBSD.org 7MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://www.bugzilla.org/ 8HOMEPAGE= https://www.bugzilla.org/
10COMMENT= Web based bug tracking system 9COMMENT= Web based bug tracking system
11LICENSE= mpl-2.0 10LICENSE= mpl-2.0
12 11
13# mod_perl 12# mod_perl
14DEPENDS+= ap2[0-9]-perl-[0-9]*:../../www/ap2-perl 13DEPENDS+= ap2[0-9]-perl-[0-9]*:../../www/ap2-perl
15DEPENDS+= p5-CGI-[0-9]*:../../www/p5-CGI 14DEPENDS+= p5-CGI-[0-9]*:../../www/p5-CGI
16DEPENDS+= p5-TimeDate-[0-9]*:../../time/p5-TimeDate 15DEPENDS+= p5-TimeDate-[0-9]*:../../time/p5-TimeDate
17DEPENDS+= p5-DateTime-[0-9]*:../../time/p5-DateTime 16DEPENDS+= p5-DateTime-[0-9]*:../../time/p5-DateTime
@@ -98,54 +97,54 @@ SUBST_VARS.conf+= PREFIX @@ -98,54 +97,54 @@ SUBST_VARS.conf+= PREFIX
98SUBST_VARS.conf+= BZDIR 97SUBST_VARS.conf+= BZDIR
99SUBST_VARS.conf+= CVS 98SUBST_VARS.conf+= CVS
100SUBST_VARS.conf+= DBDRIVER 99SUBST_VARS.conf+= DBDRIVER
101SUBST_SED.conf+= -e "s|/usr/lib/sendmail|${SENDMAIL}|g" 100SUBST_SED.conf+= -e "s|/usr/lib/sendmail|${SENDMAIL}|g"
102 101
103SUBST_CLASSES+= diff 102SUBST_CLASSES+= diff
104SUBST_STAGE.diff= post-configure 103SUBST_STAGE.diff= post-configure
105SUBST_MESSAGE.diff= Fixing diff path used for Patch Viewer 104SUBST_MESSAGE.diff= Fixing diff path used for Patch Viewer
106SUBST_FILES.diff= localconfig 105SUBST_FILES.diff= localconfig
107SUBST_SED.diff= -e "s|\$$diffpath = .*|\$$diffpath = \'${DIFF:C,/[^/]+$,,}\';|" 106SUBST_SED.diff= -e "s|\$$diffpath = .*|\$$diffpath = \'${DIFF:C,/[^/]+$,,}\';|"
108SUBST_NOOP_OK.diff= yes 107SUBST_NOOP_OK.diff= yes
109 108
110INSTALLATION_DIRS+= ${DOCDIR} ${DOCDIR}/en ${EGDIR} ${BZDIR} ${BZDIR}/Bugzilla 109INSTALLATION_DIRS+= ${DOCDIR} ${DOCDIR}/en ${EGDIR} ${BZDIR} ${BZDIR}/Bugzilla
111INSTALLATION_DIRS+= ${BZDIR}/js ${BZDIR}/lib ${BZDIR}/template ${BZDIR}/skins 110INSTALLATION_DIRS+= ${BZDIR}/js ${BZDIR}/lib ${BZDIR}/template ${BZDIR}/skins/standard
112INSTALLATION_DIRS+= ${BZDIR}/docs ${BZDIR}/docs/en ${BZDIR}/docs/en/html 111INSTALLATION_DIRS+= ${BZDIR}/docs ${BZDIR}/docs/en ${BZDIR}/docs/en/html
113INSTALLATION_DIRS+= ${BZDIR}/images ${BZDIR}/docs/en/html/api 112INSTALLATION_DIRS+= ${BZDIR}/images ${BZDIR}/docs/en/html/api
114INSTALLATION_DIRS+= ${BZDIR}/docs/en/html/api/Bugzilla 113INSTALLATION_DIRS+= ${BZDIR}/docs/en/html/api/Bugzilla
115.for i in data contrib t xt template lib graphs skins 114.for i in data contrib t xt template lib graphs
116INSTALLATION_DIRS+= ${BZDIR}/${i} 115INSTALLATION_DIRS+= ${BZDIR}/${i}
117.endfor 116.endfor
118 117
119FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \ 118FILES_SUBST+= WWWGRP=${APACHE_GROUP} WWWOWN=${APACHE_USER} \
120 BZDIR=${BZDIR} 119 BZDIR=${BZDIR}
121 120
122do-configure: 121do-configure:
123 cd ${WRKSRC} && ./checksetup.pl 122 cd ${WRKSRC} && ./checksetup.pl
124 123
125post-extract: 124post-extract:
126 ${CP} ${FILESDIR}/bugzilla.conf ${WRKSRC} 125 ${CP} ${FILESDIR}/bugzilla.conf ${WRKSRC}
127 ${CP} ${FILESDIR}/localconfig ${WRKSRC} 126 ${CP} ${FILESDIR}/localconfig ${WRKSRC}
128 127
129do-install: 128do-install:
130 129
131.for i in ${BZDIR} ${EGDIR} ${DOCDIR} ${BZDIR}/lib 130.for i in ${BZDIR} ${EGDIR} ${DOCDIR} ${BZDIR}/lib
132 ${INSTALL_DATA_DIR} ${DESTDIR}${i} 131 ${INSTALL_DATA_DIR} ${DESTDIR}${i}
133.endfor 132.endfor
134 (cd ${WRKSRC} ;\ 133 (cd ${WRKSRC} ;\
135 pax -rw -pmp docs ${DESTDIR}${BZDIR} ;\ 134 pax -rw -pmp docs ${DESTDIR}${BZDIR} ;\
136 ${INSTALL_SCRIPT} *.cgi *.pl ${DESTDIR}${BZDIR} ;\ 135 ${INSTALL_SCRIPT} *.cgi *.pl ${DESTDIR}${BZDIR} ;\
137 ${INSTALL_SCRIPT} robots.txt ${DESTDIR}${BZDIR} ;\ 136 ${INSTALL_SCRIPT} robots.txt ${DESTDIR}${BZDIR} ;\
138 ${INSTALL_DATA} Bugzilla.pm ${DESTDIR}${BZDIR} ;\ 137 ${INSTALL_DATA} Bugzilla.pm ${DESTDIR}${BZDIR} ;\
139 ${INSTALL_DATA} README ${DESTDIR}${DOCDIR} ;\ 138 ${INSTALL_DATA} README ${DESTDIR}${DOCDIR} ;\
140 ${INSTALL_DATA} localconfig ${DESTDIR}${EGDIR} ;\ 139 ${INSTALL_DATA} localconfig ${DESTDIR}${EGDIR} ;\
141 ${INSTALL_DATA} bugzilla.conf ${DESTDIR}${EGDIR} ;\ 140 ${INSTALL_DATA} bugzilla.conf ${DESTDIR}${EGDIR} ;\
142 ${INSTALL_DATA} images/*.png ${DESTDIR}${BZDIR}/images ;\ 141 ${INSTALL_DATA} images/*.png ${DESTDIR}${BZDIR}/images ;\
143 ${INSTALL_DATA} images/favicon.ico ${DESTDIR}${BZDIR} ;\ 142 ${INSTALL_DATA} images/favicon.ico ${DESTDIR}${BZDIR} ;\
 143 pax -rw -pmp skins ${DESTDIR}${BZDIR} ;\
144 pax -rw -pmp Bugzilla ${DESTDIR}${BZDIR} ;\ 144 pax -rw -pmp Bugzilla ${DESTDIR}${BZDIR} ;\
145 pax -rw -pmp js ${DESTDIR}${BZDIR} ;\ 145 pax -rw -pmp js ${DESTDIR}${BZDIR} ;\
146 pax -rw -pmp template ${DESTDIR}${BZDIR} ;\ 146 pax -rw -pmp template ${DESTDIR}${BZDIR} ;\
147 ) 147 )
148 ${RM} ${DESTDIR}${BZDIR}/Bugzilla/Install/Filesystem.pm.orig 
149 148
150.include "../../mk/apache.mk" 149.include "../../mk/apache.mk"
151.include "../../mk/bsd.pkg.mk" 150.include "../../mk/bsd.pkg.mk"

cvs diff -r1.18 -r1.19 pkgsrc/devel/bugzilla/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/bugzilla/PLIST 2017/03/17 16:26:30 1.18
+++ pkgsrc/devel/bugzilla/PLIST 2021/01/16 08:15:01 1.19
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.18 2017/03/17 16:26:30 mef Exp $ 1@comment $NetBSD: PLIST,v 1.19 2021/01/16 08:15:01 maya Exp $
2share/bugzilla/Bugzilla.pm 2share/bugzilla/Bugzilla.pm
3share/bugzilla/Bugzilla/Attachment.pm 3share/bugzilla/Bugzilla/Attachment.pm
4share/bugzilla/Bugzilla/Attachment/PatchReader.pm 4share/bugzilla/Bugzilla/Attachment/PatchReader.pm
5share/bugzilla/Bugzilla/Auth.pm 5share/bugzilla/Bugzilla/Auth.pm
6share/bugzilla/Bugzilla/Auth/Login.pm 6share/bugzilla/Bugzilla/Auth/Login.pm
7share/bugzilla/Bugzilla/Auth/Login/APIKey.pm 7share/bugzilla/Bugzilla/Auth/Login/APIKey.pm
8share/bugzilla/Bugzilla/Auth/Login/CGI.pm 8share/bugzilla/Bugzilla/Auth/Login/CGI.pm
9share/bugzilla/Bugzilla/Auth/Login/Cookie.pm 9share/bugzilla/Bugzilla/Auth/Login/Cookie.pm
10share/bugzilla/Bugzilla/Auth/Login/Env.pm 10share/bugzilla/Bugzilla/Auth/Login/Env.pm
11share/bugzilla/Bugzilla/Auth/Login/Stack.pm 11share/bugzilla/Bugzilla/Auth/Login/Stack.pm
12share/bugzilla/Bugzilla/Auth/Persist/Cookie.pm 12share/bugzilla/Bugzilla/Auth/Persist/Cookie.pm
13share/bugzilla/Bugzilla/Auth/Verify.pm 13share/bugzilla/Bugzilla/Auth/Verify.pm
14share/bugzilla/Bugzilla/Auth/Verify/DB.pm 14share/bugzilla/Bugzilla/Auth/Verify/DB.pm
@@ -439,26 +439,44 @@ share/bugzilla/relogin.cgi @@ -439,26 +439,44 @@ share/bugzilla/relogin.cgi
439share/bugzilla/report.cgi 439share/bugzilla/report.cgi
440share/bugzilla/reports.cgi 440share/bugzilla/reports.cgi
441share/bugzilla/request.cgi 441share/bugzilla/request.cgi
442share/bugzilla/rest.cgi 442share/bugzilla/rest.cgi
443share/bugzilla/robots.txt 443share/bugzilla/robots.txt
444share/bugzilla/runtests.pl 444share/bugzilla/runtests.pl
445share/bugzilla/sanitycheck.cgi 445share/bugzilla/sanitycheck.cgi
446share/bugzilla/sanitycheck.pl 446share/bugzilla/sanitycheck.pl
447share/bugzilla/search_plugin.cgi 447share/bugzilla/search_plugin.cgi
448share/bugzilla/show_activity.cgi 448share/bugzilla/show_activity.cgi
449share/bugzilla/show_bug.cgi 449share/bugzilla/show_bug.cgi
450share/bugzilla/showdependencygraph.cgi 450share/bugzilla/showdependencygraph.cgi
451share/bugzilla/showdependencytree.cgi 451share/bugzilla/showdependencytree.cgi
 452share/bugzilla/skins/README
 453share/bugzilla/skins/contrib/Dusk/buglist.css
 454share/bugzilla/skins/contrib/Dusk/global.css
 455share/bugzilla/skins/standard/admin.css
 456share/bugzilla/skins/standard/bug.css
 457share/bugzilla/skins/standard/buglist.css
 458share/bugzilla/skins/standard/dependency-tree/bug-item.png
 459share/bugzilla/skins/standard/dependency-tree/tree-closed.png
 460share/bugzilla/skins/standard/dependency-tree/tree-open.png
 461share/bugzilla/skins/standard/dependency-tree/tree.png
 462share/bugzilla/skins/standard/global.css
 463share/bugzilla/skins/standard/global/body-back.gif
 464share/bugzilla/skins/standard/global/calendar.png
 465share/bugzilla/skins/standard/global/header.png
 466share/bugzilla/skins/standard/index/file-a-bug.png
 467share/bugzilla/skins/standard/index/help.png
 468share/bugzilla/skins/standard/index/new-account.png
 469share/bugzilla/skins/standard/index/search.png
452share/bugzilla/summarize_time.cgi 470share/bugzilla/summarize_time.cgi
453share/bugzilla/template/en/default/account/auth/login-small.html.tmpl 471share/bugzilla/template/en/default/account/auth/login-small.html.tmpl
454share/bugzilla/template/en/default/account/auth/login.html.tmpl 472share/bugzilla/template/en/default/account/auth/login.html.tmpl
455share/bugzilla/template/en/default/account/cancel-token.txt.tmpl 473share/bugzilla/template/en/default/account/cancel-token.txt.tmpl
456share/bugzilla/template/en/default/account/create.html.tmpl 474share/bugzilla/template/en/default/account/create.html.tmpl
457share/bugzilla/template/en/default/account/created.html.tmpl 475share/bugzilla/template/en/default/account/created.html.tmpl
458share/bugzilla/template/en/default/account/email/change-new.txt.tmpl 476share/bugzilla/template/en/default/account/email/change-new.txt.tmpl
459share/bugzilla/template/en/default/account/email/change-old.txt.tmpl 477share/bugzilla/template/en/default/account/email/change-old.txt.tmpl
460share/bugzilla/template/en/default/account/email/confirm-new.html.tmpl 478share/bugzilla/template/en/default/account/email/confirm-new.html.tmpl
461share/bugzilla/template/en/default/account/email/confirm.html.tmpl 479share/bugzilla/template/en/default/account/email/confirm.html.tmpl
462share/bugzilla/template/en/default/account/email/request-new.txt.tmpl 480share/bugzilla/template/en/default/account/email/request-new.txt.tmpl
463share/bugzilla/template/en/default/account/password/forgotten-password.txt.tmpl 481share/bugzilla/template/en/default/account/password/forgotten-password.txt.tmpl
464share/bugzilla/template/en/default/account/password/set-forgotten-password.html.tmpl 482share/bugzilla/template/en/default/account/password/set-forgotten-password.html.tmpl
@@ -738,13 +756,21 @@ share/bugzilla/template/en/default/whine @@ -738,13 +756,21 @@ share/bugzilla/template/en/default/whine
738share/bugzilla/template/en/default/whine/mail.txt.tmpl 756share/bugzilla/template/en/default/whine/mail.txt.tmpl
739share/bugzilla/template/en/default/whine/schedule.html.tmpl 757share/bugzilla/template/en/default/whine/schedule.html.tmpl
740share/bugzilla/testagent.cgi 758share/bugzilla/testagent.cgi
741share/bugzilla/testserver.pl 759share/bugzilla/testserver.pl
742share/bugzilla/token.cgi 760share/bugzilla/token.cgi
743share/bugzilla/userprefs.cgi 761share/bugzilla/userprefs.cgi
744share/bugzilla/votes.cgi 762share/bugzilla/votes.cgi
745share/bugzilla/whine.pl 763share/bugzilla/whine.pl
746share/bugzilla/whineatnews.pl 764share/bugzilla/whineatnews.pl
747share/bugzilla/xmlrpc.cgi 765share/bugzilla/xmlrpc.cgi
748share/doc/bugzilla/README 766share/doc/bugzilla/README
749share/examples/bugzilla/bugzilla.conf 767share/examples/bugzilla/bugzilla.conf
750share/examples/bugzilla/localconfig 768share/examples/bugzilla/localconfig
 769@pkgdir share/doc/bugzilla/en
 770@pkgdir share/bugzilla/xt
 771@pkgdir share/bugzilla/t
 772@pkgdir share/bugzilla/lib
 773@pkgdir share/bugzilla/graphs
 774@pkgdir share/bugzilla/docs/en/html/api/Bugzilla
 775@pkgdir share/bugzilla/data
 776@pkgdir share/bugzilla/contrib

cvs diff -r1.22 -r1.23 pkgsrc/devel/bugzilla/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/bugzilla/distinfo 2019/11/11 21:53:06 1.22
+++ pkgsrc/devel/bugzilla/distinfo 2021/01/16 08:15:01 1.23
@@ -1,7 +1,6 @@ @@ -1,7 +1,6 @@
1$NetBSD: distinfo,v 1.22 2019/11/11 21:53:06 maya Exp $ 1$NetBSD: distinfo,v 1.23 2021/01/16 08:15:01 maya Exp $
2 2
3SHA1 (bugzilla-5.0.3.tar.gz) = 49b4b2b1b3086cb9b75f65138e702da71dc29c93 3SHA1 (bugzilla-5.0.6.tar.gz) = bef85c8e7e031ca21d7c59f3c2dc083f52b3d7b1
4RMD160 (bugzilla-5.0.3.tar.gz) = f48c7e903a9984d9bf95b969dba3b8d0b4ba4cb2 4RMD160 (bugzilla-5.0.6.tar.gz) = 053ef0b751b5a4719aebaceddf64676a125b4115
5SHA512 (bugzilla-5.0.3.tar.gz) = 82334533bd75a4a5eee5213826da916175ecf39cbfd1c4d820519f015257b02998a3acd881f8f52c1650d1140158c8aa839e374574a1fa862a6a4a1351748c46 5SHA512 (bugzilla-5.0.6.tar.gz) = 8ca47ea1be2b433a6ce68e1a595d72f3d0f0fede44d1194dc6bc9a116dbde3ab7285212c71995e200d31544876e4c3c57b63da1f877a0cb22747ab87a5d598de
6Size (bugzilla-5.0.3.tar.gz) = 4069689 bytes 6Size (bugzilla-5.0.6.tar.gz) = 3970724 bytes
7SHA1 (patch-Bugzilla_Install_Filesystem_pm) = 9ec49194210270be0a4af872765d29ec0544b189 

cvs diff -r1.3 -r1.4 pkgsrc/devel/bugzilla/files/bugzilla.conf (expand / switch to unified diff)

--- pkgsrc/devel/bugzilla/files/bugzilla.conf 2017/03/17 16:26:31 1.3
+++ pkgsrc/devel/bugzilla/files/bugzilla.conf 2021/01/16 08:15:01 1.4
@@ -1,16 +1,17 @@ @@ -1,16 +1,17 @@
1# $NetBSD: bugzilla.conf,v 1.3 2017/03/17 16:26:31 mef Exp $ 1# $NetBSD: bugzilla.conf,v 1.4 2021/01/16 08:15:01 maya Exp $
2# 2#
3# Bugzilla configuration file fragment for Apache 3# Bugzilla configuration file fragment for Apache
4 4
5<IfModule mod_alias.c> 5<IfModule mod_alias.c>
6 Alias /bugzilla/ "@BZDIR@/" 6 Alias /bugzilla/ "@BZDIR@/"
7</IfModule> 7</IfModule>
8 8
9<Directory "@BZDIR@"> 9<Directory "@BZDIR@">
10 AddHandler cgi-script .cgi 10 AddHandler cgi-script .cgi
11 Options +ExecCGI 11 Options +ExecCGI
12 AllowOverride Limit 12 AllowOverride Limit AuthConfig
13 DirectoryIndex index.cgi index.html 13 DirectoryIndex index.cgi index.html
14 Order allow,deny 14 Order allow,deny
 15 Require all granted
15 Allow from all 16 Allow from all
16</Directory> 17</Directory>

File Deleted: pkgsrc/devel/bugzilla/patches/Attic/patch-Bugzilla_Install_Filesystem_pm