Commit graph

21464 commits

Author SHA1 Message Date
jlam
1d2921d76d Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. 2001-06-28 20:11:49 +00:00
jlam
b1ee4157e6 Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. Also
use REPLACE_PERL instead of patching to replace /usr/bin/perl.
2001-06-28 20:02:56 +00:00
jlam
bdb1760985 Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. 2001-06-28 19:13:24 +00:00
jlam
ed0debd89f Mark as USE_BUILDLINK_ONLY. 2001-06-28 18:30:26 +00:00
jlam
41d8a8d4f4 Remove USE_BUILDLINK_ONLY as we may need ${LOCALBASE}/lib/libintl.so on
pre-current systems.
2001-06-28 18:22:38 +00:00
wiz
8cad3749f3 add and enable gpa 2001-06-28 17:02:02 +00:00
wiz
2538ae5a7b Initial import of gpa, a graphical front-end for GnuPG.
Still in development, not recommended for production use yet.
Package provided by Peter Reich in pkg/12952, with some touch-ups by me.
2001-06-28 17:01:03 +00:00
wiz
2844ba8358 Update MASTER_SITE_XCONTRIB server list, inspired by a posting to tech-pkg
by Jim Bernard <jbernard@mines.edu>.
2001-06-28 16:54:07 +00:00
wiz
be8994f5f0 add and enable amaterus 2001-06-28 16:16:03 +00:00
wiz
923ef015fb Initial import of amaterus, a gtk+ based window manager.
Based on the package submitted by Takehiro Sakagami in pkg/12653.
Adapted to use buildlink.mk, and other changes in pkgsrc.
2001-06-28 16:15:17 +00:00
wulf
b83271ac55 Added and enabled snns-4.2: A software simulator for neural networks 2001-06-28 15:20:32 +00:00
wulf
b9bfaf3c8b Initial import of snns-4.2: A software simulator for neural networks 2001-06-28 15:18:03 +00:00
fvdl
4b9a27b329 Update. 2001-06-28 14:20:32 +00:00
fvdl
3ced13fa2b Reset SIGPIPE handler to default (from SIG_IGN) before execing anything,
otherwise all children (xterms, etc) will end up ignoring SIGPIPE.
2001-06-28 14:20:17 +00:00
wiz
0b92716f49 Convert to use buildlink.mk. Should fix pkg/13331. 2001-06-28 13:35:31 +00:00
wiz
27ba100aa8 Fix typo in buildlink.mk include path. pkg/13332 by Martti Kuparinen. 2001-06-28 13:21:35 +00:00
drochner
43d56d5352 update to 2.0.1 (bugfix release)
What's Fixed in Python 2.0.1
============================

- A few references to Python 2.1 in the LICENSE were changed to 2.0.1.

- Bogus indentation in Lib/statcache.py was fixed.

- A few small nits in the documentation were fixed and the new license
  was included there.

What's Fixed in Python 2.0.1c1
==============================

Critical Patches (from MoinMoin)

- Core dumps in _tkinter

Fixes to bugs reported on SourceForge

Bugs with an ID below 200000 can be found at
http://sourceforge.net/bugs/?func=detailbug&bug_id=<id>&group_id=5470

More recent bugs are accessed as
http://sourceforge.net/tracker/index.php?func=detail&aid=<id>&group_id=5470&atid=105470

- Brought SRE up to date with Python 2.1

- #117278, #117167: _tkinter

- #116172, curses module fails to build on SGI, _curses

- Patch #103485, compile on NetBSD

- Rename lines to nlines, macro sometimes defined in term.h

- Patch #130117: add a prototype required to compile cleanly on IRIX

- In Lib/locale.py, setlocale emulation, use != and not is not to compare
  strings

- #409651 - in Lib/fnmatch.py, make \ in a character group work

- #119622:  compile errors due to redundant atof decls. Removed from
  Python/compile.c and Python/marshal.c

- #121965 -- fixing containment in xrange() objects

- #126161 #123634 -- pickle.py, cPickle.c -- fix pickling unicode strings
  this is *backwards incompatible* with older pickles containing unicode
  strings -- but this has to be done, the previous pickling scheme broke
  anyway.

- complex() could segfault on numeric types with NULL for float conversion.
  Fixed.

- Fixed #407504 -- closing pwd and grp database when finished.

- Fixed memory leak in from import ...

- Importing should now be safe with multiple Py_Initialize/Py_Finalize
  sequences.

- Add TELL64() hack #ifdef to FreeBSD, Apple and BSDI

- del func.func_defaults raises a TypeError instead of dumping core

- #121013 - stringobject.c -- "".join(u"this is a test") dumped core

- exceptions.c  - make_class() Added a "goto finally" so that if
  populate_methods() fails, the return status will be -1 (failure)
  instead of 0 (success).

  fini_exceptions(): When decref'ing the static pointers to the
  exception classes, clear out their dictionaries too.  This breaks a
  cycle from class->dict->method->class and allows the classes with
  unbound methods to be reclaimed.  This plugs a large memory leak in a
  common Py_Initialize()/dosomething/Py_Finalize() loop.

- #122162 -- unicodeobject.c --- Fix unicode .split() off-by-one

- Loosely based on patch #103249 -- Fix core dumps in PyUnicode_Count

- #125981 -- socketmodule.c --  closing sockets was not thread-safe.

- Use openssl/*.h to include the OpenSSL header files

- Patch #103636: Allow writing strings containing null bytes to an SSL socket

- #232787 -- Modules/timemodule.c, Python/errors.c, Objects/intobject.c

- posixmodule.c - Add missing prototypes in for SunOS 4.1.4, plug memory leak

- #125891 - posixmodule.c - os.popen2,3 and 4 leaked file objects on Windows.

- #128053 - posixmodule.c - #ifdef for including "tmpfile" in the
            posix_methods[] array was wrong -- should be HAVE_TMPFILE

- #233200 - cPickle did not use Py_BEGIN_ALLOW_THREADS.

- #125452 - shlex.shlex hungs when it encounters a string with an unmatched
            quote

- #119833 - close socket in smtplib if there was an error connecting

- #126863 - getopt long option handling fixed

- #123924 - httplib.py - Windows - using OpenSSL, problem with socket

- atexit.py - mutate list of functions in thread-safe way

- curses.ascii - space (ASCII 32) is now considered whitespace

- #125375 - parsermodule.c - fix parser.tuple2ast() failure on valid parse tree

- mpzmodule.c - make .binary() work on 64-bit system, make it compile with
  Cygwin

- #127718 - '@' were '`' seem to be confused.

- #119862 - getargs.c - patched memory leak

- #128475 - pythonrun.c - In Py_Finalize, don't reset initialized flag
            until after the exit funcs have run

- #128713 - mmapmodule.c -  type(mmap_object) blew up on Linux.

- mmap on windows creates a mapping without a name when tagname isn't
  specified

- #117745 - UserString.py - Fix two typos in __imul__.

- #130306 - statcache.py - full of thread problems.

- Made statcache.forget_dir more portable

- In site.py, the ".pth" code knew about the layout of Python trees on
  unix and windows, but not on the mac. Fixed.

- #121706 - config.c - _PyImport_Inittab: define the exceptions module's init
                       function.

- Update install-sh using version from automake 1.4.

- #12195 - webbrowser.py - there was typo in Mac code

- quopri.py - treat \r as whitespace too

- xmllib.py - Moved clearing of "literal" flag.  The flag is set in setliteral
  which can be called from a start tag handler.  When the corresponding end
  tag is read the flag is cleared.  However, it didn't get cleared when
  the start tag was for an empty element of the type <tag .../>.  This
  modification fixes the problem.

- #117606 - configure.in, configure - use gcc -shared and gcc -fPIC

- #227562 - urllib.py - call URLopener.http_error_default when
                        an invalid 401 request is being handled.

- urllib.py - provide simple recovery/escape from apparent redirect recursion

- #129288 - urllib.py - changing %02x to %02X in quoting

- urllib.py - HTTPS now works with string URLs

- distutils/command/install.py - make .get_outputs() produce a list of unique
                                 filenames

- pyexpat.c - removed memory leaks

- #233253 - distutils/command/build_ext.py - the --define and --undef options
            didn't work, whether specified on the command-line or in setup.cfg.

- distutils/command/build_ext.py - make docstrings raw

- #128930 - distutils/command/build_ext.py - split rpath argument

- #131064, #129584, #127722 - PC/getpathp.c

- asynchat.py - now checking for empty buffer with ==, not "is"

- Lib/xml/sax/xmlreader.py - import the exceptions this module can raise
2001-06-28 13:19:56 +00:00
drochner
74e42922d3 add an explicite GNU_ARCH.mipsel assignment to work around poor interaction
with <bsd.own.mk>
2001-06-28 13:16:56 +00:00
wiz
de58a34aef Fix name for distfile size info. 2001-06-28 10:35:58 +00:00
wiz
8f1307126f Only patch one file per patch file. 2001-06-28 10:32:45 +00:00
jlam
4e03431bba Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. 2001-06-28 06:09:24 +00:00
jlam
6226431fc2 Mark as USE_BUILDLINK_ONLY. 2001-06-28 05:53:27 +00:00
jlam
4b873ea258 Mark as USE_BUILDLINK_ONLY and clear CFLAGS,CXXFLAGS,CPPFLAGS before build
as they may contain arch-specific options, e.g. -mcpu=pentiumpro, that
won't be understood by the xgcc built during the build phase.
2001-06-28 05:48:19 +00:00
jtb
dcc77d71c4 Update to version 6.93. Changes:
* New variables:
  + vm-folder-file-precious-flag
* added CRAM-MD5 as an authentication method for IMAP.
* vm-su-do-date: interpret 2-digit years in the RFC-822 matching
  case as 20XX if year starts with 0-6.
* vm-rfc1153-or-rfc934-burst-message: skip spaces in addition to
  newlines that occur after a separator line.  A digest has been
  observed with that kind of deformity.
* treat enable-local-eval as we do enable-local-variables--- always
  bind it to nil.
* vm: don't bind vm-auto-decode-mime-messages non-nil during
  initial message preview if it is nil.
* vm-mime-display-internal-text/html: dropped (sleep-for 2).  No one cares
  enough about the "Need W3 to inline HTML" message to wait 2
  seconds afterward.
* added menu entry to allow MIME objects to be converted to
  another type and displayed.  The new type is determined by
  vm-mime-type-converter-alist.
* added koi8-r to vm-mime-mule-charset-to-coding-alist (XEmacs only).
* vm-pop-read-list-response: check for nil return of
  vm-pop-read-response before using return value.
* vm-pop-read-stat-response: check for nil return of
  vm-pop-read-response before using return value.
* vm-encode-coding-region: use unwind-protect to make sure (well
  more likely) that the work buffer always gets killed if it has
  been created.
* vm-decode-coding-region: use unwind-protect to make sure (well
  more likely) that the work buffer always gets killed if it has
  been created.
* vm-mime-convert-undisplayable-layout: put object buffer on
  garbage list sooner to make rarer the situation where the
  buffer never gets deleted.
* Makefile: remove function definition of vm-its-such-a-cruel-world
  after it is run.
* vm-md5-region: if vm-pop-md5-program exits non-zero, signal an
  error.  Also if the work buffer is not at least 32 bytes long,
  signal an error.  This prevents naive callers from assumption all is well
  and using a possibly empty string as an MD5 hash.
* vm-md5-region: check the MD5 digest returned for non-hex-digit
  characters and signal an error if any are found.
* vm-get-file-buffer: use find-buffer-visiting if it is fbound.
* vm-build-threads: fixed loop that removed child messages from a
  parent when better information about a child's parent is found.
  Previously the loop attempted to remove the same message from
  the parent over and over.
* vm-build-threads: gather thread data using References and
  In-Reply-To for all messages before using the Subject header.
  This helps prevent the case where References says A is the
  parent of B but because of clock skew B is older than A, which
  can lead to B being considered the parent of A if A and B have
  the same subject and vm-thread-using-subject is non-nil.
2001-06-27 19:45:29 +00:00
nra
58ff4566af Add SUBDIR for xmailwatcher. 2001-06-27 18:28:08 +00:00
jlam
803ab6dab4 libpisock.so bumped its major, so make all package that depend on
pilot-link-libs depend on this most recent version (0.9.5).  Conveniently,
all the packages using buildlink.mk files have dependencies automatically
updated by modifying this one location.
2001-06-27 18:28:05 +00:00
nra
ae858c3e8e Import xmailwatcher.
A X11 mailbox checker which displays sender and subject lines of emails.
2001-06-27 18:26:54 +00:00
jlam
a61774cdfe Use distribution contained in latest pilot-link-0.9.5 sources. Renumber
to 0.1, the correct version number for this package.  Only one package
(pilotmgr) depended on p5-pilot-link-*, so this should be okay.
2001-06-27 18:11:37 +00:00
jlam
2d07461529 Convert to use pilot-link-libs' buildlink.mk files and mark as
USE_BUILDLINK_ONLY.
2001-06-27 18:07:53 +00:00
jlam
8698af9367 Add and enable pilot-link-libs. 2001-06-27 18:06:45 +00:00
jlam
47df9dc8ee pilot-link-libs: libraries for talking to the 3Com PalmOS PDA 2001-06-27 18:06:05 +00:00
jlam
0d424e25cc Update pilot-link to 0.9.5. The source code is under new stewardship
and is undergoing many improvements and rewrites, many of which are
reflected in the current release.  The ChangeLog is too large to summarize.

The libraries and headers have been split off into a separate package
pilot-link-libs.
2001-06-27 18:04:38 +00:00
jlam
211630d941 Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. 2001-06-27 14:43:06 +00:00
taca
c4ff8e9f69 Update p5-File-MMagic to 1.13. Changes are below (from ChangeLog):
2001-06-15  NOKUBI Takatsugu  <knok@daionet.gr.jp>

	* MMagic.pm (readMagicEntry): Fixed warning output probrem
	on large magic database.
	(Reported and patched by John R Lenton. Thanks.)

	* Version 1.13.

2001-02-09  NOKUBI Takatsugu  <knok@daionet.gr.jp>

	* MMagic.pm (checktype_data): Changed evaluation sequence of
	binary-checking and specials-checking.
	Version 1.12.

2000-12-11  NOKUBI Takatsugu  <knok@daionet.gr.jp>

	* Discarded disallowEightbit().
	Add new variable "allowEightbit".
	Version 1.11.

	* MMagic.pm (disallowEightbit): Added new entry.
	Version 1.10.
2001-06-27 14:16:55 +00:00
hubertf
d554c64f6c do not forget X 2001-06-27 11:53:03 +00:00
zuntum
8da92cc05f o switch to use REPLACE_PERL and set MAINTAINER field 2001-06-27 11:44:26 +00:00
zuntum
cde4b723b3 o use REPLACE_PERL instead of sed 2001-06-27 11:41:51 +00:00
zuntum
38712c01b3 o move REPLACE_PERL code to more proper location -- to the do-patch target;
now it works when NO_CONFIGURE is set
2001-06-27 11:40:25 +00:00
zuntum
a8c4128002 use REPLACE_PERL instead of SED 2001-06-27 11:25:38 +00:00
zuntum
578c864e81 o introduce REPLACE_PERL
it chdir's to ${WRKSRC} and automatically replaces /usr/bin/perl,
  /usr/local/bin/perl and /usr/pkg/bin/perl with ${PERL5} in each file
  listed in REPLACE_PERL variable in package's Makefile
2001-06-27 11:24:15 +00:00
zuntum
5188766251 o previous update contained 1.0.2, but I announced it as 1.0.3...
update to 1.0.3 now -- the only change is cosmetic change in Makefile
2001-06-27 11:19:34 +00:00
zuntum
aa21572c27 Update apla to 1.0.3
o fix -a ('no audio') option not to open audio device
o fix audio time scale with avifile-0.53
o fix 8bit audio decoding to use proper format (ie. unsigned samples)
o apla's directory in distfile now has version numers in its name
o updated to use SDL_ttf 2.0.3
o reworked Makefile

Thanks Witold, great software!
2001-06-27 11:02:57 +00:00
dogcow
0d885d5a0d As Bernd Ernesti kindly pointed out, this already exists as
pkgsrc/databases/p5-perl-ldap, and has been around since '99.
Therefore, that one takes precedence. Mea summa culpa.
2001-06-27 09:53:35 +00:00
abs
cbdc7c9f95 Switch MD5 to SHA1, and ensure the filename in Size matches! 2001-06-27 09:39:49 +00:00
jlam
31d09dfa40 Remove dependency on gettext-lib (USE_LIBINTL). 2001-06-27 06:05:45 +00:00
jlam
5a7e4f2ee2 Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.
(I'm not entirely sure that libintl is actually necessary for this
package, but I'm leaving it as-is for now).
2001-06-27 05:19:10 +00:00
jlam
7a1145fc83 Move inclusion of Makefile.common below BASE_DIST definition. 2001-06-27 05:17:40 +00:00
jlam
c82f9fc8a8 Move inclusion of bsd.pkg.mk from Makefile.common to individual package
Makefiles.  Move the inclusion of Makefile.common to the top of the
individual Makefiles.
2001-06-27 05:07:33 +00:00
jlam
6013b55b84 - Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY.
- Handle PKGLOCALEDIR in PLIST.
2001-06-27 04:58:51 +00:00
jlam
7b9c9cf905 Convert to use buildlink.mk files and mark as USE_BUILDLINK_ONLY. 2001-06-27 04:28:48 +00:00