aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Depend on release clang. Even 2.9 is sufficient so we don't need toBrooks Davis2011-12-051-4/+5
| | | | | | | | | | | make people drag in -devel. Someone ought to own this and I own most of the depends so grab it. Feature safe: yes Notes: svn path=/head/; revision=286933
* - Mark BROKEN on 9.X:Pav Lucistnik2011-12-051-0/+4
| | | | | | | | | | | | | | src/abgx360.c: In function 'sendcdb': src/abgx360.c:1815: error: 'struct scsi_sense_data' has no member named 'segment' src/abgx360.c:1816: error: 'struct scsi_sense_data' has no member named 'flags' src/abgx360.c:1817: error: 'struct scsi_sense_data' has no member named 'info' [..] Reported by: pointyhat Feature safe: yes Notes: svn path=/head/; revision=286932
* -update openocd from 0.4.0 -> 0.5.0Michael Scheidell2011-12-055-39/+138
| | | | | | | | | | | | | | -committers notes: patch modified to use userspace 'WITH_*' and not -oslevel 'USE_*', requested by gabor PR: ports/161989 Submitted by: maintainer Reviewed by: gabor Approved by: gabor(mentor) Feature safe: yes Notes: svn path=/head/; revision=286931
* The PostgreSQL Global Development Group today released updates for allPalle Girgensohn2011-12-0515-61/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | active branches of the PostgreSQL object-relational database system, including versions 9.1.2, 9.0.6, 8.4.10, 8.3.17 and 8.2.23. This release contains 52 fixes to version 9.1, and a smaller number of fixes to older versions, including: - Fix bugs in information_schema.referential_constraints view** - Correct collations for citext columns and indexes** - Prevent possible crash when joining to a scalar function - Prevent transitory data corruption of GIN indexes after a crash - Prevent data corruption on TOAST columns when copying data - Fix failures during hot standby startup - Correct another "variable not found in subplan target list" bug - Fix bug with sorting on aggregate expressions in windowing functions - Multiple bug fixes for pg_upgrade - Change Foreign Key creation order to better support self-referential keys** - Multiple bug fixes to CREATE EXTENSION - Ensure that function return type and data returned from PL/perl agree - Ensure that PL/perl strings are always UTF-8 - Assorted bug fixes for various Extensions - Updates to the time zone database, particularly to CST6 Changes marked with ** above require additional, post-update steps in order to fix all described issues. URL: http://www.postgresql.org/docs/current/static/release.html Also, fix a pthread problem in the FreeBSD port. [1] PR: 160580 [1] Feature safe: yes Notes: svn path=/head/; revision=286930
* Update dependency because korean/unfonts-ttf is split into -core and -extra.Hiroki Sato2011-12-051-2/+2
| | | | | | | | Spotted by: dougb Feature safe: yes Notes: svn path=/head/; revision=286929
* Update to 0.8.7hSteven Kreuzer2011-12-052-12/+4
| | | | | | | | | PR: ports/162998 Submitted by: Tacid <tacid@tacid.kiev.ua> Feature safe: yes Notes: svn path=/head/; revision=286928
* - Update to 1.23Sunpoet Po-Chuan Hsieh2011-12-052-4/+8
| | | | | | | | | | | - Update *_DEPENDS - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/Git-Repository/Changes Feature safe: yes Notes: svn path=/head/; revision=286927
* - Add missing {BUILD|RUN}_DEPENDS [1]Sunpoet Po-Chuan Hsieh2011-12-051-45/+60
| | | | | | | | | | | | | | - Add BUILD_DEPENDS - Add missing TEST_DEPENDS and remove bundled ones in Perl releases - Sort *_DEPENDS and OPTIONS - Cosmetic change - Bump PORTREVISION for dependency change Reported by: Rasmus Skaarup <mlist@gal.dk> [1] Feature safe: yes Notes: svn path=/head/; revision=286926
* - Update to 0.80Sunpoet Po-Chuan Hsieh2011-12-052-3/+5
| | | | | | | | | | - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/rpm-build-perl/Changes Feature safe: yes Notes: svn path=/head/; revision=286925
* update to 20111128 (zpaq 4.02)Brendan Fabeny2011-12-052-4/+4
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286924
* Update to 2.4.3.Anton Berezin2011-12-056-6/+10
| | | | | | | | Changes: http://search.cpan.org/dist/Chart/README Feature safe: yes Notes: svn path=/head/; revision=286923
* - Update to 2.35Sunpoet Po-Chuan Hsieh2011-12-052-3/+4
| | | | | | | | | | | Changes: http://search.cpan.org/dist/Mojolicious/Changes PR: ports/163008 Submitted by: sunpoet (myself) Approved by: Murilo Opsfelder Araujo <mopsfelder@gmail.com> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=286922
* - Add p5-DBIx-Safe 1.2.5Sunpoet Po-Chuan Hsieh2011-12-055-0/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The purpose of DBIx::Safe is to give controlled, limited access to an application, rather than simply passing it a raw database handle through DBI. DBIx::Safe acts as a wrapper to the database, by only allowing through the commands you tell it to. It filters all things related to the database handle - methods and attributes. The typical usage is for your application to create a database handle via a normal DBI call to new(), then pass that to DBIx::Safe->new(), which will return you a DBIx::Safe object. After specifying exactly what is and what is not allowed, you can pass the object to the untrusted application. The object will act very similar to a DBI database handle, and in most cases can be used interchangeably. By default, nothing is allowed to run at all. There are many things you can control. You can specify which SQL commands are allowed, by indicating the first word in the SQL statement (e.g. 'SELECT'). You can specify which database methods are allowed to run (e.g. 'ping'). You can specify a regular expression that allows matching SQL statements to run (e.g. 'qr{SET TIMEZONE}'). You can specify a regular expression that is NOT allowed to run (e.g. qr(UPDATE xxx}). Finally, you can indicate which database attributes are allowed to be read and changed (e.g. 'PrintError'). For all of the above, there are matching methods to remove them as well. WWW: http://search.cpan.org/dist/DBIx-Safe/ Feature safe: yes Notes: svn path=/head/; revision=286921
* -Upgrrade to latest version 2.14.0Michael Scheidell2011-12-052-3/+3
| | | | | | | | | PR: 163042 Approved by: gabor(mentor) Feature safe: yes Notes: svn path=/head/; revision=286920
* -Update ports mail/assp to latest version 1.9.1.8Michael Scheidell2011-12-054-7/+14
| | | | | | | | | | | -Also, fix some permissions in install. PR: 161965 Approved by: gabor(mentor) Feature safe: yes Notes: svn path=/head/; revision=286919
* Fix link against libumfpack.Maho Nakata2011-12-051-0/+2
| | | | | | | | | | | Bump port revision. PR: 162988 Submitted by: Jason Bacon <jwbacon@tds.net> Feature safe: yes Notes: svn path=/head/; revision=286918
* - Add p5-String-ToIdentifier-EN 0.06Sunpoet Po-Chuan Hsieh2011-12-055-0/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | String::ToIdentifier::EN provides a utility method, "to_identifier" for converting an arbitrary string into a readable representation using the ASCII subset of \w for use as an identifier in a computer program. The intent is to make unique identifier names from which the content of the original string can be easily inferred by a human just by reading the identifier. If you need the full set of \w including Unicode, see the subclass String::ToIdentifier::EN::Unicode. Currently, this process is one way only, and will likely remain this way. The default is to create camelCase identifiers, or you may pass in a separator char of your choice such as _. Binary char groups will be separated by _ even in camelCase identifiers to make them easier to read, e.g.: foo_2_0xFF_Bar. WWW: http://search.cpan.org/dist/String-ToIdentifier-EN/ Feature safe: yes Notes: svn path=/head/; revision=286917
* Fix the build when an older version of this port isAnton Berezin2011-12-052-2/+11
| | | | | | | | | | already installed. Bump PORTREVISION. Submitted by: Armin Pirkovitsch <armin@frozen-zone.org> Feature safe: yes Notes: svn path=/head/; revision=286916
* - Update to 0.39Sunpoet Po-Chuan Hsieh2011-12-052-6/+3
| | | | | | | | Changes: http://search.cpan.org/dist/Excel-Writer-XLSX/Changes Feature safe: yes Notes: svn path=/head/; revision=286915
* - Update to 1.01Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | | | | | Changes: http://search.cpan.org/dist/WebService-Dropbox/Changes PR: ports/163075 Submitted by: sunpoet (myself) Approved by: Lung-Pin Chang <changlp@cs.nctu.edu.tw> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=286914
* - Update to 1.15Sunpoet Po-Chuan Hsieh2011-12-053-10/+19
| | | | | | | | | | - Add TEST_DEPENDS Changes: http://search.cpan.org/dist/HTTP-Body/Changes Feature safe: yes Notes: svn path=/head/; revision=286913
* - Update to 2.045Sunpoet Po-Chuan Hsieh2011-12-052-5/+5
| | | | | | | | Changes: http://search.cpan.org/dist/IO-Compress-Lzop/Changes Feature safe: yes Notes: svn path=/head/; revision=286912
* - Update to 2.045Sunpoet Po-Chuan Hsieh2011-12-052-7/+7
| | | | | | | | Changes: http://search.cpan.org/dist/IO-Compress-Lzma/Changes Feature safe: yes Notes: svn path=/head/; revision=286911
* - Update to 2.045Sunpoet Po-Chuan Hsieh2011-12-052-5/+5
| | | | | | | | Changes: http://search.cpan.org/dist/IO-Compress-Lzf/Changes Feature safe: yes Notes: svn path=/head/; revision=286910
* - Update to 2.045Sunpoet Po-Chuan Hsieh2011-12-053-7/+11
| | | | | | | | Changes: http://search.cpan.org/dist/IO-Compress/Changes Feature safe: yes Notes: svn path=/head/; revision=286909
* - Update to 2.045Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | | Changes: http://search.cpan.org/dist/Compress-Raw-Zlib/Changes Feature safe: yes Notes: svn path=/head/; revision=286908
* - Update to 2.045Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | | Changes: http://search.cpan.org/dist/Compress-Raw-Lzma/Changes Feature safe: yes Notes: svn path=/head/; revision=286907
* - Update to 2.045Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | | Changes: http://search.cpan.org/dist/Compress-Raw-Bzip2/Changes Feature safe: yes Notes: svn path=/head/; revision=286906
* - Update to 0.7.4Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | | Changes: https://github.com/lsegal/yard/blob/master/ChangeLog Feature safe: yes Notes: svn path=/head/; revision=286905
* - Update to 0.82Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | | | | | | Changes: - Removed old Changelog file appended at the end as oldest changes. - Enable decoding of ICMP extensions for MPLS for curses and report interfaces. Use the -e flag or press 'e' to enable it. Feature safe: yes Notes: svn path=/head/; revision=286904
* Add mingw32-openssl, the OpenSSL library cross-compiled for MinGW32.Akinori MUSHA2011-12-055-0/+150
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286903
* - Update to 1.07Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | | Changes: http://search.cpan.org/dist/MouseX-NativeTraits/Changes Feature safe: yes Notes: svn path=/head/; revision=286902
* - Update and sort *_DEPENDS: p5-Encode is only required by Perl releases ↵Sunpoet Po-Chuan Hsieh2011-12-051-6/+13
| | | | | | | | | | | | | | prior to 5.10.0 - Bump PORTREVISION for dependency change PR: ports/162968 Submitted by: sunpoet (myself) Approved by: sahil (maintainer) Feature safe: yes Notes: svn path=/head/; revision=286901
* - Update to 1.00 [1]Sunpoet Po-Chuan Hsieh2011-12-053-12/+11
| | | | | | | | | | | | - Update RUN_DEPENDS: Encode is already in all supported Perl releases PR: ports/162969 Submitted by: sunpoet (myself) Approved by: Lung-Pin Chang <changlp@cs.nctu.edu.tw> (maintainer) [1] Feature safe: yes Notes: svn path=/head/; revision=286900
* - Fix X11 libraries dependency handling: this is a better fix to ports/153198Sunpoet Po-Chuan Hsieh2011-12-051-8/+17
| | | | | | | | | | | | | | | - Add OPTIONS X11: build pwsafe with X11 libraries (default off) - Bump PORTREVISION for dependency change - Cosmetic change PR: ports/162649 Reported by: Jeremie Le Hen <jeremie@le-hen.org> Submitted by: sunpoet (myself) Approved by: maintainer (timeout, 16 days) Feature safe: yes Notes: svn path=/head/; revision=286899
* - Re-enable OPTIONS GLSunpoet Po-Chuan Hsieh2011-12-051-7/+7
| | | | | | | | | - Bump PORTREVISION for dependency change Feature safe: yes Notes: svn path=/head/; revision=286898
* - Update to 0.66Sunpoet Po-Chuan Hsieh2011-12-056-45/+23
| | | | | | | | | | | | - While I'm here, add missing trailing slash to WWW Changes: http://search.cpan.org/dist/OpenGL/Release_Notes PR: ports/161534 Submitted by: Zhihao Yuan <lichray@gmail.com> Feature safe: yes Notes: svn path=/head/; revision=286897
* - Add patch to support using PACKAGEROOT instead of PACKAGESITESteve Wills2011-12-052-1/+21
| | | | | | | | | PR: ports/156629 Submitted by: "Douglas K. Rand" <rand@meridian-enviro.com> Feature safe: yes Notes: svn path=/head/; revision=286896
* - Connect www/node04Sunpoet Po-Chuan Hsieh2011-12-051-0/+1
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286895
* - Update CONFLICTSSunpoet Po-Chuan Hsieh2011-12-051-2/+3
| | | | | | | | | | | - Cosmetic change - Bump PORTREVISION for package change Discussed with: Jin-Sih Lin <linpct@gmail.com> (maintainer, via IRC) Feature safe: yes Notes: svn path=/head/; revision=286894
* - Mark IGNORE for node 0.6 branchSunpoet Po-Chuan Hsieh2011-12-051-2/+5
| | | | | | | | | | | - Update CONFLICTS - Bump PORTREVISION for package change Discussed with: Jin-Sih Lin <linpct@gmail.com> (maintainer, via IRC) Feature safe: yes Notes: svn path=/head/; revision=286893
* - Update to 0.6.4Sunpoet Po-Chuan Hsieh2011-12-057-69/+632
| | | | | | | | | | | | - Update CONFLICTS Changes: https://github.com/joyent/node/blob/master/ChangeLog PR: ports/163016 Submitted by: Jin-Sih Lin <linpct@gmail.com> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=286892
* - Update to 1.00Sunpoet Po-Chuan Hsieh2011-12-052-9/+8
| | | | | | | | | | | | | - Add LICENSE Changes: http://search.cpan.org/dist/DateTime-Calendar-Chinese/Changes PR: ports/162972 Submitted by: sunpoet (myself) Approved by: TERAMOTO Masahiro <markun@onohara.to> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=286891
* - Update to 1.00Sunpoet Po-Chuan Hsieh2011-12-052-13/+8
| | | | | | | | | | | | | - Add LICENSE Changes: http://search.cpan.org/dist/DateTime-Event-Chinese/Changes PR: ports/162971 Submitted by: sunpoet (myself) Approved by: TERAMOTO Masahiro <markun@onohara.to> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=286890
* - Update to 2011.12.05Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286889
* - Update to 2011.12.04Sunpoet Po-Chuan Hsieh2011-12-056-9/+9
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286888
* - Update to 20111202Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286887
* - Update to 20111204Sunpoet Po-Chuan Hsieh2011-12-052-3/+3
| | | | | | | Feature safe: yes Notes: svn path=/head/; revision=286886
* - Fix iconv dependencySteve Wills2011-12-052-2/+4
| | | | | | | | | PR: ports/162298 Submitted by: TAKATSU Tomonari <tota@freebsd.org> Feature safe: yes Notes: svn path=/head/; revision=286885
* - update to 0.17.0;Eitan Adler2011-12-052-5/+7
| | | | | | | | | | | | | | | | | - change MAINTAINER address; - add devel/pipestatus to RUN_DEPENDS (used by lmdbg-sym and lmdbg-sort); - don't link with devel/libexecinfo (always use its own implementation of backtrace). Changes: - This version adds a lot of improvements and fixes in manual pages, new capabilities in lmdbg, lmdbg-run, and lmdbg-sym, and minor fixes to lmdbg-stat. - lmdbg is now a meta tool which is able to do many more things, not just find memory leaks. PR: ports/163068 Submitted by: Mikolaj Golub <to.my.trociny@gmail.com> (maintainer) Feature safe: yes Notes: svn path=/head/; revision=286884