summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2014-01-20Convert to distutils.mk. Mark as not for python-3.x.wiz2-6/+7
Bump PKGREVISION.
2014-01-20Updated databases/py-PgSQL to 2.4nb8wiz1-1/+2
2014-01-20Convert to distutils.mk. Mark as not for python-3.xwiz2-7/+6
Bump PKGREVISION.
2014-01-20Add license for py-mxDateTime.wiz1-0/+106
2014-01-20Updated time/py-mxDateTime to 3.2.7wiz1-1/+2
2014-01-20Update to 3.2.7. Changes not found.wiz3-11/+48
Set LICENSE. Fix interpreter path in installed files.
2014-01-20Updated math/py-munkres to 1.0.6wiz2-3/+3
2014-01-20Update to 1.0.6: changes not found, but this version works with python-3.wiz2-7/+6
2014-01-20Mark as not applicable for python-3.x.wiz1-4/+3
Set LICENSE.
2014-01-20Updated www/py-moin to 1.9.7wiz2-3/+3
2014-01-20Update to 1.9.7:wiz3-14/+166
Version 1.9.7: SECURITY HINT: make sure you have allow_xslt = False (or just do not use allow_xslt at all in your wiki configs, False is the internal default). Allowing XSLT/4suite is very dangerous, see HelpOnConfiguration wiki page. HINT: Python >= 2.5 is maybe required! See docs/REQUIREMENTS for details. New features: * passlib support - enhanced password hash security. Special thanks go to the Python Software Foundation (PSF) for sponsoring development of this! Docs for passlib: http://packages.python.org/passlib/ If cfg.passlib_support is True (default), we try to import passlib and set it up using the configuration given in cfg.passlib_crypt_context (default is to use sha512_crypt with default configuration from passlib). The passlib docs recommend 3 hashing schemes that have good security, but some of them have additional requirements: sha512_crypt needs passlib >= 1.3.0, no other requirements. pbkdf2_sha512 needs passlib >= 1.4.0, no other requirements. bcrypt has additional binary/compiled package requirements, please refer to the passlib docs. cfg.password_scheme should be '{PASSLIB}' (default) to tell that passlib is wanted for new password hash creation and also for upgrading existing password hashes. For the moin code as distributed in our download release archive, passlib support should just work, as we have passlib 1.6.1 bundled with MoinMoin as MoinMoin/support/passlib. If you use some other moin package, please first check if you have moin AND passlib installed (and also find out the passlib version you have installed). If you do NOT want to (not recommended!) or can't use (still using python 2.4?) passlib, you can disable it your wiki config: passlib_support = False # do not import passlib password_scheme = '{SSHA}' # use best builtin hash (like moin < 1.9.7) Please note that after you have used moin with passlib support and have user profiles with passlib hashes, you can't just switch off passlib support, because if you did, moin would not be able to log in users with passlib password hashes. Password recovery would still work, though. password_scheme always gives the password scheme that is wanted for new or recomputed password hashes. The code is able to upgrade and downgrade hashes at login time and also when setting / resetting passwords for one or all users (via the wiki web interface or via moin account resetpw script command). So, if you want that everybody uses strong, passlib-created hashes, resetting the passwords for all users is strongly recommended: First have passlib support switched on (it is on by default), use password_scheme = '{PASSLIB}' (also default), then reset all passwords. Same procedure can be used to go back to weaker builtin hashes (not recommended): First switch off passlib support, use password_scheme = '{SSHA}', then reset all passwords. Wiki farm admins sharing the same user_dir between multiple wikis must use consistent password hashing / passlib configuration settings for all wikis sharing the same user_dir. Using the builtin defaults or doing the configuration in farmconfig.py is recommended. Admins are advised to read the passlib docs (especially when experiencing too slow logins or when running old passlib versions which may not have appropriate defaults for nowadays): http://packages.python.org/passlib/new_app_quickstart.html#choosing-a-hash http://packages.python.org/passlib/password_hash_api.html#choosing-the-right-rounds-value * Password mass reset/invalidation support, see docs/resetpw/. This is useful to make sure everybody sets a new password and moin computes the password hash using the current configuration. * Customizable default password checker: Moin's default password checker used and still uses min_length=6 (minimum pw length) and min_different=4 (minimum count of different chars in the password). If you feel that you need to require better passwords from your users, you can customize it now like that in your wiki config: password_checker = lambda cfg, request, name, pw: multiconfig._default_password_checker(cfg, request, name, pw, min_length=10, min_different=7) * Removing/disabling inactive users (moin ... account inactive) Many wikis have a lot of inactive users, that never ever made a single edit. See help of the command for more details, be careful. * SystemAdmin user browser: show disabled user accounts at the bottom of the list * At startup, announce moin version and code path in log output (makes support and debugging easier). * AttachList: introduced search_term parameter (optional) for listing attachments filtered by a regular expression on their name. * sign release archive using GnuPG with the key of tw@waldmann-edv.de ID 31A6CB60 (main key ID FAF7B393) Fixes: * logging: if the logging config file can't be read, give a helpful error msg * logging: use info loglevel (not warning) for telling about using the builtin default logging config * moin script commands: warn if someone gave ... to the moin script, avoids a strange and unhelpful 'empty module name' error message * reorder html input fields in recoverpass form, to help browsers remember the user name and password (not erroneously the recovery token and password) * don't try to send password recovery email to user if email address in user profile is empty * cache action: fix 304 http status * rst parser: fix safe_import for level param in __import__ call of docutils 0.10 * moin maint cleancache: also kill the i18n cache 'meta' pickle file * sendmail: catch unicode errors when E-Mail addr has non-ascii chars * redirect last visited: if last visited page is on same wiki, use a local redirect, do not compute via interwiki map (fixes https: usage)
2014-01-20Updated graphics/py-matplotlib to 1.3.1wiz1-1/+2
2014-01-20Update to 1.3.1:wiz3-57/+268
2013-05-18 Added support for arbitrary rasterization resolutions to the SVG backend. Previously the resolution was hard coded to 72 dpi. Now the backend class takes a image_dpi argument for its constructor, adjusts the image bounding box accordingly and forwards a magnification factor to the image renderer. The code and results now resemble those of the PDF backend. - MW 2013-05-08 Changed behavior of hist when given stacked=True and normed=True. Histograms are now stacked first, then the sum is normalized. Previously, each histogram was normalized, then they were stacked. 2013-04-25 Changed all instances of: from matplotlib import MatplotlibDeprecationWarning as mplDeprecation to: from cbook import mplDeprecation and removed the import into the matplotlib namespace in __init__.py Thomas Caswell 2013-04-15 Added 'axes.xmargin' and 'axes.ymargin' to rpParams to set default margins on auto-scaleing. - TAC 2013-04-16 Added patheffect support for Line2D objects. -JJL
2014-01-20Fix build with libc++ by doing the sorting explicitly. Bump revision.joerg4-18/+175
2014-01-20Apply libiberty patch here too.joerg2-1/+38
2014-01-20Fix build with Clang. Patches mostly from FreeBSD.joerg19-3/+555
2014-01-20Make the genccode hack stick and apply similar workaround for gencmn.joerg1-2/+3
2014-01-20Force serial GC during build. Fix friend forward with default arguments.joerg8-5/+121
Fix incorrect return value.
2014-01-20Sync PLIST with file system content on NetBSD/current. Bump revision.joerg2-2/+6
2014-01-20Fix build with TCL 8.6joerg22-23/+74
2014-01-20Imported commit d96951a93dfb3a082280bad561516ed90a1478bf upstream:khorben2-1/+16
Added missing include for download(1) with WebKit (as by default). Reported by Joerg Sonnenberger of NetBSD, thanks! Fixes building the package, no version bump required AFAICS.
2014-01-20Fix typo in COMMENT. Mark as not for python-3.x.wiz2-5/+7
2014-01-20Updated www/py-django-tagging to 0.3.1nb1wiz1-1/+2
2014-01-20Convert to distutils.mk. Mark as not for python-3.x.wiz2-4/+7
Bump PKGREVISION.
2014-01-20Updated www/py-django-mezzanine-grappelli to 0.2.11nb2wiz1-1/+2
2014-01-20Remove unnecessary dependency. Mark as not for python-3.xwiz1-4/+4
Bump PKGREVISION.
2014-01-20Updated www/py-django-mezzanine-filebrowser to 0.2.13nb2wiz1-1/+2
2014-01-20Remove unnecessary dependency. Mark as not for python-3.x. Bumpwiz1-4/+4
PKGREVISION.
2014-01-20Fix PKGNAME. Mark as not for python-3.x.wiz1-3/+6
2014-01-20Fix PKGNAME. Mark as not for python-3.x.wiz1-3/+5
2014-01-20Updated cad/py-MyHDL to 0.7nb1wiz1-1/+2
2014-01-20Convert to distutils.mk. Mark as not for python-3.x. Bump PKGREVISION.wiz2-5/+6
2014-01-20Updated www/py-django-easy-thumbnails to 1.2nb1wiz1-1/+2
2014-01-20Use distutils.mk. Mark as not for python-3.x. Bump PKGREVISION.wiz2-6/+10
2014-01-20Fix PLIST for python-3.x.wiz1-2/+2
2014-01-20Fix py-unittest2 entry.wiz1-2/+2
2014-01-20Updated inputmethod/uim to 1.8.6nb7ryoon1-1/+2
2014-01-20Bump PKGREVISIONryoon5-4/+62
Implement proper module handling. This idea is provided by obache@. * Remove all modules when uim is deinstalled, and register installed modules when uim is installed. This actions are needed when the modules that are provided by uim are changed.
2014-01-20Use versioned_dependencies.mk for ephem.wiz1-2/+3
2014-01-20Add math to CATEGORIES.wiz1-2/+2
2014-01-20+ ephemwiz1-1/+2
2014-01-20+ py-ephem3.wiz1-1/+2
2014-01-20Import py33-ephem-3.7.5.1 as math/py-ephem3.wiz4-0/+150
PyEphem provides scientific-grade astronomical computations for the Python programming language. Given a date and location on the Earth's surface, it can compute the positions of the Sun and Moon, of the planets and their moons, and of any asteroids, comets, or earth satellites whose orbital elements the user can provide. Additional functions are provided to compute the angular separation between two objects in the sky, to determine the constellation in which an object lies, and to find the times at which an object rises, transits, and sets on a particular day.
2014-01-20Updated math/py-ephem to 3.7.5.1wiz2-3/+3
2014-01-20Update to 3.7.5.1, changed not found.wiz3-29/+47
Mark as not for python-3.x.
2014-01-20Updated devel/py-dulwich to 0.9.4wiz2-3/+3
2014-01-20Update to 0.9.4:wiz3-17/+69
0.9.4 2013-11-30 IMPROVEMENTS * Add ssh_kwargs attribute to ParamikoSSHVendor. (milki) * Add Repo.set_description(). (Víðir Valberg Guðmundsson) * Add a basic `dulwich.porcelain` module. (Jelmer Vernooij, Marcin Kuzminski) * Various performance improvements for object access. (Jelmer Vernooij) * New function `get_transport_and_path_from_url`, similar to `get_transport_and_path` but only supports URLs. (Jelmer Vernooij) * Add support for file:// URLs in `get_transport_and_path_from_url`. (Jelmer Vernooij) * Add LocalGitClient implementation. (Jelmer Vernooij) BUG FIXES * Support filesystems with 64bit inode and device numbers. (André Roth) CHANGES * Ref handling has been moved to dulwich.refs. (Jelmer Vernooij) API CHANGES * Remove long deprecated RefsContainer.set_ref(). (Jelmer Vernooij) * Repo.ref() is now deprecated in favour of Repo.refs[]. (Jelmer Vernooij) FEATURES * Add support for graftpoints. (milki) 0.9.3 2013-09-27 BUG FIXES * Fix path for stdint.h in MANIFEST.in. (Jelmer Vernooij) 0.9.2 2013-09-26 BUG FIXES * Include stdint.h in MANIFEST.in (Mark Mikofski) 0.9.1 2013-09-22 BUG FIXES * Support lookups of 40-character refs in BaseRepo.__getitem__. (Chow Loong Jin, Jelmer Vernooij) * Fix fetching packs with side-band-64k capability disabled. (David Keijser, Jelmer Vernooij) * Several fixes in send-pack protocol behaviour - handling of empty pack files and deletes. (milki, #1063087) * Fix capability negotiation when fetching packs over HTTP. (#1072461, William Grant) * Enforce determine_wants returning an empty list rather than None. (Fabien Boucher, Jelmer Vernooij) * In the server, support pushes just removing refs. (Fabien Boucher, Jelmer Vernooij) IMPROVEMENTS * Support passing a single revision to BaseRepo.get_walker() rather than a list of revisions. (Alberto Ruiz) * Add `Repo.get_description` method. (Jelmer Vernooij) * Support thin packs in Pack.iterobjects() and Pack.get_raw(). (William Grant) * Add `MemoryObjectStore.add_pack` and `MemoryObjectStore.add_thin_pack` methods. (David Bennett) * Add paramiko-based SSH vendor. (Aaron O'Mullan) * Support running 'dulwich.server' and 'dulwich.web' using 'python -m'. (Jelmer Vernooij) * Add ObjectStore.close(). (Jelmer Vernooij) * Raise appropriate NotImplementedError when encountering dumb HTTP servers. (Jelmer Vernooij) API CHANGES * SSHVendor.connect_ssh has been renamed to SSHVendor.run_command. (Jelmer Vernooij) * ObjectStore.add_pack() now returns a 3-tuple. The last element will be an abort() method that can be used to cancel the pack operation. (Jelmer Vernooij) 0.9.0 2013-05-31 BUG FIXES * Push efficiency - report missing objects only. (#562676, Artem Tikhomirov) * Use indentation consistent with C Git in config files. (#1031356, Curt Moore, Jelmer Vernooij) * Recognize and skip binary files in diff function. (Takeshi Kanemoto) * Fix handling of relative paths in dulwich.client.get_transport_and_path. (Brian Visel, #1169368) * Preserve ordering of entries in configuration. (Benjamin Pollack) * Support ~ expansion in SSH client paths. (milki, #1083439) * Support relative paths in alternate paths. (milki, Michel Lespinasse, #1175007) * Log all error messages from wsgiref server to the logging module. This makes the test suit quiet again. (Gary van der Merwe) * Support passing None for empty tree in changes_from_tree. (Kevin Watters) * Support fetching empty repository in client. (milki, #1060462) IMPROVEMENTS: * Add optional honor_filemode flag to build_index_from_tree. (Mark Mikofski) * Support core/filemode setting when building trees. (Jelmer Vernooij) * Add chapter on tags in tutorial. (Ryan Faulkner) FEATURES * Add support for mergetags. (milki, #963525) * Add support for posix shell hooks. (milki)
2014-01-20Updated net/py-dpkt to 1.8nb1wiz1-1/+2
2014-01-20Convert to distutils.mk, mark as not for python-3.x. Bump PKGREVISION.wiz2-8/+8
2014-01-20Updated textproc/py-X to 0.13wiz1-1/+2