Philip M. Gollucci
33c6268489
- Update download locations
...
restore CPAN subdir
Reported by: -fetch-original pointyhat run
2009-02-01 08:59:02 +00:00
Chin-San Huang
9ef0460dc4
- Update to 0.9.7
...
- Use SF macro
2009-02-01 07:36:43 +00:00
Andrej Zverev
f2302a6e09
- Update to 0.04
...
PR: ports/131211
Submitted by: Tsung-Han Yeh (maintainer)
2009-02-01 06:02:29 +00:00
Wesley Shields
d457619849
- Update to 0.9
...
PR: ports/131096
Submitted by: Steven Kreuzer <skreuzer@exit2shell.com>
Approved by: Denis Pokataev <catone@cpan.org> (maintainer)
2009-01-31 13:23:34 +00:00
Li-Wen Hsu
af9663a4de
- Update py-twisted-* to 8.2.0
...
- turn devel/py-twisted into a meta port.
- Update USE_TWISTED{,_BUILD,_RUN} in bsd.python.mk:
* Remove flow, pair, xish, which are deprecated
(but still update them to latest release in the tree)
* Remove USE_TWISTED=13 (no port uses this)
* Fix typos in twisted components _DEPENDS
PR: ports/130001
Submitted by: lwhsu
Approved by: maintainer timeout
2009-01-31 09:53:10 +00:00
Pav Lucistnik
06fc558099
- Update download location
...
Reported by: -fetch-original pointyhat run
2009-01-30 22:30:29 +00:00
Pav Lucistnik
37b585d190
- Update download location
...
Reported by: -fetch-original pointyhat run
2009-01-30 21:57:07 +00:00
Erwin Lansing
6ff6897fc7
Update to 0.53
2009-01-30 20:51:53 +00:00
Pav Lucistnik
f65f2d63bd
- New download location
...
Reported by: -fetch-original pointyhat run
2009-01-30 19:59:51 +00:00
Cy Schubert
5c377ae43a
Update 4.2.5p157 --> 4.2.5p158
2009-01-30 19:56:05 +00:00
Cheng-Lung Sung
ecc6645931
- Update to 2.06
...
Changes: http://search.cpan.org/dist/Net-Twitter/Changes
2009-01-30 05:13:55 +00:00
Cheng-Lung Sung
42aacf71ac
- Update to 1.0.5
...
Changes: http://search.cpan.org/dist/REST-Google/Changes
2009-01-30 04:04:31 +00:00
Pav Lucistnik
5de37a75f3
- Chase new location of curl's crt file
...
Reported by: marck
2009-01-29 21:10:39 +00:00
Erwin Lansing
dc3b831b6b
Reassign my p5-* ports to perl@ so more than one person
...
can look at them.
2009-01-29 17:41:17 +00:00
Pav Lucistnik
a9b629fcaf
- Update webkit depobj
...
PR: ports/131117
Submitted by: Thomas Mueller <tmueller@sysgo.com>
2009-01-29 15:52:06 +00:00
Koop Mast
9b82605480
Fix packaging for plugins.
...
Pointed out by: Géraud CONTINSOUZAS geraud at gcu dot nfo
Jan Hendrik Sylvester me at janh dot de
2009-01-28 14:52:21 +00:00
Philippe Audeoud
34c07887d9
- Update to 0.4
...
PR: ports/130939
Submitted by: Dennis Herrmann <adox _AT_ mcx2.org>
Approved by: maintainer
2009-01-28 08:34:14 +00:00
Cy Schubert
f76113a141
Update 4.2.5p156 --> 4.2.5p157
2009-01-27 23:43:05 +00:00
Koop Mast
426c7ab6dd
Update to 0.10.10.
...
Release notes:
http://gstreamer.freedesktop.org/releases/gst-plugins-bad/0.10.10.html
2009-01-27 23:16:56 +00:00
Emanuel Haupt
60891e25da
Fix build for OSVERSION after the strndup merge
2009-01-27 21:09:46 +00:00
Cheng-Lung Sung
2ea61a47a4
- Update to 2.05
...
Changes: http://search.cpan.org/dist/Net-Twitter/Changes
2009-01-27 10:08:57 +00:00
Philip M. Gollucci
b7c20853ce
- Fix pkg-plist
...
Reported by: QAT
2009-01-27 07:09:02 +00:00
Mark Linimon
cd2b02373e
Maintainer is no longer able to maintain these ports. While here, mark the
...
sipX ports as deprecated due to their age.
Submitted by: maintainer
2009-01-27 06:41:53 +00:00
Norikatsu Shigemura
526153856c
Update to 2009.01.26.
2009-01-27 01:22:58 +00:00
Philip M. Gollucci
3d3cc97306
- Fix INDEX
...
- relocate net/p5-IO-MultiPipe -> devel/p5-IO-MultiPipe
Pointhat: me :(
2009-01-26 22:48:20 +00:00
Greg Larkin
5696c26302
- Updated to 0.34
...
- Added some new required dependencies
PR: ports/130985
Submitted by: Gea-Suan Lin <gslin at gslin dot org>
2009-01-26 18:29:12 +00:00
Philip M. Gollucci
7baa3768c1
This module implements various functions needed for making a ZConf backed mail
...
cleint. It also currently includes two small utilities, listed below.
zcmailcompose - Composes a mail message and sends it using the specified
account.
zcgetmail - A getmail replacement using ZConf::Mail.
WWW: http://search.cpan.org/dist/ZConf-Mail/
PR: ports/ports/130564
Submitted by: Zane C, Bowers <vvelox at vvelox.net>
2009-01-26 17:44:55 +00:00
Philip M. Gollucci
d96e622263
Normally if a part of a pipe fails, depending on the location, it won't
...
be detected. This breaks down a command involving pipes and runs each
command seperately.
It uses open3 to run each chunk of the pipe.
use IO::MultiPipe;
my $pipes = IO::MultiPipe->new();
#This sets the pipe that will be run.
$pipes->set('sed s/-// | sed s/123/abc/ | sed s/ABC/abc/');
if ($pipes->{error}){
print "Error!\n";
}
#'123-ABCxyz' through the command set above.
my $returned=$pipes->run('123-ABCxyz');
WWW: http://search.cpan.org/~vvelox/IO-MultiPipe/
PR: ports/ports/130563
Submitted by: Zane C, Bowers <vvelox at vvelox.net>
2009-01-26 17:44:14 +00:00
Maxim Sobolev
2e9defca17
Update to 1.4.22.2.
2009-01-26 09:19:31 +00:00
Maxim Sobolev
8fb15cbb82
Unbreak packaging.
2009-01-26 09:04:20 +00:00
Rong-En Fan
d369b922c0
- Update to 0.5.0
2009-01-26 04:34:46 +00:00
Pav Lucistnik
03cec4913a
- Mark BROKEN: does not compile (also could use an update to 0.1.2)
...
Reported by: pointyhat
2009-01-25 20:56:33 +00:00
Andrej Zverev
a12ac10ca9
update to 0.23
2009-01-25 20:31:13 +00:00
Beech Rintoul
ea891f5233
- Update plist
2009-01-25 10:38:35 +00:00
Beech Rintoul
49acce2c13
- Update to 0.9.6
2009-01-25 10:26:06 +00:00
Peter Pentchev
0e7c1db0bd
Unbreak the build with the new curl - the CURLOPT_NOBODY option really
...
requires an argument now.
2009-01-24 13:54:53 +00:00
Peter Pentchev
133a11ddea
Fix the build with the new curl version: the CURLOPT_SSLENGINE_DEFAULT
...
option takes an argument now, even though it might be ignored.
2009-01-24 13:00:50 +00:00
Pav Lucistnik
95f83d9f19
- Mark BROKEN: does not compile
...
Reported by: pointyhat
2009-01-23 23:46:26 +00:00
Andrej Zverev
7aa647a54c
update to 0.22
2009-01-23 20:37:09 +00:00
Florent Thoumie
340b57f8be
- Update X.org ports to 7.4+ (few ports are more recent than the katamari).
...
- Bump PORTREVISION for all ports depending on libglut since the shlib
version number went from 4 to 3.
- Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't
installed anymore.
- Couple of ports fixes (mostly missing xorg components added to USE_XORG).
2009-01-23 16:28:36 +00:00
Peter Pentchev
c189a6b2da
Bump the version of the curl shared library after the ftp/curl update
...
to 7.19.2.
Bump PORTREVISION, even on the ports that do not have a versioned
dependency, since the binaries will most probably still stop working.
2009-01-23 15:43:14 +00:00
Dmitry Marakasov
823c57d2fd
- Update to 3.1.0
...
PR: 130442
Submitted by: KATO Tsuguru <tkato432 at yahoo dot com>
2009-01-23 14:49:07 +00:00
Dmitry Marakasov
57665cb018
- Update to 3.2.0
...
PR: 130442
Submitted by: KATO Tsuguru <tkato432 at yahoo dot com>
Approved by: Moinur Rahman <bd_subzero at yahoo dot com> (maintainer)
2009-01-23 14:48:56 +00:00
Gerald Pfeifer
433ae169f8
Remove net/mpich. It fails to build, does not have a maintainer, no
...
other port depends on it, and has been superseded by net/mpich2.
Discussed with: pav
2009-01-23 12:36:41 +00:00
Florent Thoumie
681737bf3a
Turn over maintainership to mono@.
2009-01-22 18:21:08 +00:00
Andrej Zverev
c12e906fae
update to 0.20
2009-01-22 18:11:28 +00:00
Erwin Lansing
625357b03a
Mark BROKEN on 8: does not build after the arp-v2 import.
...
Submitted by: pointyhat
2009-01-22 17:53:35 +00:00
Martin Wilke
13c0f27605
- Chase lang/guile shlib bump
2009-01-22 16:04:11 +00:00
Jun Kuriyama
83895a5f97
Add p5-URI-Template-Restrict 0.02, perl extension for restricted URI
...
Templates handler.
2009-01-22 00:54:02 +00:00
Andrej Zverev
aab2e7db41
update to 0.19
2009-01-21 15:27:24 +00:00