1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-27 05:10:36 +00:00
Commit Graph

268799 Commits

Author SHA1 Message Date
Pav Lucistnik
1e2c257b6c - Mark BROKEN on FreeBSD 9.X:
k3bscsicommand_bsd.cpp:96: error: 'struct scsi_sense_data' has no member named 'flags'
  k3bscsicommand_bsd.cpp:97: error: 'struct scsi_sense_data' has no member named 'add_sense_code'
  k3bscsicommand_bsd.cpp:98: error: 'struct scsi_sense_data' has no member named 'add_sense_code_qual'
  [..]

Reported by:	pointyhat
Feature safe:	yes
2011-12-05 17:29:39 +00:00
Brooks Davis
f11a039d00 Depend on release clang. Even 2.9 is sufficient so we don't need to
make people drag in -devel.

Someone ought to own this and I own most of the depends so grab it.

Feature safe:	yes
2011-12-05 17:25:35 +00:00
Pav Lucistnik
d472a4c0c8 - Mark BROKEN on 9.X:
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
2011-12-05 17:24:21 +00:00
Michael Scheidell
bd26a8c590 -update openocd from 0.4.0 -> 0.5.0
-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
2011-12-05 17:11:24 +00:00
Palle Girgensohn
c87711cb50 The PostgreSQL Global Development Group today released updates for all
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
2011-12-05 16:45:14 +00:00
Hiroki Sato
3ef65bc73b Update dependency because korean/unfonts-ttf is split into -core and -extra.
Spotted by:	dougb
Feature safe:	yes
2011-12-05 16:20:37 +00:00
Steven Kreuzer
2c84f8820c Update to 0.8.7h
PR:		ports/162998
Submitted by:	Tacid <tacid@tacid.kiev.ua>
Feature safe:	yes
2011-12-05 16:08:42 +00:00
Sunpoet Po-Chuan Hsieh
8db6e34229 - Update to 1.23
- Update *_DEPENDS
- Add TEST_DEPENDS

Changes:	http://search.cpan.org/dist/Git-Repository/Changes
Feature safe:	yes
2011-12-05 15:18:02 +00:00
Sunpoet Po-Chuan Hsieh
13e9b663c6 - Add missing {BUILD|RUN}_DEPENDS [1]
- 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
2011-12-05 14:19:37 +00:00
Sunpoet Po-Chuan Hsieh
924a213f3c - Update to 0.80
- Add TEST_DEPENDS

Changes:	http://search.cpan.org/dist/rpm-build-perl/Changes
Feature safe:	yes
2011-12-05 14:08:41 +00:00
Brendan Fabeny
d4fa92aaeb update to 20111128 (zpaq 4.02)
Feature safe:	yes
2011-12-05 13:57:51 +00:00
Anton Berezin
c65f804c62 Update to 2.4.3.
Changes:	http://search.cpan.org/dist/Chart/README
Feature safe:	yes
2011-12-05 13:45:42 +00:00
Sunpoet Po-Chuan Hsieh
a43a36eb88 - Update to 2.35
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
2011-12-05 12:49:08 +00:00
Sunpoet Po-Chuan Hsieh
dcb485b324 - Add p5-DBIx-Safe 1.2.5
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
2011-12-05 11:44:19 +00:00
Michael Scheidell
ef0637a389 -Upgrrade to latest version 2.14.0
PR:		163042
Approved by:	gabor(mentor)
Feature safe:	yes
2011-12-05 11:41:13 +00:00
Michael Scheidell
fb529b067a -Update ports mail/assp to latest version 1.9.1.8
-Also, fix some permissions in install.

PR:		161965
Approved by:	gabor(mentor)
Feature safe:	yes
2011-12-05 11:37:23 +00:00
Maho Nakata
3aff64efa5 Fix link against libumfpack.
Bump port revision.

PR:		162988
Submitted by:	Jason Bacon <jwbacon@tds.net>
Feature safe:	yes
2011-12-05 11:36:44 +00:00
Sunpoet Po-Chuan Hsieh
5468d240d0 - Add p5-String-ToIdentifier-EN 0.06
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
2011-12-05 11:32:45 +00:00
Anton Berezin
2098c2e1ed Fix the build when an older version of this port is
already installed.  Bump PORTREVISION.

Submitted by:	Armin Pirkovitsch <armin@frozen-zone.org>
Feature safe:	yes
2011-12-05 09:49:09 +00:00
Sunpoet Po-Chuan Hsieh
85c62a657a - Update to 0.39
Changes:	http://search.cpan.org/dist/Excel-Writer-XLSX/Changes
Feature safe:	yes
2011-12-05 09:18:57 +00:00
Sunpoet Po-Chuan Hsieh
60e792be54 - Update to 1.01
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
2011-12-05 09:16:28 +00:00
Sunpoet Po-Chuan Hsieh
e21c2ce6a9 - Update to 1.15
- Add TEST_DEPENDS

Changes:	http://search.cpan.org/dist/HTTP-Body/Changes
Feature safe:	yes
2011-12-05 07:13:09 +00:00
Sunpoet Po-Chuan Hsieh
261b928079 - Update to 2.045
Changes:	http://search.cpan.org/dist/IO-Compress-Lzop/Changes
Feature safe:	yes
2011-12-05 05:43:52 +00:00
Sunpoet Po-Chuan Hsieh
c336cdc0b0 - Update to 2.045
Changes:	http://search.cpan.org/dist/IO-Compress-Lzma/Changes
Feature safe:	yes
2011-12-05 05:43:51 +00:00
Sunpoet Po-Chuan Hsieh
0e82a61da7 - Update to 2.045
Changes:	http://search.cpan.org/dist/IO-Compress-Lzf/Changes
Feature safe:	yes
2011-12-05 05:43:49 +00:00
Sunpoet Po-Chuan Hsieh
bd9bc41c20 - Update to 2.045
Changes:	http://search.cpan.org/dist/IO-Compress/Changes
Feature safe:	yes
2011-12-05 05:43:48 +00:00
Sunpoet Po-Chuan Hsieh
3656823c22 - Update to 2.045
Changes:	http://search.cpan.org/dist/Compress-Raw-Zlib/Changes
Feature safe:	yes
2011-12-05 05:43:46 +00:00
Sunpoet Po-Chuan Hsieh
c0a149c0be - Update to 2.045
Changes:	http://search.cpan.org/dist/Compress-Raw-Lzma/Changes
Feature safe:	yes
2011-12-05 05:43:45 +00:00
Sunpoet Po-Chuan Hsieh
77c9bd4a76 - Update to 2.045
Changes:	http://search.cpan.org/dist/Compress-Raw-Bzip2/Changes
Feature safe:	yes
2011-12-05 05:43:43 +00:00
Sunpoet Po-Chuan Hsieh
57b574dd90 - Update to 0.7.4
Changes:	https://github.com/lsegal/yard/blob/master/ChangeLog
Feature safe:	yes
2011-12-05 05:15:59 +00:00
Sunpoet Po-Chuan Hsieh
b514e09edf - Update to 0.82
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
2011-12-05 05:14:43 +00:00
Akinori MUSHA
e06433501a Add mingw32-openssl, the OpenSSL library cross-compiled for MinGW32.
Feature safe:	yes
2011-12-05 05:14:26 +00:00
Sunpoet Po-Chuan Hsieh
f425f4ddd7 - Update to 1.07
Changes:	http://search.cpan.org/dist/MouseX-NativeTraits/Changes
Feature safe:	yes
2011-12-05 04:48:16 +00:00
Sunpoet Po-Chuan Hsieh
8373e96116 - Update and sort *_DEPENDS: p5-Encode is only required by Perl releases prior to 5.10.0
- Bump PORTREVISION for dependency change

PR:		ports/162968
Submitted by:	sunpoet (myself)
Approved by:	sahil (maintainer)
Feature safe:	yes
2011-12-05 03:39:17 +00:00
Sunpoet Po-Chuan Hsieh
4256d9c44c - Update to 1.00 [1]
- 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
2011-12-05 03:37:11 +00:00
Sunpoet Po-Chuan Hsieh
4f13830aad - Fix X11 libraries dependency handling: this is a better fix to ports/153198
- 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
2011-12-05 03:30:31 +00:00
Sunpoet Po-Chuan Hsieh
52573d4e57 - Re-enable OPTIONS GL
- Bump PORTREVISION for dependency change

Feature safe:	yes
2011-12-05 03:26:52 +00:00
Sunpoet Po-Chuan Hsieh
bfa56b3a7e - Update to 0.66
- 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
2011-12-05 03:24:27 +00:00
Steve Wills
1c17beb762 - Add patch to support using PACKAGEROOT instead of PACKAGESITE
PR:		ports/156629
Submitted by:	"Douglas K. Rand" <rand@meridian-enviro.com>
Feature safe:	yes
2011-12-05 03:23:43 +00:00
Sunpoet Po-Chuan Hsieh
fd83281f5c - Connect www/node04
Feature safe:	yes
2011-12-05 03:20:26 +00:00
Sunpoet Po-Chuan Hsieh
a5e562b8d2 - Update CONFLICTS
- Cosmetic change
- Bump PORTREVISION for package change

Discussed with:	Jin-Sih Lin <linpct@gmail.com> (maintainer, via IRC)
Feature safe:	yes
2011-12-05 03:19:05 +00:00
Sunpoet Po-Chuan Hsieh
ef9244d7be - Mark IGNORE for node 0.6 branch
- Update CONFLICTS
- Bump PORTREVISION for package change

Discussed with:	Jin-Sih Lin <linpct@gmail.com> (maintainer, via IRC)
Feature safe:	yes
2011-12-05 03:18:01 +00:00
Sunpoet Po-Chuan Hsieh
88856679ab - Update to 0.6.4
- 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
2011-12-05 03:16:48 +00:00
Sunpoet Po-Chuan Hsieh
bddbaf89b4 - Update to 1.00
- 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
2011-12-05 03:15:11 +00:00
Sunpoet Po-Chuan Hsieh
21e0afdd1f - Update to 1.00
- 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
2011-12-05 03:14:46 +00:00
Sunpoet Po-Chuan Hsieh
14ae3beaf8 - Update to 2011.12.05
Feature safe:	yes
2011-12-05 03:11:03 +00:00
Sunpoet Po-Chuan Hsieh
83387cbe95 - Update to 2011.12.04
Feature safe:	yes
2011-12-05 03:10:47 +00:00
Sunpoet Po-Chuan Hsieh
6a1acb05a1 - Update to 20111202
Feature safe:	yes
2011-12-05 03:10:06 +00:00
Sunpoet Po-Chuan Hsieh
f6484c746f - Update to 20111204
Feature safe:	yes
2011-12-05 03:09:38 +00:00
Steve Wills
b93faaef06 - Fix iconv dependency
PR:		ports/162298
Submitted by:	TAKATSU Tomonari <tota@freebsd.org>
Feature safe:	yes
2011-12-05 03:08:27 +00:00