summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2005-07-16Remove some unnecessarily strong dependencies on perl that resultedjlam7-17/+15
from including perl5/buildlink3.mk. These packages just need the Perl interpreter, and can just add "perl" to USE_TOOLS instead.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam20-55/+40
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-07-15Fix C99 variable declarations to make this pkg build with gcc 2.95.kristerw2-1/+17
2005-07-15Drop support for TOOLS_DEPMETHOD.<tool>. The new way to specify ajlam4-12/+8
run-time dependency (DEPENDS) on a tool is to append a ":run" modifier to the tool name, e.g., USE_TOOLS+= perl:run Tools without modifiers or with an explicit ":build" modifier will cause build dependencies (BUILD_DEPENDS) on those tools to be added. This makes the notation a bit more compact.
2005-07-15Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by makingjlam4-12/+9
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
2005-07-15Update to 1.024. From the changelog:schmonz5-74/+88
- Fixed (again) glob patterns to allow both "!" (like modern glob) or "^" (like existing shells) for negating character sets. - Tweaked str_alloc to use realloc when appropriate. - Fixed glob pattern matches to use "!" instead of "~" for negating character sets like all other globs use. - Fixed the installer libraries to include all the necessary object files for producing the installer/instcheck/instshow programs. - Added a generic installer program, similar to the "install" program included with ezmlm. - Fixed the instshow library to use and dispaly the install prefix just like the other instlib programs. - The installers now automatically create missing directories, and installs into temporary files that get renamed. - Added path_mkdirs function. - Fixed typo bug in str_catfv and str_copyfv that caused failures on (at least) PPC and S390 architectures. Thanks Gerrit Pape. - Fixed 32-to-64 bit sign extension bug in fmt_multi on some 64-bit platforms. Thanks Gerrit Pape. - installer/instcheck program libraries now optionally install into a prefix directory specified on the command line or with $install_prefix (which can be set on the make command line). - Installation is now done under seperate include/lib directories. - Added sysdep for "extern int daylight" (replaced by a macro if not present). - Fixed a couple of length counting bugs in the fmt number code. - Added multiple-item formatting functions fmt_multi (similar to printf, but safer), fmt_multiv, obuf_putf, str_catf, and str_copyf, as well as a set of formatted message functions.
2005-07-14- Update p5-Cursesadrianp2-7/+7
> New in 1.12 (March 17, 2005) > > Build bug fixed: panel, forms, menu libs not found in build. > > Build bug fixed: Curses.pm treats version as number, so 1.10 == 1.1 . > > New in 1.11 (March 12, 2005) > > Various cleanup and improved diagnostics in the build. > > New in 1.10 (March 11, 2005) > > Build bug fixed: Makefile has undefined variable $libtyp. > > Build bug fixed: Makefile computes wrong guess hint file name. > > New in 1.09 (March 6, 2005) > > - Makefile.PL searches for curses header files instead of assuming > based on $OSNAME. > > - Makefile.PL warns user to reconfigure environment when form.h is > in /usr/include rather than just add -I/usr/include to the compile > (this concerns the problem with the conflicting Perl form.h file).
2005-07-14- Last update to p5-Event missed this fileadrianp1-4/+4
2005-07-14- Update p5-Eventadrianp1-3/+2
> 2005-05-14 <joshua@always.joy.eth.net> > > * Release 1.06. > > 2005-05-09 <joshua@always.joy.eth.net> > > * Fix 64 bit issue. Encouraged by Eric Rybski > <rybskej@yahoo.com>. > > 2005-04-23 <joshua@always.joy.eth.net> > > * Release 1.05. > > * Fix ancient memory leak in loop() noticed by Nikita Savin > <nik@asdfgroup.com>. > > 2005-03-29 <joshua@always.joy.eth.net> > > * Release 1.04. > > * Preliminary /dev/poll support from Michael Pergament > <ESeifert@t-online.de>. As of yet, there is no config test to > turn on this code. Patches welcome. > > 2005-01-31 <joshua@always.joy.eth.net> > > * Release 1.03. > > * Apply Win32 patch from Graciliano M. P. <gmpowers@terra.com.br>. > > 2004-12-08 <joshua@always.joy.eth.net> > > * Release 1.02. > > 2004-12-08 Zefram <zefram@fysh.org> > > * Generic watchers: implementation, documentation, and tests. > > * Documentation refinements. > > 2004-11-29 <joshua@always.joy.eth.net> > > * Release 1.01. > > * Event.xs: Due to popular demand, queue_pending() is now a public > API, for better or worse. Beware of race conditions. > > 2004-11-29 Zefram <zefram@fysh.org> > > * A var watcher can currently be created with no variable to > watch, provided of course that it is parked. However, once a > variable has been set, the watcher cannot be returned to the > no-variable state. The variable to watch can be changed, but the > watcher rejects any attempt to set the reference to undef. > > Applied a patch to allow the variable reference of a var watcher > to be set to undef. > > * Applied patch to clarify the documentation (with tweaks from > Joshua). > > 2004-05-14 <joshua@always.joy.eth.net> > > * Release 1.00 (with Marc Lehmann's encouragement). > > * c/watcher.c (pe_watcher_now): Check for a missing callback, not > only a missing perl callback. Marc A. Lehmann <pcg@goof.com> > > 2004-04-26 <joshua@always.joy.eth.net> > > * lib/Event.pm (import): Make NO_TIME_HIRES actually work. Jerry > D. Hedden <jerry@hedden.us> > > 2004-04-22 <joshua@always.joy.eth.net> > > * c/signal.c (pe_signal_stop): When a signal watcher stops, the > signal counter is cleared. Otherwise the signal watcher can > generate one last event after being stopped, which is a > bug. (Pointed out by Zefram <zefram@fysh.org>) > > 2004-04-21 <joshua@always.joy.eth.net> > > * Release 0.88. > > * lib/Event.pm: Simplify hooking into Time::HiRes. Add a > NO_HIRES_TIME export_ok symbol to turn off the probing. > > * Event.xs: Remove U2time. Remove install_time_api(). > > * lib/Event.pod: More refinement from Zefram <zefram@fysh.org>. > > * lib/Event.pod: ($watcher->pending & signal watchers): More > specific description by Zefram <zefram@fysh.org>. > > * c/watcher.c (pe_watcher_now): Fix SEGV reported by Zefram > <zefram@fysh.org>. Add test. > > 2004-04-05 <joshua@always.joy.eth.net> > > * lib/Event.pod (timer): Correction by Randal L. Schwartz > <merlyn@stonehenge.com>. > > 2004-04-03 <joshua@always.joy.eth.net> > > * lib/Event.pod (timer): Doc clarification > (jdhedden@1979.usna.com). > > Tue Feb 18 21:57:04 2003 Joshua N Pritikin <vishnu@pobox.com> > > * Release 0.87. > > * c/var.c (tracevar_r, tracevar_w): Fix declaration for recent > versions of perl (patch from Nick Eggleston <nick@dccinc.com>). > > Sat May 25 11:23:50 2002 Joshua N Pritikin <vishnu@pobox.com> > > * Release 0.86. > > * c/unix.c: Solaris works better without POLLWRBAND (Clemens > Schrimpe <csch@Kiez.NET>). > > Fri Feb 1 12:20:33 2002 Joshua N Pritikin <vishnu@pobox.com> > > * Release 0.85. > > * Apply patch from Allen Smith <easmith@beatrice.rutgers.edu> > to avoid infinite polling loop on some select implementations. > Also reported by Marc Lehmann <pcg@goof.com>. > > Tue Jan 22 12:20:24 2002 Joshua N Pritikin <vishnu@pobox.com> > > * Doc StarvePrio (Allen Smith <easmith@beatrice.rutgers.edu>). > > * Remove IRIX special casing. Reports indicate that new versions > of IRIX don't need any hacks. (Allen Smith > <easmith@beatrice.rutgers.edu>) >
2005-07-14- Update p5-POEadrianp2-7/+6
- Lot's of changes/updates/fixes - For all the details: http://search.cpan.org/src/RCAPUTO/POE-0.3101/CHANGES
2005-07-14Reset maintainer to tech-pkg, since email bounced.wiz1-2/+2
2005-07-14Remove p5-Test-Harness -- included in current perl package.wiz7-66/+1
2005-07-14Do not include p5-Test-Harness/depends.mk -- current perl package is sufficient.wiz3-6/+3
2005-07-14- Update to 2.18.3adrianp3-13/+12
- Update addresses two security issues - From the ChangeLog: > Version 2.18.2 > -------------- > > + You can now create accounts with createaccount.cgi even > when the "requirelogin" parameter is turned on. (Bug 294778) > > + Bugs that are in disabled groups may not show a padlock > on the bug list, or may otherwise behave strangely. You > can now fix this using sanitycheck.cgi. (Bug 277454) > > + If sendmail dies while you are marking a bug > as a duplicate, the duplicates table will no longer become > corrupted. (Bug 225042) > > + Any user can change a flag on any bug. This also allows the > attacker to expose the summary of any bug, even a hidden bug. > > + Summaries of private bugs are sometimes exposed under a very rare > condition if you use MySQL replication. > > Version 2.18.3 > -------------- > > + The query.cgi page was broken in 2.18.2 by bug 300138. > That is now fixed.
2005-07-14Update to 1.9.6:wiz2-6/+6
Bugs fixed in 1.9.6: * Longstanding bugs: - Correctly diagnose `#' comments following trailing backslash. - Preserve backslashes preceding `##' lines. - Preserve the order of items conditionally appended (+=) to variables. - Fix support of installation directory names with spaces on systems where mkinstalldirs cannot use `mkdir -p'. - Avoid infinite loop in mdate-sh when TIME_STYLE is set. - Do not output two definitions of SOURCES (an internal variable). One was not formatted and could exceed the maximum line length of some third-party tools (e.g., AIX 5.1 grep, breaking dependency tracking). - Do not empty info files when attempting to rebuild them without makeinfo. - Be smarter when a Makefile.am references files in both "./dir" and "dir": do not output two rules to create these directories. (PR/461) - Do not attempt to recover a missing *.elc file if it cannot be created because emacs does not exist. - Several aclocal fixes for issues occuring when configure.ac includes some other m4 files explicitely with m4_include or m4_sinclude. (PR/450) - depcomp's cpp mode now understands preprocessors that output either `#line 42 file' or `# 42 file'. (Only the latter was supported.) * Other miscellaneous changes: - Update the GPL, and the FSF postal address. - Anticipate for python2.5 in AM_PATH_PYTHON. - The manual should now compile without any warning from TeX.
2005-07-13update to roundup 0.8.3recht3-7/+29
2005-05-02 0.8.3 Feature: - chinese translation by limodou Fixed: - fix reference to The Zope Book in Roundup FAQ - disabled file logging in Roundup test suite (sf bug 1155649) - return original string if message issue xref isn't valid - fix nosyreaction.py to stop it setting the nosy list unnecessarily (see doc/upgrading.txt for how to fix in your trackers) - after logout, always display tracker home page - web forms don't create new items if no item properties are set from UI - item creation failed if multilink fields had invalid entries (sf bug 1177602) - fix bdist_rpm (sf bug 1164328) - fix checking of "Email Access" for Anonymous email registration (sf bug 1177057) - disable "Email Access" for Anonymous by default to stop spam regsitering users on public trackers - send errors in the web interface to a logfile by default. Use the "debug" multiprocess mode (roundup-server) or the DEBUG_TO_CLIENT var (roundup.cgi) to have the errors appear in your browser - fix setgid typo (sf bug 1171346) - fix faulty find_template filename facility (sf bug 1163629) - fix roundup-admin "export" so it creates the target dir if needed - "fix" roundup-admin "import" to not use "universal newline support" since the csv module appears to have its own ideas about such things (sf bug 1163890) - fix installation docs referring to old-style configuration variables - fix roundup-admin "find" for searching Multilinks (sf bug 1189465) 2005-03-03 0.8.2 Feature: - roundup-server automatically redirects from trackers list to the tracker page if there is only one tracker Fixed: - added content to ZRoundup refresh.txt file (sf bug 1147622) - fix invalid reference to csv.colon_separated - correct URL to What's New in setup.py meta-data - change AUTOCOMMIT=OFF to AUTOCOMMIT=0 for MySQL (sf bug 1143707) - compile message objects in 'setup.py build' - use backend datatype for journal timestamps in RDBMSes - fixes to the "Using an external password validation source" customisation example (sf bugs 1153640 and 1155108)
2005-07-13Extended patch-aa (main.c) to make the variable addresses used in arillig3-8/+58
struct initializer constant. Bumped PKGREVISION.
2005-07-13Update devel/p5-Spoon to 0.23. Changes from version 0.21 include:jlam2-7/+6
- Added tests for UTF8 handling internally and in files via ContentObject. - Added CGI tests. - All CGI parameters are now decoded as UTF8. The -utf8 flag is now deprecated, but will continue to work as a no-op for now. - socialtext changes to allow formatter hooking - Changes for themes - -compress works better - Fix the mixin problem with resolve_install_path - Refactors to get rid of hub connections - Kwid Formatter for Spork - make sure the module_path comes from lib under cwd - Make installer better - Miyagawa's patch to bake cookies in redirect - CGI patch from cdent - Miyagawa added jar_opt support for different expires for each cookies - Miyagawa added unit test for Spoon::Cookie - fix deep-recursion bug on 'kwiki -update'
2005-07-13Update devel/p5-Spiffy to 0.24. Changes from version 0.22 include:jlam2-7/+6
- Add a blank return to super - Add the mixin method - Refactored -Base to once and only once - Remove some cruft - Got export algorithm working better
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam169-338/+338
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-07-13libtool-base doesn't use a cache file at all as it is.tv1-4/+2
2005-07-13Changes 2.18.3:adam2-15/+13
BUG FIXES: * Fix for incorrect handling of -x and -specs from Michal Welnicki. TESTS: * Fix false pass in tests for -x and -specs.
2005-07-13On IRIX, don't use a cache-file, since configure bails out afterjschauma1-2/+4
trying to reparse the cache. Ugh.
2005-07-13fix HOMEPAGE.grant1-2/+2
2005-07-13Update to 2.1. From the changelog:schmonz3-11/+22
- lots of fixes to get the thing working sufficienly for cvs2git - main features - optionally detect and display ancestor branch information for new detected branches - never allow more than one revision of a file to be in a single patchset (this may disturb the patchset numbers for historical data :-( - use file revisions to help sort, so that initial imports won't be listed as patchset 1, with patchset 2 as the actual creation of the files. - reports log times in localtime (use TZ to override) - many downstream patches from Debian, special thanks to Marcus Crafter for maintaining. From the Debian changelog: - patch from Kim Hansen to fix time calculation bug - documentation patch from J. Bruce Fields - directory name handling patch from David Kilzer - others I'm not sure of, I'd happily update the credit here
2005-07-12Do not install config.log; it is not needed, and it confuses thekristerw4-9/+18
workref checks. Bump PKGREVISION.
2005-07-12Fix incorrect cast. Reported by ODA Terutaka on arx-users.recht4-26/+8
While at it remove an unused patch. Bump PKGREVISION to 1.
2005-07-10Prevent paths to the build directories from being included in the package.kristerw3-8/+21
Bump PKGREVISION.
2005-07-08Prevent paths to the build directories from being included in the package.kristerw1-1/+4
Bump PKGREVISION.
2005-07-07Bump recommented version to 1.2.2nb1 because of CAN-2005-2096.tron1-2/+2
2005-07-07Update to version 1.2.1. The most important reason for this is that thecjs2-8/+6
older versions do not work with the version of subversion-base in pkgsrc. Version 1.2.1 (14 February 2005, from /tags/1.2.1) * Fix cvs2svn's dumpfile output to work after Subversion's r12645. Version 1.2.0 (11 January 2005, from /tags/1.2.0) * --fs-type=TYPE: make it possible to specify the filesystem type. * Convert files with svn:eol-style to have LF end of lines only. * Fix hang in pass 8 for files that ended with a CR. * Import unexpanded keywords into the repository. * Fix the handling of the $Revision$ keyword. * Fix bug in branch/tag creation edge case. Version 1.1.0 (15 September 2004, from /tags/1.1.0) * --symbol-transform: change tag and branch names using regular expressions. * Flush log after writing, for better feedback when using 'tee'. * Issue 74: No longer attempt to change non-existent files. * Allow the Subversion repository created to have spaces in its name. * Avoid erroring when using a svnadmin that uses FSFS by default.
2005-07-07add a patch for CAN-2005-2096, from Debiandrochner3-2/+17
2005-07-06Lose PKGREVISION.epg1-2/+1
2005-07-06Version 1.2.1epg2-6/+6
(5 July 2005, from /branches/1.2.x) http://svn.collab.net/repos/svn/tags/1.2.1 User-visible-changes: - Client: * fixed: 'svn lock' on switched file locks wrong thing (issue #2307) * fixed: 'svn (un)lock' errors on multiple targets (r14736, 14775) * fixed: 'svn (un)lock' problems with URI-unsafe names (issue #2314) * fixed: 'svn (un)lock' not caching authentication (r15088) * fixed: 'svn unlock' loses executable bit (r14859, r14923, r14939) * fixed: 'svn unlock URL' segfault (r14893) * fixed: 'svn commit' failure on XML-unsafe locked paths (issue #2335) * fixed: recursive directory copy bug (issue #2343) * fixed: don't initialize RA library in 'svnversion' (r14755) * fixed: svn-push segfault (r14732) * various translation updates for localized client messages - Server: * fixed: 'svn log' performance regression, general (r14116, 14772, 14759) * fixed: 'svn log -v' performance regression, FSFS-specific (r15016) * fixed: mod_dav_svn bug sets content-type incorrectly (r15046) Developer-visible-changes: * fixed: win32 innosetup's add/repair/remove features (r14830) * fixed: OBOE with 'limit' parameter of svn_repos_get_logs3(). (r15119) * redhat RPM fixes (r15050) * perl bindings: - accessors for svn_lock_t (r15082) - call utf_initialize, adjust global pool usage (r15076, r15080, r15081, r15117)
2005-07-06Remove comment about FreeBSD since not entirely correct for following.reed1-6/+6
Add condition for FreeBSD >= 5 then use -lpthread. I assume the previous -Wc,-lc_r was for 4.x and I keep it there. (Sorry if I break this for others using FreeBSD. I didn't get much feedback when posted to tech-pkg in May about this.) I noticed this when building audio/arts on FreeBSD 5.3-RELEASE: Fatal error 'Spinlock called when not threaded.' at line 83 in file /usr/src/lib/libpthread/thread/thr_spinlock.c (errno = 0) Bump PKGREVISION since this changes the resulting package for FreeBSD. (Todo: pkgsrc/mk/pthread.builtin.mk or pkgsrc/mk/pthread.buildlink3.mk can be improved so this workaround can be removed.)
2005-07-03Another Interix fix; $soname -> $soname.exp in two places where it was nottv4-18/+18
fixed before.
2005-07-03libtool-base 1.5.18nb4: Fix a really nasty bug on Interix;tv5-17/+17
hardcode_libdir_flag_spec used -h rather than the correct -rpath. Fix provided in private mail by Thorsten Glaser.
2005-07-02Update to 0.6.5: minor bugfixes.wiz5-41/+24
2005-07-01Exclude Darwin>=8.0 from _INCOMPAT_READLINE_LIBRARY because it has aminskim1-2/+2
readline library from NetBSD 2.0.
2005-07-01Changes 2.0.14:adam3-418/+187
* SUN Forte 5.7 build fix for ambiguity when using inner template class. However, you still need the patch in bug 302098 to finish the build. Changes 2.0.13: * signal_emit::emit(): Ensure the correct order of destruction of the member variables, to avoid a leak. * Allow recursive signal emission again. * SUN Forte CC 5.5 build fixes: - test_compatibility minor fix. - visit_each() template specializations: Mention the bool I_derives_trackable template type, - Check for the non-standard SUN reverse_iterator, and use alternative code if necessary. Changes 2.0.12: * Fixes crashes when using virtual inheritance, particularly with bound by-reference parameters, caused by casting from derived to base when the derived destructor has run. This might affect non-g++ compilers, so do tell us about any problems.
2005-07-01Changes 0.9.10:adam3-96/+232
* Gorm now has a full implementation of canSubstituteForClass: which is used to determine if a class can be substituted in the custom class inspector. This allows classes added in palettes to say whether or not they can be used as a subsitute for a kit class. * Better separation of Gorm into libraries. As well as the ability to compile on windows with a simple: "make install" * Implementation of IBResourceManager class. This class is used by palettes to register drag types to be considered by the top level editors in the document window: object, sound, image, class. * Gorm now is able to switch views in the document window when you drag a file into it. If it's an image it will switch to the image view, if it's a sound, the sound view, an object the object view etc or if it's a class (a .h file) it will switch to the classes view. * Drag and drop parsing of header files (if you hadn't gathered from the previous item). * Better support for standalone views. while the user cannot instantiate from the classes view (there were too many problems with this approach). They can now drag any view from the palette into the objects view and have it work. * A myriad of bug fixes.
2005-06-29Update of devel/gputils to 0.13.2.dogcow4-129/+507
Changes between 0.11.6 and 0.13.2 (5 May 2005): * addition of gpstrip * addition of many processors * lots and lots of bugfixes * other minor features too voluminous to mention here * now has man pages!
2005-06-27Update the mk file to the 20050405 version, and fix the path to the tarball.erh2-9/+9
2005-06-27Removed checksum for patches/patch-aa, which has never existed.rillig1-2/+1
2005-06-26Fix build: add build dependency on devel/p5-Test-ClassAPI andseb1-1/+3
run-time dependency on devel/p5-File-Slurp.
2005-06-26Update to 2.6.5:jmmv3-7/+9
* GOption - Treat '-' as non-option argument [Tim Musson, Thomas Leonard] * Win32 changes - Improve g_get_system_data_dirs() [Tor] * Other bug fixes [Tommi Komulainen, Tor, Benjamin Otte, Morten Welinder, Christian Biere, Noah Levitt, Michael Banck] * Documentation improvements [Mattew F. Barnes, Federico Mena Quintero, Daniel Vaillard, Matthias] * New and updated translations (da,eu,gl,mn,nb,ne,no)
2005-06-26Fix build: this needs p5-ExtUtils-AutoInstall to build.seb1-1/+3
2005-06-26update to tla-1.3.3recht3-7/+8
This release fixes a few minor but important bugs in low level libraries.
2005-06-26Darwin>=7.0 does not need devel/dlcompat.minskim1-2/+2
2005-06-26Update to 0.14:wiz2-8/+8
0.14 Mon Nov 8 14:00:00 2004 - Return filehandle close() value to caller. Spotted in Spreadsheet::WriteExcel::Big by Edward James and Reidar Johansen. - Changed IO::Scalar from a "use" to a "require" and removed the Makefile dependency to make H. Merijn Brand's life easier for some reason. :-) 0.13 Sun Aug 1 13:00:00 2004 - Allowed use of user defined filehandles. This should make the module work with mod_perl and some other applications. https://rt.cpan.org/NoAuth/Bug.html?id=7168 0.12 Thu May 28 23:00:00 2004 - Applied patch to fix problems when creating very large files. Thanks James Rouzier. - Applied patch to allow IO::Scalar as a data destination. Thanks Kyle Burton. - Fixed pack() warning in perl5.8 - jmcnamara