1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-04 01:48:54 +00:00
Commit Graph

265246 Commits

Author SHA1 Message Date
Martin Matuska
34592d42fa Update to 0.7.6 2011-10-10 10:04:28 +00:00
Martin Matuska
3877ad0a33 Update x264 to 0.116.2076 2011-10-10 10:04:07 +00:00
Sergey Matveychuk
465bec37c0 - Update to 1.3.4
Submitted by:	maintainer
Feature safe:	Yes
2011-10-10 09:43:21 +00:00
Eygene Ryabinkin
4be6594a53 Remove duplicated port
HTE is already in devel/hte

Spotted by: Aldis Berjoza
Pointyhat to: rea
2011-10-10 08:54:15 +00:00
Alexey Dokuchaev
46790d100b Fix a few more textual glitches and handful of typos. 2011-10-10 08:27:31 +00:00
Romain Tartière
ddf22a97be Unbreak after devel/gdb update. 2011-10-10 08:09:01 +00:00
Martin Matuska
4e6b1f415e Update to 0.118.2085 2011-10-10 08:08:02 +00:00
Romain Tartière
b43083d419 Update to 2.8. 2011-10-10 08:02:54 +00:00
Romain Tartière
ea070397c1 Vala Toys for gEdit is an experimental collection of plugins that extends the
gEdit editor to make it a better programmer editor for the Vala language.

WWW:	http://code.google.com/p/vtg/
2011-10-10 08:01:18 +00:00
Alexey Dokuchaev
c4e7dd47cc - Try to start reason text with a capital letter for aesthetic reasons
- Prefer official names for FreeBSD, PostgreSQL, Xfce (probably more need to
  be fixed accordingly) where appropriate
2011-10-10 07:11:48 +00:00
Wen Heping
ac63674563 - Update WWW
Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (maintainer, via email)
Thanks to:	sunpoet@
2011-10-10 06:50:59 +00:00
Wen Heping
4f80fc43c1 RestrictedPython provides a restricted execution environment for Python,
e.g. for running untrusted code.

WWW: http://pypi.python.org/pypi/RestrictedPython

Submitted by:   Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via GitHub)
2011-10-10 06:48:19 +00:00
Martin Matuska
8bb3d36593 Update to 1.1.0 2011-10-10 06:44:09 +00:00
Martin Matuska
4292ddbbf9 Update to 1.1.1 2011-10-10 06:44:00 +00:00
Alexey Dokuchaev
f2ee9fe4ea - Consistently use "Looks like abandonware, no more public distfiles" phrase
throughout the file
- Pluralize the word `month' where applicable
2011-10-10 06:21:56 +00:00
Alexey Dokuchaev
bca84f3ceb - Fix a bunch of identical erroneous phrases
- Strip trailing dots from a few lines (and put one back I've previously
  wrongly removed in a similar raid)
- Reduce excessive whitespace in several places
2011-10-10 05:20:56 +00:00
Frederic Culot
39cd98a877 - Update to 4.2.9
PR:		ports/161377
Submitted by:	Umeno Takashi <umeno@rr.iij4u.or.jp> (maintainer)
2011-10-10 05:10:38 +00:00
Dirk Meyer
421acf2910 note removal of databases/ruby-pg databases/rubygem-postgres databases/ruby-postgres 2011-10-10 04:44:00 +00:00
Dirk Meyer
a802fbb043 - retire ports 2011-10-10 04:40:31 +00:00
Dirk Meyer
c6460cea5a - disconnect ruby-pg rubygem-postgres ruby-postgres 2011-10-10 04:38:50 +00:00
Sunpoet Po-Chuan Hsieh
b16b930ff6 - Fix build with various python releases (2.4-2.7) and berkeley db versions (4.x-5.x) 2011-10-10 04:05:14 +00:00
Sunpoet Po-Chuan Hsieh
d0d16499ad - Update to 1.24
- Add BUILD_DEPENDS
- Remove duplicated PERL_CONFIGURE
- Pet portlint

Changes:	http://search.cpan.org/dist/MIME-Lite-HTML/Changes
PR:		ports/161450
Submitted by:	sunpoet (myself)
Approved by:	chifeng <chifeng@gmail.com> (maintainer)
2011-10-10 04:04:18 +00:00
Sunpoet Po-Chuan Hsieh
113073539d - Update to 0.97
Changes:	http://search.cpan.org/dist/Mouse/Changes
2011-10-10 03:38:04 +00:00
Sunpoet Po-Chuan Hsieh
473c176599 - Add p5-Tk-Role-Dialog 1.112380
Tk::Role::Dialog is meant to be used as a Moose role to be composed for easy Tk
dialogs creation.

It will create a new toplevel with a title, and possibly a header as well as
some buttons.

One can create the middle part of the dialog by providing a _build_gui() method,
that will receive a Tk::Frame where widgets are supposed to be placed.

The attributes (see below) can be either defined as defaults using the
_build_attr() methods, or passed arguments to the constructor call. The only
mandatory attribute is parent, but you'd better provide some other attributes if
you want your dialog to be somehow usable! :-)

WWW: http://search.cpan.org/dist/Tk-Role-Dialog/
2011-10-10 03:27:37 +00:00
Sunpoet Po-Chuan Hsieh
a7a66ee9ab - Add p5-Tk-Action 1.093390
Menu entries are often also available in toolbars or other widgets. And
sometimes, we want to enable or disable a given action, and this means having to
update everywhere this action is allowed.

This module helps managing actions in a Tk GUI: just create a new object,
associate some widgets and bindings with add_widget() and then de/activate the
whole action at once with enable() or disable().

WWW: http://search.cpan.org/dist/Tk-Action/
2011-10-10 03:26:26 +00:00
Sunpoet Po-Chuan Hsieh
201155b913 - Add p5-Tk-Sugar 1.093190
Tk is a great graphical toolkit to write desktop applications. However, one can
get bothered with the constant typing of quotes and options. Tk::Sugar provides
handy subs for common options used when programming Tk.

Benefits are obvious:
- Reduced typing: The constant need to type => and '' is fine for one-off cases,
  but the instant you start using Tk it starts to get annoying.
- More compact statements: Reduces much of the redundant typing in most cases,
  which makes your life easier, and makes it take up less visual space, which
  makes it faster to read.
- No string worries: Strings are often problematic, since they aren't checked at
  compile-time. Sometimes it makes spotting an error a difficult task. Using
  this alleviates that worry.

WWW: http://search.cpan.org/dist/Tk-Sugar/
2011-10-10 03:25:19 +00:00
Sunpoet Po-Chuan Hsieh
2d9564737d - Add p5-Tk-Role-HasWidgets 1.112380
When programming Tk, it's almost always a good idea to keep a reference to the
widgets that you created in the interface. Most of the time, a simple hash is
enough; but it is usually wrapped up in methods to make the hash private to the
window object. And of course, those methods are duplicated in all modules, under
a form or another.

Since duplication is bad, this module implements a Moose role implementing those
methods once and forever. This implies that your class is using Moose in order
to consume the role.

WWW: http://search.cpan.org/dist/Tk-Role-HasWidgets/
2011-10-10 03:23:56 +00:00
Sunpoet Po-Chuan Hsieh
91ea415cb5 - Add p5-Tk-Pod 0.9939
Tk::Pod is a simple Pod browser with hypertext capabilities in a Toplevel
widget.

WWW: http://search.cpan.org/dist/Tk-Pod/
2011-10-10 03:21:33 +00:00
Sunpoet Po-Chuan Hsieh
2df4f35b0f - Update to 20111003 2011-10-10 03:14:39 +00:00
Sunpoet Po-Chuan Hsieh
c3ae8dbcfe - Update to 2011.10.10 2011-10-10 02:53:42 +00:00
Sunpoet Po-Chuan Hsieh
17dd694ce0 - Update to 2011.10.09 2011-10-10 02:53:20 +00:00
Sunpoet Po-Chuan Hsieh
b59fc3f9dd - Update to 20111009 2011-10-10 02:51:59 +00:00
Sunpoet Po-Chuan Hsieh
c1f649b1be - Update to 1.99
- Add CPAN as primary WWW

Changes:	http://search.cpan.org/dist/Mojolicious/Changes
PR:		ports/161449
Submitted by:	sunpoet (myself)
Approved by:	Murilo Opsfelder Araujo <mopsfelder@gmail.com> (maintainer)
2011-10-10 02:50:46 +00:00
Wen Heping
b6f3573e37 RestrictedPython provides a restricted execution environment for Python,
e.g. for running untrusted code.

WWW: http://pypi.python.org/pypi/ExtensionClass

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via GitHub)
2011-10-10 02:46:28 +00:00
Wen Heping
03a5ea3e02 - update to 2.9.0
- remove stale mastersite, update WWW
- correct comment
- remove WRKSRC (DISTNAME is sufficient)
- strict python versions
- add license (ZPL21)

PR:		ports/160982
Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru>
2011-10-10 02:38:39 +00:00
Wen Heping
de399c166e - Update to 0.7
ChangeLog: http://cpansearch.perl.org/src/RBUELS/Bio-GFF3-0.7/Changes
2011-10-10 02:33:51 +00:00
Wen Heping
6ed6211ee9 - Update to 0.22
ChangeLog: http://10.155.85.226/tb/logs/9.0-FreeBSD/p5-Statistics-R-0.22.log
2011-10-10 02:29:39 +00:00
Sunpoet Po-Chuan Hsieh
a94048b413 - Add p5-Unicode-Collate 0.80
Unicode::Collate is an implementation of Unicode Technical Standard #10 (a.k.a.
UTS #10) - Unicode Collation Algorithm (a.k.a. UCA).

WWW: http://search.cpan.org/dist/Unicode-Collate/
2011-10-10 01:01:06 +00:00
Sunpoet Po-Chuan Hsieh
4450c166aa - Bump PORTREVISION for dependency change 2011-10-10 00:58:49 +00:00
Sunpoet Po-Chuan Hsieh
7e6def12b4 - Update MASTER_SITES
- Add LICENSE
- Remove textproc/py-xml from *_DEPENDS
- Change USE_PYTHON to 2.5+
- Update WWW

PR:		ports/161453
Submitted by:	Junji NAKANISHI <jun-g@daemonfreaks.com> (maintainer)
2011-10-10 00:57:30 +00:00
Sunpoet Po-Chuan Hsieh
4213fa7c3d - Update to 2.2
Changes:	http://codespeak.net/svn/iCalendar/trunk/CHANGES.txt
PR:		ports/161451
Submitted by:	Junji NAKANISHI <jun-g@daemonfreaks.com> (maintainer)
2011-10-10 00:53:12 +00:00
Wen Heping
659a622dc1 This package provides a DateTime data type, as known from Zope 2.
Unless you need to communicate with Zope 2 APIs, you're probably
better off using Python's built-in datetime module.

WWW: http://pypi.python.org/pypi/DateTime

Submitted by:	Ruslan Mahmatkhanov <cvs-src@yandex.ru> (via email)
2011-10-10 00:44:36 +00:00
Sunpoet Po-Chuan Hsieh
870cbd67dd - Add p5-Sys-Info 0.78
Sys::Info is a Perl module to fetch information from the host system.

WWW: http://search.cpan.org/dist/Sys-Info/
2011-10-10 00:20:43 +00:00
Stephen Montgomery-Smith
23de50e894 - Update to 1.1.0. 2011-10-10 00:20:39 +00:00
Sunpoet Po-Chuan Hsieh
47185d2724 - Add p5-Sys-Info-Driver-BSD 0.7801
Sys::Info::Driver::BSD is the BSD driver for Sys::Info.

WWW: http://search.cpan.org/dist/Sys-Info-Driver-BSD/
2011-10-10 00:19:24 +00:00
Sunpoet Po-Chuan Hsieh
600be67974 - Add p5-Test-Sys-Info 0.20
Test::Sys::Info is a centralized test suite for Sys::Info Drivers.

WWW: http://search.cpan.org/dist/Test-Sys-Info/
2011-10-10 00:17:16 +00:00
Sunpoet Po-Chuan Hsieh
f44c7887d1 - Add p5-Sys-Info-Base 0.7802
Sys::Info::Base is the base class for Sys::Info.

WWW: http://search.cpan.org/dist/Sys-Info-Base/
2011-10-10 00:14:29 +00:00
Sunpoet Po-Chuan Hsieh
e8e66240e7 - Update to 1.4.1.4
- Fix package: keep empty directories
- Cleanup PLIST

Changes:	http://www.zenphoto.org/news/zenphoto-1.4.1.4
2011-10-09 22:38:37 +00:00
Sunpoet Po-Chuan Hsieh
a4f7e891ef - Update to 2.8.2 2011-10-09 22:36:41 +00:00
Sunpoet Po-Chuan Hsieh
393ca98a6f - Update to 0.21.1
Changes:	http://sourceforge.net/projects/mk-configure/files/mk-configure/mk-configure-0.21.1/README/view
PR:		ports/161436
Submitted by:	Mikolaj Golub <to.my.trociny@gmail.com> (maintainer)
2011-10-09 22:35:37 +00:00