pkgsrc/www
salo be78ceb6b2 Update to version 4.09
Includes security fixes for:

 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2006-1279
 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2006-1280


Changes:

4.09:
=====
- SECURITY: Applying security patch from:
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=356555 (Julien
Danjou)

4.08:
=====
- FIX: DESTROY was sometimes wiping out exception handling. RT#18183,
  Matt LeBlanc.
- SECURITY: Resolve some issues in:
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=356555
      - db_file and file now check for symlinks either explicitly or by
        using O_EXCL on sysopen
      - file creation umask defaults to 660
- NEW: db_file and file drivers now accepts a UMask option. (Matt
  LeBlanc)
- INTERNAL: test suite clean up (Tyler MacDonald)

4.07:
=====
- INTERNAL: MANIFEST update to fix release.

4.06:
=====
- INTERNAL: MANIFEST update to fix release.

4.06:
=====
- FIX: some stray warnings when flushing:  "Use of uninitialized value
  in numeric eq (==)" (RT#14603)
- NEW: JSON and YAML serializers (Tyler MacDonald)
- INTERNAL: CGI::Session::Test::Default accepts a "skip" argument,
  listing tests that should be skipped. (Tyler)

4.05:
=====
- FIX: Race condition fixed when writing to session files (RT#17949)

4.04:
=====
- NEW: File driver now has option to disable flock (for those running
  Win 9x, VMS, MacPerl, VOS and RISC OS). (Matt LeBlanc)
- FIX: If DBI driver wass initialized using 'Handle',
  Driver::DBI::init() returned false, and Driver::new() thought init
  faild and kept returning undef. The problem was fixed by making sure
  Driver::DBI::init() returned true. (Sherzod)
- Added .*cgisess.* to disclude cgisess.db, cgisess.id, and any session
  files created in the t directory. (Matt LeBlanc)
- FIX: File driver now respects $CGI::Session::File::FileName for 3.9x
  compatibility. (Matt LeBlanc)
- FIX: Default serializer now properly handles data structures that
  appear more than once in the serialized data structure (before it'd
  result in data structures that were equivalent but did not have the same
  address). (Matt LeBlanc)
- FIX: File driver now localizes the filehandle to avoid any possibility
  of extended locking in persistent environments (Matt LeBlanc)
- FIX: File driver now locks the file when retrieving the session data
  (Matt LeBlanc)
- NEW: DBI Drivers now support a lazy loaded database handle. This is
  useful with the CGI::Application plugin system. If the session is
  never used, the database handle may not not need to be created. The
  syntax is to use a code ref: Handle => sub {DBI->connect} (Mark
  Stosberg)


 Finally, be aware that since 4.0 some people have reported problems
 with the auto-flushing code. There may be an unresolved. You always
 call flush() to be safe. Input or code contributions for the issue
 are appreciated. Some related tickets include:

    http://rt.cpan.org/Public/Bug/Display.html?id=14604
    http://rt.cpan.org/Public/Bug/Display.html?id=16861
    http://rt.cpan.org/Public/Bug/Display.html?id=17541
    http://rt.cpan.org/Public/Bug/Display.html?id=17299

4.03:
=====
- FIX: automatic flushing did not work if session object was global
- FIX: Default serializer can now serialize objects (Matt LeBlanc)
- INTERNAL: SQLite driver no longer needs MIME::Base64 for encoding
  (Matt LeBlanc)

4.02:
=====
- FIX: remote_addr() was missing (RT #14414])

4.01:
=====
- FIX: Minor POD fix

4.00:
=====
 *** NOTE ***

 The 4.0 release represents a major overhaul of the CGI::Session code
 base.  Care has been taken to be 100% compatible with applications
 developed with 3.x.  However, you are encouraged to run regression
 tests with your own applications before using this in production.

- NEW: PostgreSQL driver enhanced to work better with binary serializers
  (Matt LeBlanc)
- FIX: update to un tainting in default serializer to make "-T" happy
  (Matt LeBlanc)
- FIX: CGI::Session (qw/-ip_match/), a 3.x feature, works again (Shawn
  Sorichetti)
- INTERNAL: Improved documentation shown during "make", which explains
  how to run database-driven tests. (Mark Stosberg)
- FIX: to support binary serializers SQLite driver uses MIME::Base64
  (Sherzod Ruzmetov)

4.00_09:
========
- CHANGE: Starting with 4.0, it will no longer work to use the syntax of
  CGI::Session::DriverName(). This hasn't been a documented API since
  CGI::Session 2.94, released in August, 2002.
- FIX: documented etime(), which was present in 3.x (Mark Stosberg)
- FIX: Added code, test and docs to make $CGI::Session::File::FileName
  work, for 3.x compatibility. (Mark Stosberg)
- FIX: Providing an expire time like "-10" now works (Mark Stosberg)
- FIX: Restored close() method, for 3.x compatibility. (Mark Stosberg)
- FIX: Make ->clear('email') work, for 3.95 compatibility (Mark
  Stosberg)
- FIX: Added back is_new() for compatibility with 3.95. (Mark Stosberg)
- FIX: Support for CGI::Simple is confirmed, resolving RT#6141 (Mark
  Stosberg)
- FIX: Add code and tests for $CGI::Session::MySQL::TABLE_NAME, which
  worked in 3.x (Mark Stosberg)
- DOCS: CGI::Session now has a public Subversion repository, thanks to
  Jason Crome.  See the bottom of the CGI::Session docs for details.

4.00_08:
========
- FIX: Changes made in 4.00_07 rolled back

4.00_07:
========
- FIX: overloaded objects are now stored properly

4.00_06:
========
- FIX (?): a test script was failing on Win32
- FIX: inaccurate error reporting in load()

4.00_05:
========
- FIX: case insensitivity was not enforced properly in
  CGI::Session::parse_dsn()

4.00_04:
========
- FIX: Minor fix in tests suits and error-checking routines
  of serializers and id-generators

4.00_03:
========
- NEW: CGI::Session::find() introduced
- NEW: traverse() introduced into drivers to support
  CGI::Session::find()
- DOCS: More complete driver specs documented

4.00_02:
========
- FIX: race conditions in Driver/file.pm pointed out by Martin Bartosch

4.00_01:
========
- NEW: load() - constructor method to prevent unnecessary session
  creations
- NEW: is_expired() - method to intercept expired sessions
- NEW: is_empty() - to intercept requests for un existing sessions
- NEW: more optimized source code
- NEW: updated and improved driver specs
- NEW: standard testing framework
- NEW: 'sqlite' driver
2006-03-30 12:55:38 +00:00
..
adzap Update to version 20060203. 2006-02-13 23:44:21 +00:00
album Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
album_themes Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
amaya Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
analog Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
ap-access-referer Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-auth-cookie Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-auth-ldap Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-auth-mysql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-auth-pam Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-auth-pgsql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-postgresql Fix build with newer PostgreSQL versions, remove requirement for 7.3. 2006-03-20 19:59:21 +00:00
ap-auth-radius Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-auth-script Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-bandwidth Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-dav Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-dtcl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-Embperl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-fastcgi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-gzip Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-iasp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-jk Patch the apache-1.3 Makefile to use apxs so it installed mod_jk.so 2006-03-02 16:55:21 +00:00
ap-layout Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-mp3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-perl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-php Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-python Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-rivet Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-rpaf Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
ap-ruby Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-ssl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap-throttle Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap-xslt Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-auth-ldap Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-auth-mysql Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-auth-pgsql Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap2-bw Use "tv@NetBSD.org" as my MAINTAINER address; makes identifying me as a 2006-03-22 22:50:31 +00:00
ap2-chroot Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-fastcgi Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-perl Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap2-python Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap2-ruby Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ap2-subversion Move subversion/buildlink3.mk to subversion-base/buildlink3.mk, to 2006-02-07 19:58:06 +00:00
ap2-suphp Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ap2-transform Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
apache Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
apache-tomcat55 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apache2 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
apachetop Update HOMEPAGE and MASTER_SITES. 2005-10-06 11:33:52 +00:00
apc-gui Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
asp2php
asWedit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
awstats Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
bannerfilter Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bins Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bkedit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
bluefish Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
blur6ex Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
bozohttpd Fix previous by implementing the other half of the changes that I forgot 2005-12-13 18:55:03 +00:00
browser-bookmarks-menu Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
cadaver Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
calamaris
cgic Reset the maintainer's email address, at his own request. 2006-02-08 14:16:01 +00:00
cgicc Consistently use NetBSD.org address for shell, shellhung.org does not exist. 2006-03-16 22:48:42 +00:00
cgilib
checkbot Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
chimera Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
clearsilver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
clearsilver-base Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
cocoon Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
communicator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
crawl Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
cronolog Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
curl update to curl 7.15.3 2006-03-21 21:49:47 +00:00
cvsweb Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
dillo Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
drivel Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
drraw Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
drupal USE_PKGINSTALL isn't needed here to make these packagse use the 2006-03-14 20:43:23 +00:00
elinks Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
elinks04 Rename strtonum function, it conflicts with a system prototype on 2006-01-08 19:21:18 +00:00
emacs-w3m Fix PLIST. Remove BROKEN_IN. Bump PKGREVISION. 2006-02-22 20:35:59 +00:00
epiphany Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
epiphany-extensions Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
fcgi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ffproxy Add new pkg noted in PR pkg/28824 www/ffproxy. Minor changes by myself 2006-01-05 19:12:35 +00:00
firefox Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
firefox-bin Accept suse100* packages too. Bump PKGREVISION. 2006-03-10 22:44:52 +00:00
firefox-bin-acroread Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-acroread3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-acroread5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-acroread7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-flash Update the linux flash plugin to version 7.0r63 to fix unspecified 2006-03-29 02:16:43 +00:00
firefox-bin-java Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-nightly Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-bin-realplayer Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
firefox-gtk1 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
galeon Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
galeon12 Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
galway Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ganglia-webfrontend Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
glibwww Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
grail Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gtkasp2php Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
gtkhtml Has BROKEN_GETTEXT_DETECTION. 2006-02-23 18:21:15 +00:00
gtkhtml30 Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
gtkhtml36 Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
gtkhtml38 Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
haskell-cgi Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
hiawatha Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
horde Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
horde3 Update to 3.1.1 2006-03-28 20:09:48 +00:00
htdig Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
htdig-devel Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
htmldoc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
htmldoc-x11 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
htmlfix
htmllint Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
http_load Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
iasp Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ijb Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
instiki Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk 2005-12-29 06:21:30 +00:00
ja-trac The plist module automatically handles converting "man" entries into 2006-03-16 23:12:48 +00:00
jakarta-servletapi Fix build. Remove BROKEN_IN. 2006-03-02 19:51:14 +00:00
jakarta-tomcat4 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jakarta-tomcat5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jalbum Updated www/jalbum to 6.3.2 2006-03-17 06:26:21 +00:00
jsdk20 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
jssi Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
kannel Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
kazehakase Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
kdewebdev3 Update to KDE 3.5.2 2006-03-30 02:42:52 +00:00
lhs
libghttp
libgtkhtml Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
libwww Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
liferea Bump PKGREVISION for all packages that had broken INSTALL/DEINSTALL 2006-03-21 06:00:43 +00:00
lighttpd Add mod_evasive to PLIST. Bump revision. 2006-02-15 21:15:45 +00:00
links Update to 2.1pre20: 2005-12-11 18:56:30 +00:00
links-gui Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
lynx apply 2 more official patches: 2006-02-13 12:37:47 +00:00
make_album Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
micro_httpd Use PKGMANDIR. 2005-12-27 17:56:09 +00:00
mini_httpd Use PKGMANDIR. 2005-12-27 17:56:09 +00:00
mknmz-wwwoffle Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mMosaic Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
moz-bin-plugger Fix installation. Fix PLIST. Remove BROKEN_IN. 2006-03-01 22:44:04 +00:00
mozilla Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
mozilla-bin Accept suse100* packages too. Bump PKGREVISION. 2006-03-10 22:44:52 +00:00
mozilla-bin-nightly Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
mozilla-gtk2 s/_MOZILLA_USE_GTK2/MOZILLA_USE_GTK2/g, as to silent pkglint (WARN: Variable 2006-02-06 09:20:45 +00:00
navigator Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
neon Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
netscape7-acroread7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-plugger-common Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-plugger-communicator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-plugger-navigator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ns-remote Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera Grammar fix. 2006-02-21 15:50:49 +00:00
opera-acroread Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-acroread3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-acroread5 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-acroread7 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
opera-plugins Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-ASP Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-AuthCookie Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-AuthCookieDBI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-DBILogConfig Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-DBILogger Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-Filter Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-Gallery Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-Apache-Reload Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-Apache-Session Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-Session-Wrapper Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-SSI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Apache-Test Update to 1.27: 2005-11-23 22:19:50 +00:00
p5-CGI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-Application Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-FastTemplate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-FormBuilder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-Kwiki Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-Minimal Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-CGI-Session Update to version 4.09 2006-03-30 12:55:38 +00:00
p5-CGI_Lite Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-FCGI Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Clean Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Element-Extended Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-FillInForm Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-FixEntities Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Format Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-LinkExtractor Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Mason Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Parser Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-PrettyPrinter Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Prototype Import p5-HTML-Prototype from pkgsrc-wip, packaged by kuli0020. 2006-02-15 06:24:31 +00:00
p5-HTML-Prototype-Useful Import p5-HTML-Prototype-Useful from pkgsrc-wip, packaged by kuli0020. 2006-02-15 06:29:00 +00:00
p5-HTML-Scrubber Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-SimpleParse Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-StickyQuery Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
p5-HTML-Stream Imported p5-HTML-Stream from pkgsrc-wip. 2005-11-19 12:43:04 +00:00
p5-HTML-Table Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-TableExtract Update to 2.06: 2005-10-25 13:40:24 +00:00
p5-HTML-Tagset Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Template Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTML-Tree Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTMLObject Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-Cache-Transparent Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-DAV Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-GHTTP Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-Proxy remove svr4 pkgname. 2006-03-23 18:06:52 +00:00
p5-HTTP-Request-Form Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-Server-Simple Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTP-Server-Simple-Mason Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-HTTPD-User-Manage Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Jemplate Updated to 0.17. 2006-03-08 05:00:39 +00:00
p5-Kwiki Drop maintainership. 2006-03-14 16:04:46 +00:00
p5-Kwiki-Archive-Rcs Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-BreadCrumbs Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-Edit-RequireUserName Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Kwiki-Favorites Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-HtmlBlocks Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-Icons-Gnome Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-NewPage Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-PagePrivacy Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-ParagraphBlocks Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-PreformattedBlocks Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-RecentChanges Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-Revisions Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-Scode Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-Search Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-UserName Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-UserPreferences Drop maintainership for packages that I no longer have time to maintain. 2006-03-14 16:00:40 +00:00
p5-Kwiki-Users-Remote Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Kwiki-Weather Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Kwiki-Zipcode Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-libapreq Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-libapreq2 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-libwww Update to 5.805: 2005-12-11 19:17:19 +00:00
p5-LWP-Authen-Wsse Use the right distinfo file, d'oh. 2006-01-30 13:15:33 +00:00
p5-MasonX-Request-WithApacheSession Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-SVN-Web Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Template-Extract Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Template-Generate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Template-Toolkit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-Test-WWW-Mechanize Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-URI Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
p5-VRML Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-WWW-Amazon-Wishlist Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
p5-WWW-Curl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
p5-WWW-Mechanize Update to 1.18: 2006-02-26 09:09:05 +00:00
paros Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pear-HTML_Common Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pear-HTML_Select Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
pear-HTTP_Request Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-curl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-eaccelerator Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
php-FastTemplate Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
php4 Increase memory limit when installing PEAR packages. This allows the 2006-03-06 15:57:58 +00:00
php4-apc Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
privoxy Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
py-clearsilver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-curl Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-HTMLgen Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
py-nevow Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
py-pcgi
py-zpublisher
qDecoder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
raggle Fix installation. Add installed documentation to PLIST. 2006-02-22 20:52:11 +00:00
ruby-actionpack Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-actionwebservice Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-borges Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
ruby-clearsilver Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-fcgi Stop handling DIST_SUBDIR default for Ruby based packages. 2006-01-03 14:25:49 +00:00
ruby-htmlsplit Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-tag Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
ruby-webunit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sarg Use SUBST framework. 2006-01-05 23:54:44 +00:00
screws Add DragonFly support. 2006-01-10 18:28:06 +00:00
sitecopy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
skipstone Update skipstone to 0.9.4. Changes: 2006-03-08 09:09:44 +00:00
snarf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
snownews Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
sope Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
SpeedyCGI Bump the PKGREVISIONs of all (638) packages that hardcode the locations 2005-08-06 06:19:03 +00:00
spfc Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
squid Update squid package to 2.5.13 (2.5.STABLE13). Most of changes are 2006-03-12 12:12:19 +00:00
squidGuard
squidpurge Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
surfraw Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
swiftsurf Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
swiggle Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
swill
swish-e Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tcl-cgi Fixed pkglint warnings. The warnings are mostly quoting issues, for 2005-12-05 20:49:47 +00:00
thttpd Use SUBST framework. 2006-01-05 22:46:12 +00:00
thy Belatedly bump PKGREVISION for all libtasn1 dependencies, since 2006-03-06 00:18:10 +00:00
tidy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
tinyproxy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
trac The plist module automatically handles converting "man" entries into 2006-03-16 23:12:48 +00:00
urlget
visitors Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
w3 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
w3c-httpd Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
w3m Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
w3m-img Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
waplet
wApua Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
wdg-validate
webalizer Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
weblint Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
webnew
websvn Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
weex Security fix for SA17028: 2005-10-05 13:38:13 +00:00
whisker
wiliki A missing file in PLIST; bump revision to 0.5.3nb1. 2006-03-18 01:07:55 +00:00
wml Ran "pkglint --autofix", which corrected some of the quoting issues in 2005-12-05 23:55:01 +00:00
www6to4 Fix PKG_OPTIONS_VAR in previous. 2005-11-03 16:55:46 +00:00
wwwcount Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
wwwoffle Modify the pkginstall framework so that it manages all aspects of 2006-03-14 01:14:26 +00:00
zope For py-extclass, use the buildlink3.mk, not just a dependency. 2005-12-30 13:24:34 +00:00
zope-confera
zope3 Recursive revision bump / recommended bump for gettext ABI change. 2006-02-05 23:08:03 +00:00
zope25 Fixed some pkglint warnings. 2006-03-12 17:35:05 +00:00
zope25-AbracadabraObject Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-BackTalk Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-BTreeFolder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-BTreeFolder2 Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Calendar Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-CMF Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-CMFPlone Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-colorz Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-CookieCrumbler Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-DocumentLibrary Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-EasyImage Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Epoz Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ExternalEditor Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-FileSystemSite Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Formulator Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Fortune Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-JPicture Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-KnowledgeKit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-LocalFS Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-MailManager Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-MetaPublisher Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ParsedXML Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Photo Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-PropertyFolder Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-PropertyObject Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-RDFSummary Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-RenderableCharts Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Silva Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Squishdot Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-StripoGram Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-TinyTablePlus Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-XMLWidgets Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-Zippy Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZMySQLDA Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZNavigator Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-zopebook Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZPhotoSlides Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZPsycopgDA Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZWeather Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZWeatherApplet Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zope25-ZWiki Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
zopeedit Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no 2006-03-04 21:28:51 +00:00
Makefile Add p5-HTTP-Proxy; requested by jlam 2006-03-23 18:07:51 +00:00