pkgsrc/www/py-moin/Makefile

50 lines
1.6 KiB
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.39 2019/09/02 13:20:01 adam Exp $
Update to 1.9.7: 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-20 21:17:05 +01:00
VER= 1.9.7
DISTNAME= moin-${VER}
PKGNAME= ${PYPKGPREFIX}-moin-${VER}
2019-08-11 15:17:48 +02:00
PKGREVISION= 5
CATEGORIES= www python
MASTER_SITES= http://static.moinmo.in/files/
MAINTAINER= pkgsrc-users@NetBSD.org
2017-09-04 20:08:18 +02:00
HOMEPAGE= https://moinmo.in/
COMMENT= MoinMoin, a Python clone of WikiWiki
LICENSE= gnu-gpl-v2
USE_LANGUAGES= # none
PYTHON_VERSIONS_ACCEPTED= 27 # not yet ported as of 1.9.7
Update to 1.9.7: 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-20 21:17:05 +01:00
Pkgsrc changes: --------------- - /usr/bin/env police Upstream Changes: ----------------- Version 1.9.6: 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. Fixes: * fix remote code execution vulnerability in twikidraw/anywikidraw action * fix path traversal vulnerability in AttachFile action * fix XSS issue, escape page name in rss link * escape user- or admin-defined css url * make taintfilename more secure * use a constant time str comparison function to prevent timing attacks * Attachment handler: catch all Zip-related errors Version 1.9.5: Fixes: * Security fix: fix virtual group bug in ACL evaluation. * Avoid crash if #refresh processing instruction is used without arguments. * Fix issue with non-ASCII textchas. * Xapian indexing: remove copy.copy() that crashed on Windows/IIS/isapi-wsgi after page save. * Fix dictionary file reading crash under Windows. * Work around crash of AdvancedSearch macro rendering caused by non-ascii mimetypes.types_map entries. * Added migration script for moin 1.8.9. * rss_rc: Fix diffs added in RSS with diffs=1 (now they correspond to item listed in feed and not just last page diffs). Links generated with ddiffs=1 also fixed. * rss_rc: fix double escaping issue. * rss_rc: respect show_names configuration option. * rss_rc: proper support of rename, revert, page creation. * modern/modernized theme: fix padding/width for editor preview * group/pagelinks formatters: avoid to create unnecessary output, redirect output of send_page call with the groups formatter, it must not be written to the output stream * rst parser: fix include and macro directives * wikisync: fix unicode pagename sending for python 2.7 httplib New features: * add a comment_required config option (default: False) to require a non-empty comment when saving a page * when a save error happens, show the editor again and highlight the error * rss_rc: several new options added: lines parameter gives ability to set maximum size of diffs showed in RSS. show_att parameter gives ability to show information aboout attachment-related items in RSS. page parameter gives ability to specify set of pages for which changes RSS feed should be generated. Configuration of defaults and limits can now be done via wiki configuration mechanism. * As soon as it is now possible to provide RSS for page change history, appropriate alternate link is now added for every page (controlled by rss_show_page_history_link configuration parameter). * Search: "no_highlight:" search query option provided for suppressing highlighting search results. * Search macros: new options for FullSearch, FullSearchCached and PageList available: * highlight_titles option controls highlighting of matches in search results provided by these macros. Default value is set in search_macro_highlight_titles configuration option) * highlight_pages option controls adding of highlight URL parameter to page links (so search term is highlighted when user goes to one of these pages via provided link) in search results. Default value is set in search_macro_highlight_pages configuration option. Usage of these options is disabled (via search_macro_parse_args configuration option) by default due to behavioural changes introduced in macro parameter parsing mechanism to support them. Related to http://moinmo.in/FeatureRequests/FullSearchResultsWithoutHighlight . Other changes: * Remove 4suite dependency for docbook formatter, use minidom (included in Python). * Upgraded FCKeditor to 2.6.8.
2013-01-03 19:54:38 +01:00
REPLACE_PYTHON= jabberbot/bot.py \
MoinMoin/version.py \
MoinMoin/filter/EXIF.py \
MoinMoin/i18n/msgfmt.py \
MoinMoin/i18n/tools/*.py \
MoinMoin/script/moin.py \
MoinMoin/script/old/*.py \
MoinMoin/script/old/xmlrpc-tools/*.py \
MoinMoin/script/migration/1050800.py \
MoinMoin/script/migration/1059997.py \
MoinMoin/script/migration/1059998.py \
MoinMoin/script/migration/1059999.py \
MoinMoin/script/migration/1089999.py \
MoinMoin/script/old/migration/*.py \
MoinMoin/support/difflib.py \
MoinMoin/support/tarfile.py \
MoinMoin/support/parsedatetime/*.py \
MoinMoin/support/xappy/*.py \
MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/py/*.py \
wiki/server/moin* \
wiki/server/test.wsgi
Update to 1.9.7: 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-20 21:17:05 +01:00
REPLACE_PERL= MoinMoin/web/static/htdocs/applets/FCKeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
REPLACE_PERL+= MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/connector.cgi
REPLACE_PERL+= MoinMoin/web/static/htdocs/applets/FCKeditor/editor/filemanager/connectors/perl/upload.cgi
2012-10-04 01:40:35 +02:00
PYTHON_SELF_CONFLICT= yes
.include "../../lang/python/distutils.mk"
.include "../../lang/python/application.mk"
.include "../../mk/bsd.pkg.mk"