Commit Graph

6393 Commits

Author SHA1 Message Date
landry
e803a37402 Update to vte 0.20.1, tested by jasper@ in a bulk build.
ok jasper@
2009-04-17 08:34:41 +00:00
sthen
d05a6661e8 - unbreak RUN_DEPENDS by moving to tk.port.mk
- update to newer version, req by marco@
2009-04-16 22:15:46 +00:00
jasper
c91c31078a - update glade3 to 3.6.2
ok ajacoutot@
2009-04-16 08:21:13 +00:00
ajacoutot
6a768369c4 - now that we have rarian, the 'scrollkeeper-update -> /bin/true' hack
is not needed as the legacy scrollkeeper-update provided by rarian does
not do anything anymore

ok jasper@
2009-04-16 08:11:13 +00:00
jolan
92369e6666 update to 1.0.2; from brad smith 2009-04-14 15:17:57 +00:00
ajacoutot
ec97188dcb - bugfix release to libsoup-2.26.1 2009-04-14 08:01:20 +00:00
jasper
4d2733784c - add a patch to fix regression tests, from upstream git.
no package change, so no bump
2009-04-14 06:48:13 +00:00
ajacoutot
e34d6bc6c3 - previous patch to fix CVE-2008-4316 was missing a part 2009-04-13 09:03:34 +00:00
ajacoutot
a4cbf1baa2 - hobbits take over maintainership
maintainer timeout (several times)
agreed with jasper@ some time ago
2009-04-11 21:08:35 +00:00
landry
08a988d9c5 Maintenance update to libsoup 2.26.0.9, bump libsoup-gnome major and
libsoup minor.
ok ajacoutot@
2009-04-10 09:38:01 +00:00
simon
1a0851e241 ENOCOOKIE: bump PKGNAME, not DISTNAME 2009-04-10 08:54:32 +00:00
simon
6df847bd7d fix typo in comment and bump
from Gallon Sylvestre (MAINTAINER)
2009-04-10 08:47:00 +00:00
ajacoutot
742638c5a7 - update to pygame 1.8.1
several documentation updates
lots of bug fixes
2009-04-09 22:49:39 +00:00
ajacoutot
ac8a778267 - install README file
- add HOMEPAGE
2009-04-09 15:03:06 +00:00
jasper
43214a8495 - update py-mxDateTime to 3.1.2
- update HOMEPAGE

remove ish@ as maintainer per his request
ok eric@
2009-04-06 18:21:26 +00:00
ajacoutot
e27caf0d1d - bugfix update to glade3-3.6.1
"go ahead" jasper@
2009-04-06 17:14:51 +00:00
ajacoutot
d61a271794 - cope with recent gnome.port.mk / MODGNOME_HELP_FILES changes 2009-04-06 10:09:06 +00:00
steven
df44e0f9e5 remove unneeded exec
ok naddy@
2009-04-05 14:11:14 +00:00
kili
b00e37c12d Fix PKGNAME and add @pkgpath to make updates possible.
ok ajacoutot@
2009-04-05 10:34:03 +00:00
bernd
1662925683 t-1.6.2.2.
Also:
- Update HOMEPAGE. (reminded by Toni Mueller)
- Fix 64-bit problem. (found on sparc64)

Tested by sturm@. Thanks!
2009-04-05 10:05:35 +00:00
martynas
40bc54847e provide alternative master_site; since sunsite doesn't provide
distfiles anymore.  discussed with fgs@
2009-04-05 02:07:40 +00:00
martynas
c130fff813 add missing run dependencies, now that they are in tree. py-peak-rules,
py-priotirized_methods.  feedback, ok fgs@
2009-04-05 01:51:32 +00:00
martynas
2da03f8f1d enter py-peak-rules and py-prioritized_methods 2009-04-05 01:45:59 +00:00
martynas
805c7dc00c import py-prioritized_methods-0.2.1
An extension to PEAK-Rules to prioritize methods in order to to
avoid AmbiguousMethods situations

This module provides four decorators:

        prioritized_when
        prioritized_around
        prioritized_before
        prioritized_after

ok fgs@
2009-04-05 01:43:49 +00:00
martynas
ae1ab945e2 import py-peak-rules-0.5r2582
PEAK-Rules is a highly-extensible framework for creating and using
generic functions, from the very simple to the very complex. Out
of the box, it supports multiple-dispatch on positional arguments
using tuples of types, full predicate dispatch using strings
containing Python expressions, and CLOS-like method combining. (But
the framework allows you to mix and match dispatch engines and
custom method combinations, if you need or want to.)

ok fgs@
2009-04-05 01:40:34 +00:00
martynas
0e371f6594 enter py-addons, py-bytecodeassembler, py-extremes, py-symboltype 2009-04-05 01:28:12 +00:00
martynas
99a6e82e71 import py-extremes-1.1.1
The peak.util.extremes module provides a production-quality
implementation of the Min and Max objects from PEP 326. While PEP
326 was rejected for inclusion in the language or standard library,
the objects described in it are useful in a variety of applications.
In PEAK, they have been used to implement generic functions (in
RuleDispatch and PEAK-Rules), as well as to handle scheduling and
time operations in the Trellis. Because this has led to each project
copying the same code, we've now split the module out so it can be
used independently.

input, ok fgs@
2009-04-05 01:09:17 +00:00
martynas
ae608b7d28 import py-symboltype-1.0
Installing SymbolType gives you access to the peak.util.symbols
module, previously available only by installing the full PEAK
toolkit. peak.util.symbols provides a Symbol type and two built-in
symbols that are used by PEAK: NOT_FOUND and NOT_GIVEN.

input, ok fgs@
2009-04-05 00:55:00 +00:00
martynas
4ed03e8481 import py-bytecodeassembler-0.5.1
peak.util.assembler is a simple bytecode assembler module that
handles most low-level bytecode generation details like jump offsets,
stack size tracking, line number table generation, constant and
variable name index tracking, etc. That way, you can focus your
attention on the desired semantics of your bytecode instead of on
these mechanical issues.

input, ok fgs@
2009-04-05 00:51:26 +00:00
martynas
36b3a0c4e4 import py-addons-0.6
Separating concerns into different objects makes it easier
to write reusable and separately-testable components.  The AddOns
package (``peak.util.addons``) lets you manage concerns using
``AddOn`` classes.

input, ok fgs@
2009-04-05 00:45:48 +00:00
rui
482c0795ea - update to 5.00, based on initial diff from Benoit Lecocq.
- fix build on Vax while here

ok naddy@
2009-04-04 18:28:14 +00:00
landry
4cd52927d1 Update to libsoup 2.26.0, needed by the upcoming webkit update.
Split it into -main and -gnome, the latter providing gnome-specific
libsoup library. While here, prettify Makefile and set HOMEPAGE.

Tested in a bulk build by and ok jasper@
2009-04-04 10:25:48 +00:00
bernd
5566f820ea Update to RubyOnRails 2.3.2. 2009-04-04 10:18:42 +00:00
sturm
78dcff8378 bump after ocaml update 2009-04-03 21:30:50 +00:00
giovanni
236270768e Update to 0.9607 version. 2009-04-02 16:49:48 +00:00
giovanni
5e76a90e4a Update to 0.1622 2009-04-02 14:05:35 +00:00
giovanni
0c9f7cc3aa Update to 0.7101 2009-04-02 14:04:19 +00:00
kili
9d10cc5dc7 Zap duplicate entry (SUBDIR += ruby-linecache). 2009-04-01 11:56:32 +00:00
ckuethe
8066263e84 Checksum mismatch. I've asked the author to start versioning his distfiles
and will mirror this if I don't hear back in a couple of days.
2009-03-31 13:56:58 +00:00
jasper
561b7937d9 - fix compilation by declaring on top of the top, not somewhere halfway 2009-03-31 13:37:16 +00:00
wilfried
b89553e523 update to 3.0.9 2009-03-31 11:37:20 +00:00
stsp
8f3405566e Update to 2.78. Fixes distfile issue.
"please commit the p5-svn-notify update" jasper@, maintainer timeout
2009-03-30 21:54:54 +00:00
sthen
07c8a66da6 switch from /dev/urandom to /dev/arandom. ok jakemsr, Brad (maintainer) 2009-03-29 09:13:01 +00:00
ckuethe
6a373976d3 +teensyloader 2009-03-28 19:05:37 +00:00
ckuethe
c7e3b4f557 Teensyloader is a programmer for the "HalfKay" embedded bootloader
as found in the "Teensy" and "Teensy++" AVR development boards.
2009-03-28 18:55:09 +00:00
naddy
4d947e1cf4 missing bump after java dependency change 2009-03-28 17:05:38 +00:00
naddy
d1838e044a bump for python dependency change 2009-03-28 15:36:54 +00:00
ajacoutot
a99a24ed55 - use users locale by default instead of UTF-8
much more readable at the console

from landry@
2009-03-28 11:10:29 +00:00
fgsch
94b85c15ed enter py-decorator. 2009-03-27 23:13:51 +00:00
fgsch
4ad1cc22af remove extra newline and slash. no package change. 2009-03-27 23:13:22 +00:00