pugixml is a light-weight C++ XML processing library. It features:
* DOM-like interface with rich traversal/modification capabilities
* Extremely fast non-validating XML parser which constructs the DOM tree from an
XML file/buffer
* XPath 1.0 implementation for complex data-driven tree queries
* Full Unicode support with Unicode interface variants and automatic encoding
conversions
WWW: http://pugixml.com/
PR: 192634
Submitted by: ybungalobill@gmail.com
Utility to administer the rc.conf system configuration file.
rcadm features:
* listing current settings
* enabling/disabling services
* setting and getting arbitrary variables
WWW: https://github.com/skoef/rcadm
PR: 179017
Submitted by: Reinier@flash.skoef.net
crash of gdb.
When the libthr is loaded by gdb, the thread support want to add FreeBSD
specific information to the current thread. Doing this, it cleans the
thread list and re-add the current thread with the updated information
(actually, the LWP id).
This operation call a free of the struct thread_info (clean/init the
thread list) and a malloc of the same struct (add the current thread).
The problem is that a pointer to the struct thread_info is stored in
another struct (about the execution context) and it's not updatable.
On FreeBSD 9.x i386 systems, the malloc return a new pointer; then the
execution context contains a broken pointer.
On all other platform, the malloc return the same pointer and the
execution context stays coherent.
This patch avoids to clean the thread list and to re-add the thread; it
just update thread information of the current thread.
PR: 192890
Submitted by: luca.pizzamiglio@gmail.com (maintainer)
Rename a few variables to avoid confusion with this new helper
Requested by: koobs
Reviewed by: mat
With hat: portmgr
Differential revision: https://reviews.freebsd.org/D665
On August 20, the Django team issued new security releases addressing
multiple vulnerabilities [1]. Update all of our Django ports accordingly:
- www/py-django: Update to 1.6.6
- www/py-django14: Update to 1.4.14
- www/py-django15: Update to 1.5.9
- www/py-django-devel: Update to 1.7 release candidate 3
While I'm here:
- Switch to USES=python and USE_PYTHON=<features>
- Deprecate OPTIONSFILE
- Add CPE information
- Add LICENSE_FILE
- Tweak HTMLDOCS option description
And for www/py-django-devel:
- Switch to GITHUB for distribution files
[1] https://www.djangoproject.com/weblog/2014/aug/20/security/
Approved by: lwhsu (maintainer)
MFH: 2014Q3
Security: 3c5579f7-294a-11e4-99f6-00e0814cab4e
Thanks for looking after this port, Stephen. While here, I'll make
some cosmetic realignments and convert EXTRACT_SUFX to USES.
PR: 192891
Submitted by: maintainer (Stephen Fisher)
- Take Maintainership
- Enable STAGE support
- Tweak MASTER_SITES https -> http (portlint)
- Add LICENSE and LICENSE_FILE
- Deprecate USE_AUTOTOOLS for libtool (-> USES)
- Sort USES and OPTIONS
- Use OPTIONS helpers as much as possible for now [1]
- Add --enable-static to CONFIGURE_ARGS to retain the static lib
- Assign and Use ETCDIR rather than hardcoding
- Use the install-strip install target
- Update pkg-plist, use @sample and other goodies
While I'm here, bump dependent ports since our SHLIB major version has
changed
[1] https://reviews.freebsd.org/D665
Approved by: portmgr (implicit, bump unstaged port)
The maintainer has not been responsive and multiple PRs have timed out.
Convert USE_PYTHON=yes to USES=python:2 as this application will not
run on Python 3.x
PR: 187408
Submitted by: corsmith (gmail)
Approved by: maintainer timeout
.la files after that so pkg-plist ends up containing .la files that don't
exist when the package is created.
Move the patch-lafiles target in front of post-stage such that these ports
can create their pkg-plist in post-stage.
PR: 192753
Approved by: portmgr (antoine)
Add an option to the menu to control whether the tuning info and build
logs are installed. install these files uncompressed plain text instead
of compressed tarballs
PR: 192823
Submitted by: Don Lewis