Re: tedu print/acroread?

2012-04-24 Thread Juan Francisco Cantero Hurtado
On Tue, Apr 24, 2012 at 04:54:24PM -0400, Lawrence Teo wrote:
> On Tue, Apr 24, 2012 at 11:48:45AM -0400, Ted Unangst wrote:
> > On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:
> > > Who uses this?
> > 
> > Ironically, I was using it not all that long ago, because xpdf shit
> > its pants on about half the PDFs I was trying to read.  But it doesn't
> > seem to be installed currently, so I haven't needed it recently.
> 
> print/apvlv has been working pretty well for me, but I'm not a heavy
> PDF user.

Or textproc/mupdf if you don't like poppler or don't want to install too
many dependencies.

-- 
Juan Francisco Cantero Hurtado http://juanfra.info



Re: UPDATE: libtorrent-0.13.2 / rtorrent-0.9.2

2012-04-24 Thread Brett
On Mon, 23 Apr 2012 16:25:11 +0200
David Coppa  wrote:

> Hi,
> 
> There're some major stability problems atm with
> libtorrent-0.12.9 / rtorrent-0.8.9...
> 
> After running rtorrent continuously for some time you will get one
> of these crashes sooner or later:
> 
>  rtorrent: PollKQueue::modify() error: No such file or directory
> 
>  rtorrent: ThrottleInternal::receive_tick() called at a too short interval

I was running rtorrent up till recently on amd64 and never saw this, but the 
longest I ever ran it for was approx 12 hours straight.

The only problem I ever saw with the ports version, was occasionally the 
view:main ncurses display went screwy, and would display a few blank lines 
where downloading information should have been.



> So, I'd like to move us to the "unstable" branch.
> 
> Alexander is running with a diff similar to the one below without
> problems since last thursday. Also this is the branch where development
> is currently happening (read: actively maintained).
> 
> Any comments? Objections?
> 

Installed this unstable one last night an a freshly built i386 -current. The 
one problem I notice is that navigating via the arrow keys often freezes for a 
few seconds. ie, I press the down arrow, the *** should appear beside the top 
torrent. But often with this version, nothing happens. I come back to the 
screen 5 seconds later and the *** is now beside the correct torrent. This 
didn't happen with the version in ports.

Brett.



Re: tedu print/acroread?

2012-04-24 Thread Stuart Henderson
On 2012/04/24 23:17, Marc Espie wrote:
> On Tue, Apr 24, 2012 at 07:00:06PM +0200, David Coppa wrote:
> > On Tue, Apr 24, 2012 at 5:48 PM, Ted Unangst  wrote:
> > > On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:
> > >> Who uses this?
> > >
> > > Ironically, I was using it not all that long ago, because xpdf shit
> > > its pants on about half the PDFs I was trying to read.  But it doesn't
> > > seem to be installed currently, so I haven't needed it recently.
> > 
> > Then, I'll see if it can be updated... The pre-WWII version we have
> > now is pretty useless
> That would be cool...
> 
> you may find out the linux emul is now dreadfully old.

It runs dwarf fortress, what more do we need (except amd64 support :)



Re: tedu print/acroread?

2012-04-24 Thread Stuart Henderson
On 2012/04/24 16:54, Lawrence Teo wrote:
> On Tue, Apr 24, 2012 at 11:48:45AM -0400, Ted Unangst wrote:
> > On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:
> > > Who uses this?
> > 
> > Ironically, I was using it not all that long ago, because xpdf shit
> > its pants on about half the PDFs I was trying to read.  But it doesn't
> > seem to be installed currently, so I haven't needed it recently.
> 
> print/apvlv has been working pretty well for me, but I'm not a heavy
> PDF user.

apvlv uses basically the same renderer as xpdf (as do most of the
open-source readers). other than these xpdf/poppler renderers, the
primary different implementations are adobe's and MuPDF.

if you have files MuPDF won't render that you can share with
the developers, please open a ticket at http://bugs.ghostscript.com/



Re: memory compile sizes

2012-04-24 Thread Matthew Dempsky
On Tue, Apr 24, 2012 at 2:42 PM, Marc Espie  wrote:
> Well, yuck, this makes for ways too many extra processes just for that.

There are no more processes than your wrapper program, and only two
more execs of /bin/sh. Considering make's primary task is forking and
exec'ing /bin/sh processes, I doubt you'd notice the overhead. :P

Anyway, it was a tongue-in-cheek proposal.



Re: memory compile sizes

2012-04-24 Thread Marc Espie
On Tue, Apr 24, 2012 at 02:33:15PM -0700, Matthew Dempsky wrote:
> On Thu, Apr 19, 2012 at 7:26 AM, Marc Espie  wrote:
> > On Thu, Apr 19, 2012 at 02:57:57PM +0100, Stuart Henderson wrote:
> >> On 2012/04/19 15:42, Marc Espie wrote:
> >> > Yeah, the only issue so far is that the make-wrapper process is C code, 
> >> > so
> >> > it needs to be compiled and deployed on every host
> >>
> >> we ship with a wrapper in base ;)
> >>
> >> /usr/bin/time -l
> >
> > Up to a point. This means parsing the log files to find that entry.
> 
> Nah, just direct time's output to a different file:
> 
> $ cat logtime
> #!/bin/sh
> fn="$1"; shift
> exec /usr/bin/time -l sh -c 'exec "$@" 2>&9 9>&-' -- "$@" 9>&2 2>"$fn"
> $ ./logtime time.out sh -c 'echo stdout; echo stderr >&2'
> stdout
> stderr
> $ cat time.out
> 0.00 real 0.00 user 0.00 sys
>504  maximum resident set size
>  0  average shared memory size
>  0  average unshared data size
>  0  average unshared stack size
>146  minor page faults
>  0  major page faults
>  0  swaps
>  0  block input operations
>  0  block output operations
>  0  messages sent
>  0  messages received
>  0  signals received
>  0  voluntary context switches
>  0  involuntary context switches
> 
> :)
Well, yuck, this makes for ways too many extra processes just for that.
If I have to deploy code, it's almost as easy to compile an extra program
on the fly...

> > It's feasible,
> > but not really nice... and /usr/bin/time will fail on some signals.
> 
> Hm, how so?

when you kill a job, you want to report current rss to extract stats later.
/usr/bin/time will die without having reported anything on at least
some current signals, namely it only catches INT and QUIT...



Re: memory compile sizes

2012-04-24 Thread Matthew Dempsky
On Thu, Apr 19, 2012 at 7:26 AM, Marc Espie  wrote:
> On Thu, Apr 19, 2012 at 02:57:57PM +0100, Stuart Henderson wrote:
>> On 2012/04/19 15:42, Marc Espie wrote:
>> > Yeah, the only issue so far is that the make-wrapper process is C code, so
>> > it needs to be compiled and deployed on every host
>>
>> we ship with a wrapper in base ;)
>>
>> /usr/bin/time -l
>
> Up to a point. This means parsing the log files to find that entry.

Nah, just direct time's output to a different file:

$ cat logtime
#!/bin/sh
fn="$1"; shift
exec /usr/bin/time -l sh -c 'exec "$@" 2>&9 9>&-' -- "$@" 9>&2 2>"$fn"
$ ./logtime time.out sh -c 'echo stdout; echo stderr >&2'
stdout
stderr
$ cat time.out
0.00 real 0.00 user 0.00 sys
   504  maximum resident set size
 0  average shared memory size
 0  average unshared data size
 0  average unshared stack size
   146  minor page faults
 0  major page faults
 0  swaps
 0  block input operations
 0  block output operations
 0  messages sent
 0  messages received
 0  signals received
 0  voluntary context switches
 0  involuntary context switches

:)

> It's feasible,
> but not really nice... and /usr/bin/time will fail on some signals.

Hm, how so?



Re: tedu print/acroread?

2012-04-24 Thread Brad Smith

On 24/04/12 5:17 PM, Marc Espie wrote:

On Tue, Apr 24, 2012 at 07:00:06PM +0200, David Coppa wrote:

On Tue, Apr 24, 2012 at 5:48 PM, Ted Unangst  wrote:

On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:

Who uses this?


Ironically, I was using it not all that long ago, because xpdf shit
its pants on about half the PDFs I was trying to read.  But it doesn't
seem to be installed currently, so I haven't needed it recently.


Then, I'll see if it can be updated... The pre-WWII version we have
now is pretty useless

That would be cool...

you may find out the linux emul is now dreadfully old.


Being limited to i386 is pretty killer too.

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.



Re: tedu print/acroread?

2012-04-24 Thread Marc Espie
On Tue, Apr 24, 2012 at 07:00:06PM +0200, David Coppa wrote:
> On Tue, Apr 24, 2012 at 5:48 PM, Ted Unangst  wrote:
> > On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:
> >> Who uses this?
> >
> > Ironically, I was using it not all that long ago, because xpdf shit
> > its pants on about half the PDFs I was trying to read.  But it doesn't
> > seem to be installed currently, so I haven't needed it recently.
> 
> Then, I'll see if it can be updated... The pre-WWII version we have
> now is pretty useless
That would be cool...

you may find out the linux emul is now dreadfully old.



Update: devel/ruby-gems 1.8.10 -> 1.8.23

2012-04-24 Thread Jeremy Evans
This release fixes a security issue when installing gems:

* RubyGems now disallows redirection from HTTPS to HTTP.
* RubyGems now verifies SSL connections.

Tested in a bulk of the ruby ports on amd64, and also briefly on i386. I
would appreciate additional testing, but will probably be committing
this later this week.

Thanks,
Jeremy

Index: Makefile
===
RCS file: /cvs/ports/devel/ruby-gems/Makefile,v
retrieving revision 1.25
diff -u -p -r1.25 Makefile
--- Makefile8 Nov 2011 23:44:12 -   1.25
+++ Makefile23 Apr 2012 18:05:49 -
@@ -2,7 +2,7 @@
 
 COMMENT=   package management framework for the Ruby language
 
-V= 1.8.10
+V= 1.8.23
 DISTNAME=  rubygems-$V
 PKGNAME=   ruby-gems-$V
 CATEGORIES=devel
Index: distinfo
===
RCS file: /cvs/ports/devel/ruby-gems/distinfo,v
retrieving revision 1.11
diff -u -p -r1.11 distinfo
--- distinfo8 Nov 2011 23:44:12 -   1.11
+++ distinfo23 Apr 2012 19:49:44 -
@@ -1,5 +1,5 @@
-MD5 (rubygems-1.8.10.tgz) = WwjuMXQMmwvTb2wE1Tfn1A==
-RMD160 (rubygems-1.8.10.tgz) = LH3EvFRZoLLPdxyTmPdQz+Dby/U=
-SHA1 (rubygems-1.8.10.tgz) = 0ujF2femnvLGqYCX/xkvI4sM4R8=
-SHA256 (rubygems-1.8.10.tgz) = OBUb1iqIuNCGf3rP1KrIPyxObf2eyZLtW5bEShzXhVI=
-SIZE (rubygems-1.8.10.tgz) = 249683
+MD5 (rubygems-1.8.23.tgz) = F4sOuueNu0aWPFGtKbtr2Q==
+RMD160 (rubygems-1.8.23.tgz) = YkxHUCMF+a6RrmrLSOh3Khh6LKg=
+SHA1 (rubygems-1.8.23.tgz) = rdlsiu1OEVJplbw1SiE8cqOTmAw=
+SHA256 (rubygems-1.8.23.tgz) = 5KHGu6rEEeqrlN6ueCKLdYQDOh8QoCL1K/+pYTqikGE=
+SIZE (rubygems-1.8.23.tgz) = 37
Index: patches/patch-lib_rubygems_commands_setup_command_rb
===
RCS file: 
/cvs/ports/devel/ruby-gems/patches/patch-lib_rubygems_commands_setup_command_rb,v
retrieving revision 1.3
diff -u -p -r1.3 patch-lib_rubygems_commands_setup_command_rb
--- patches/patch-lib_rubygems_commands_setup_command_rb8 Nov 2011 
23:44:12 -   1.3
+++ patches/patch-lib_rubygems_commands_setup_command_rb23 Apr 2012 
19:51:25 -
@@ -1,7 +1,7 @@
 $OpenBSD: patch-lib_rubygems_commands_setup_command_rb,v 1.3 2011/11/08 
23:44:12 jeremy Exp $
 lib/rubygems/commands/setup_command.rb.origThu Aug 25 17:30:44 2011
-+++ lib/rubygems/commands/setup_command.rb Sun Oct 30 20:35:07 2011
-@@ -273,7 +273,7 @@ TEXT
+--- lib/rubygems/commands/setup_command.rb.origThu Apr 19 21:29:58 2012
 lib/rubygems/commands/setup_command.rb Mon Apr 23 12:49:58 2012
+@@ -283,7 +283,7 @@ TEXT
   lib_dir = Gem::ConfigMap[site_or_vendor]
   bin_dir = Gem::ConfigMap[:bindir]
else
Index: patches/patch-lib_rubygems_config_file_rb
===
RCS file: /cvs/ports/devel/ruby-gems/patches/patch-lib_rubygems_config_file_rb,v
retrieving revision 1.4
diff -u -p -r1.4 patch-lib_rubygems_config_file_rb
--- patches/patch-lib_rubygems_config_file_rb   8 Nov 2011 23:44:12 -   
1.4
+++ patches/patch-lib_rubygems_config_file_rb   23 Apr 2012 19:51:18 -
@@ -1,12 +1,12 @@
 $OpenBSD: patch-lib_rubygems_config_file_rb,v 1.4 2011/11/08 23:44:12 jeremy 
Exp $
 lib/rubygems/config_file.rb.orig   Thu Aug 25 17:30:44 2011
-+++ lib/rubygems/config_file.rbSun Oct 30 20:36:11 2011
-@@ -68,7 +68,7 @@ class Gem::ConfigFile
+--- lib/rubygems/config_file.rb.orig   Thu Apr 19 21:29:58 2012
 lib/rubygems/config_file.rbMon Apr 23 12:50:57 2012
+@@ -70,7 +70,7 @@ class Gem::ConfigFile
  
  path.strip
rescue LoadError
--"/etc"
-+'${SYSCONFDIR}'
+-RbConfig::CONFIG["sysconfdir"] || "/etc"
++RbConfig::CONFIG["sysconfdir"] || '${SYSCONFDIR}'
end
  end
  
Index: pkg/PLIST
===
RCS file: /cvs/ports/devel/ruby-gems/pkg/PLIST,v
retrieving revision 1.11
diff -u -p -r1.11 PLIST
--- pkg/PLIST   8 Nov 2011 23:44:12 -   1.11
+++ pkg/PLIST   23 Apr 2012 19:52:00 -
@@ -86,6 +86,8 @@ ${MODRUBY_SITEDIR}/rubygems/package/tar_
 ${MODRUBY_SITEDIR}/rubygems/package_task.rb
 ${MODRUBY_SITEDIR}/rubygems/path_support.rb
 ${MODRUBY_SITEDIR}/rubygems/platform.rb
+${MODRUBY_SITEDIR}/rubygems/psych_additions.rb
+${MODRUBY_SITEDIR}/rubygems/psych_tree.rb
 ${MODRUBY_SITEDIR}/rubygems/remote_fetcher.rb
 ${MODRUBY_SITEDIR}/rubygems/require_paths_builder.rb
 ${MODRUBY_SITEDIR}/rubygems/requirement.rb
@@ -94,6 +96,7 @@ ${MODRUBY_SITEDIR}/rubygems/server.rb
 ${MODRUBY_SITEDIR}/rubygems/source_index.rb
 ${MODRUBY_SITEDIR}/rubygems/spec_fetcher.rb
 ${MODRUBY_SITEDIR}/rubygems/specification.rb
+${MODRUBY_SITEDIR}/rubygems/syck_hack.rb
 ${MODRUBY_SITEDIR}/rubygems/test_case.rb
 ${MODRUBY_SITEDIR}/rubygems/test_utilities.rb
 ${MODRUBY_SITEDIR}/rubygems/text.rb



Update: lang/ruby/1.9 1.9.3-p125 -> 1.9.3-p194

2012-04-24 Thread Jeremy Evans
This release fixes a security issue when installing gems:

* RubyGems now disallows redirection from HTTPS to HTTP.
* RubyGems now verifies SSL connections.

This release also includes various bug fixes, see the lines 1-626 of:
https://raw.github.com/ruby/ruby/d927018018577e2fa8e0d0475c7f87c3a7e02302/ChangeLog

Tested on i386 and in a bulk of the ruby ports on amd64.  I would
appreciate additional testing, but will probably be committing this
by the end of the week.

Thanks,
Jeremy

Index: Makefile
===
RCS file: /cvs/ports/lang/ruby/1.9/Makefile,v
retrieving revision 1.25
diff -u -p -r1.25 Makefile
--- Makefile30 Mar 2012 19:03:24 -  1.25
+++ Makefile20 Apr 2012 05:39:46 -
@@ -7,7 +7,7 @@ COMMENT-tk =tk interface for ruby
 COMMENT-ri_docs =  ri documentation files for ruby
 
 VERSION =  1.9.3
-PATCHLEVEL =   125
+PATCHLEVEL =   194
 RUBYLIBREV =   1.9.1
 
 SHARED_LIBS =  ruby19 1.0
@@ -16,8 +16,6 @@ PKGNAME-gdbm =ruby-gdbm-${VERSION}.${P
 PKGNAME-dbm =  ruby-dbm-${VERSION}.${PATCHLEVEL}
 PKGNAME-tk =   ruby-tk-${VERSION}.${PATCHLEVEL}
 PKGNAME-ri_docs =  ruby-ri_docs-${VERSION}.${PATCHLEVEL}
-
-REVISION-main =0
 
 PKG_ARCH-ri_docs=  *
 
Index: distinfo
===
RCS file: /cvs/ports/lang/ruby/1.9/distinfo,v
retrieving revision 1.6
diff -u -p -r1.6 distinfo
--- distinfo28 Feb 2012 00:20:41 -  1.6
+++ distinfo20 Apr 2012 05:40:13 -
@@ -1,5 +1,5 @@
-MD5 (ruby-1.9.3-p125.tar.gz) = 4+qGudP8LT7IZ/Zpaa47kg==
-RMD160 (ruby-1.9.3-p125.tar.gz) = YxhE75Im/3KTAdtvmYMhD57PB8s=
-SHA1 (ruby-1.9.3-p125.tar.gz) = PqEd9rxOdTfPl/exNNskxV3+AT0=
-SHA256 (ruby-1.9.3-p125.tar.gz) = izwDXPTwrWQg9EfWpI6IF+U4TQUEUUk5rrFW4lHUTM4=
-SIZE (ruby-1.9.3-p125.tar.gz) = 12278584
+MD5 (ruby-1.9.3-p194.tar.gz) = vAxxXGnaTR2L1XBpwZ9sDg==
+RMD160 (ruby-1.9.3-p194.tar.gz) = qVRmssHhR7Mlq2AsxXPlVSvXQcw=
+SHA1 (ruby-1.9.3-p194.tar.gz) = Mc9r2YHkySnl3Du9s0GDPqsb2fI=
+SHA256 (ruby-1.9.3-p194.tar.gz) = RuL6gL5+/tUb2c3FKdH+IuvHVn7g+R20q4VUOM9L2Ls=
+SIZE (ruby-1.9.3-p194.tar.gz) = 12432239
Index: pkg/PLIST-main
===
RCS file: /cvs/ports/lang/ruby/1.9/pkg/PLIST-main,v
retrieving revision 1.5
diff -u -p -r1.5 PLIST-main
--- pkg/PLIST-main  8 Nov 2011 23:38:57 -   1.5
+++ pkg/PLIST-main  23 Apr 2012 18:18:29 -
@@ -231,8 +231,9 @@ lib/ruby/${RUBYLIBREV}/psych/coder.rb
 lib/ruby/${RUBYLIBREV}/psych/core_ext.rb
 lib/ruby/${RUBYLIBREV}/psych/deprecated.rb
 lib/ruby/${RUBYLIBREV}/psych/handler.rb
+lib/ruby/${RUBYLIBREV}/psych/handlers/
+lib/ruby/${RUBYLIBREV}/psych/handlers/document_stream.rb
 lib/ruby/${RUBYLIBREV}/psych/json/
-lib/ruby/${RUBYLIBREV}/psych/json.rb
 lib/ruby/${RUBYLIBREV}/psych/json/ruby_events.rb
 lib/ruby/${RUBYLIBREV}/psych/json/stream.rb
 lib/ruby/${RUBYLIBREV}/psych/json/tree_builder.rb
@@ -252,6 +253,7 @@ lib/ruby/${RUBYLIBREV}/psych/scalar_scan
 lib/ruby/${RUBYLIBREV}/psych/set.rb
 lib/ruby/${RUBYLIBREV}/psych/stream.rb
 lib/ruby/${RUBYLIBREV}/psych/streaming.rb
+lib/ruby/${RUBYLIBREV}/psych/syntax_error.rb
 lib/ruby/${RUBYLIBREV}/psych/tree_builder.rb
 lib/ruby/${RUBYLIBREV}/psych/visitors/
 lib/ruby/${RUBYLIBREV}/psych/visitors.rb
@@ -623,6 +625,8 @@ lib/ruby/${RUBYLIBREV}/rubygems/package/
 lib/ruby/${RUBYLIBREV}/rubygems/package_task.rb
 lib/ruby/${RUBYLIBREV}/rubygems/path_support.rb
 lib/ruby/${RUBYLIBREV}/rubygems/platform.rb
+lib/ruby/${RUBYLIBREV}/rubygems/psych_additions.rb
+lib/ruby/${RUBYLIBREV}/rubygems/psych_tree.rb
 lib/ruby/${RUBYLIBREV}/rubygems/remote_fetcher.rb
 lib/ruby/${RUBYLIBREV}/rubygems/require_paths_builder.rb
 lib/ruby/${RUBYLIBREV}/rubygems/requirement.rb
@@ -631,6 +635,12 @@ lib/ruby/${RUBYLIBREV}/rubygems/server.r
 lib/ruby/${RUBYLIBREV}/rubygems/source_index.rb
 lib/ruby/${RUBYLIBREV}/rubygems/spec_fetcher.rb
 lib/ruby/${RUBYLIBREV}/rubygems/specification.rb
+lib/ruby/${RUBYLIBREV}/rubygems/ssl_certs/
+lib/ruby/${RUBYLIBREV}/rubygems/ssl_certs/AddTrustExternalCARoot.pem
+lib/ruby/${RUBYLIBREV}/rubygems/ssl_certs/Entrust_net-Secure-Server-Certification-Authority.pem
+lib/ruby/${RUBYLIBREV}/rubygems/ssl_certs/VerisignClass3PublicPrimaryCertificationAuthority-G2.pem
+lib/ruby/${RUBYLIBREV}/rubygems/ssl_certs/ca-bundle.pem
+lib/ruby/${RUBYLIBREV}/rubygems/syck_hack.rb
 lib/ruby/${RUBYLIBREV}/rubygems/test_case.rb
 lib/ruby/${RUBYLIBREV}/rubygems/test_utilities.rb
 lib/ruby/${RUBYLIBREV}/rubygems/text.rb
Index: pkg/PLIST-ri_docs
===
RCS file: /cvs/ports/lang/ruby/1.9/pkg/PLIST-ri_docs,v
retrieving revision 1.2
diff -u -p -r1.2 PLIST-ri_docs
--- pkg/PLIST-ri_docs   28 Feb 2012 00:20:41 -  1.2
+++ pkg/PLIST-ri_docs   23 Apr 2012 18:28:02 -
@@ -2643,6 +2643,7 @@ share/ri/${RUBYLIBREV}

Re: tedu print/acroread?

2012-04-24 Thread Lawrence Teo
On Tue, Apr 24, 2012 at 11:48:45AM -0400, Ted Unangst wrote:
> On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:
> > Who uses this?
> 
> Ironically, I was using it not all that long ago, because xpdf shit
> its pants on about half the PDFs I was trying to read.  But it doesn't
> seem to be installed currently, so I haven't needed it recently.

print/apvlv has been working pretty well for me, but I'm not a heavy
PDF user.



Re: NEW: kc - console based password storing application

2012-04-24 Thread LEVAI Daniel
On h, ápr 23, 2012 at 17:51:20 -0400, Okan Demirmen wrote:
> On Fri 2011.12.23 at 10:20 +0100, LEVAI Daniel wrote:
> > Hi!
> > 
> > 
> > This is a console based password "management" app. Useful if you don't
> > want to depend on GUI stuff over terminals.
> > New version, with tweaks by Okan Demirmen. Thanks!
> 
> Updated to latest release and attached.
> 
> Any other feedback, OK's?

Thanks for the repost! I've been using this version since I've packed
it; seems pretty usable and stable, but other testers, bug reports,
usability issues are welcome of course.


Daniel

-- 
LÉVAI Dániel
PGP key ID = 0x83B63A8F
Key fingerprint = DBEC C66B A47A DFA2 792D  650C C69B BE4C 83B6 3A8F



Re: tedu print/acroread?

2012-04-24 Thread David Coppa
On Tue, Apr 24, 2012 at 5:48 PM, Ted Unangst  wrote:
> On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:
>> Who uses this?
>
> Ironically, I was using it not all that long ago, because xpdf shit
> its pants on about half the PDFs I was trying to read.  But it doesn't
> seem to be installed currently, so I haven't needed it recently.

Then, I'll see if it can be updated... The pre-WWII version we have
now is pretty useless



Re: tedu print/acroread?

2012-04-24 Thread Ted Unangst
On Tue, Apr 24, 2012 at 17:03, David Coppa wrote:
> Who uses this?

Ironically, I was using it not all that long ago, because xpdf shit
its pants on about half the PDFs I was trying to read.  But it doesn't
seem to be installed currently, so I haven't needed it recently.



tedu print/acroread?

2012-04-24 Thread David Coppa
Who uses this?

Opinions?

ciao,
David



Cotacao de precos.

2012-04-24 Thread Daniela Silveira
 Segue abaixo a cotacao de precos solicitada.

cotacao-precos e produtos.doc (21,0kb)

Qualquer duvida referente a planilha
entre em contato.

Obrigado.


[update] webkit 1.8.1

2012-04-24 Thread Landry Breuil
Hi,

here's an update to webkit 1.8.1, see
http://mail.gnome.org/archives/gnome-announce-list/2012-April/msg00026.html
for a small list of changes.
As usual, test with your favourite webkit browser on your exotic
archs...

Landry
? webkit-1.4.3-libwebkitgtk-1.0.so.0.1
? webkit-1.6.3-libjavascriptcoregtk-1.0.so.0.0
? webkit-1.6.3-libjavascriptcoregtk-3.0.so.0.0
? webkit-1.6.3-libwebkitgtk-1.0.so.2.0
? webkit-1.6.3-libwebkitgtk-3.0.so.2.0
? webkit-1.8.0-libjavascriptcoregtk-1.0.so.0.0
? webkit-1.8.0-libjavascriptcoregtk-3.0.so.0.0
? webkit-1.8.0-libwebkitgtk-1.0.so.2.0
? webkit-1.8.0-libwebkitgtk-3.0.so.2.0
? webkit-1.8.1-libjavascriptcoregtk-1.0.so.2.0
? webkit-1.8.1-libwebkitgtk-1.0.so.3.0
Index: Makefile
===
RCS file: /cvs/ports/www/webkit/Makefile,v
retrieving revision 1.64
diff -u -r1.64 Makefile
--- Makefile23 Apr 2012 17:15:19 -  1.64
+++ Makefile24 Apr 2012 13:17:25 -
@@ -4,10 +4,9 @@
 
 COMMENT =  open source web browser engine for Gtk+
 
-V =1.8.0
+V =1.8.1
 DISTNAME = webkit-${V}
 EPOCH =0
-REVISION = 0
 CATEGORIES =   www
 EXTRACT_SUFX=  .tar.xz
 
@@ -78,7 +77,7 @@
textproc/enchant \
geo/geoclue \
devel/glib2>=2.31.2 \
-   devel/libsoup>=2.37.2.1
+   devel/libsoup>=2.37.92
 
 BUILD_DEPENDS =devel/bison \
devel/flex \
@@ -103,8 +102,8 @@
 GTK_API_VERSION =  2.0
 .endif
 CONFIGURE_ARGS += --with-gtk=${GTK_API_VERSION}
-SHARED_LIBS += javascriptcoregtk-${WEBKIT_API_VERSION} 2.0 #.13.1
-SHARED_LIBS += webkitgtk-${WEBKIT_API_VERSION} 3.0 #.13.1
+SHARED_LIBS += javascriptcoregtk-${WEBKIT_API_VERSION} 2.0 #.13.2
+SHARED_LIBS += webkitgtk-${WEBKIT_API_VERSION} 4.0 #.13.2
 
 pre-configure:
${SUBST_CMD} ${WRKSRC}/Source/WebCore/plugins/PluginDatabase.cpp
Index: distinfo
===
RCS file: /cvs/ports/www/webkit/distinfo,v
retrieving revision 1.25
diff -u -r1.25 distinfo
--- distinfo3 Apr 2012 15:39:35 -   1.25
+++ distinfo24 Apr 2012 13:17:25 -
@@ -1,5 +1,5 @@
-MD5 (webkit-1.8.0.tar.xz) = UrL+sPrgHmhDK1R72F6NdA==
-RMD160 (webkit-1.8.0.tar.xz) = 8XADUONEfyI+HPkAFUra6GuoqQA=
-SHA1 (webkit-1.8.0.tar.xz) = dfGn2pCXx0DEqizLqUcCKcC1z1w=
-SHA256 (webkit-1.8.0.tar.xz) = jOvVO0Eq6esZJJOtjkH6hzmnsaAPdMa1pp02dwmoAbw=
-SIZE (webkit-1.8.0.tar.xz) = 7998384
+MD5 (webkit-1.8.1.tar.xz) = 8vAbH9xyYqLu3oHr7Qlwsg==
+RMD160 (webkit-1.8.1.tar.xz) = 6+EPY+LFFL4Tx7YRcrEcQY0MoP8=
+SHA1 (webkit-1.8.1.tar.xz) = 0mVDuqzgPDGqPegrwk8G8UxrMFI=
+SHA256 (webkit-1.8.1.tar.xz) = mhJqdrQMphrbHxYm4VZ/l2dAryMylIzFGJSJ29AeOyg=
+SIZE (webkit-1.8.1.tar.xz) = 7949924
Index: patches/patch-GNUmakefile_in
===
RCS file: /cvs/ports/www/webkit/patches/patch-GNUmakefile_in,v
retrieving revision 1.16
diff -u -r1.16 patch-GNUmakefile_in
--- patches/patch-GNUmakefile_in3 Apr 2012 15:39:35 -   1.16
+++ patches/patch-GNUmakefile_in24 Apr 2012 13:17:25 -
@@ -6,9 +6,9 @@
 - append extra cflags for sparc64 which otherwise result in overoptimization
   by emitting a fdtox %r8, %r7 call, whose second operand isn't even and thus 
invalid.
 (on Source/JavaScriptCore/runtime/NumberPrototype.cpp)
 GNUmakefile.in.origTue Mar 27 18:31:16 2012
-+++ GNUmakefile.in Fri Mar 30 11:32:32 2012
-@@ -11355,7 +11355,7 @@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES
+--- GNUmakefile.in.origTue Apr 24 07:17:27 2012
 GNUmakefile.in Tue Apr 24 09:56:57 2012
+@@ -11360,7 +11360,7 @@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
  AM_V_CC = $(am__v_CC_$(V))
  am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
@@ -17,7 +17,7 @@
  AM_V_at = $(am__v_at_$(V))
  am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
  am__v_at_0 = @
-@@ -11365,12 +11365,12 @@ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC 
$(AM_LIBTOOLFLAG
+@@ -11370,12 +11370,12 @@ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC 
$(AM_LIBTOOLFLAG
$(AM_LDFLAGS) $(LDFLAGS) -o $@
  AM_V_CCLD = $(am__v_CCLD_$(V))
  am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
@@ -32,7 +32,7 @@
  CXXLD = $(CXX)
  CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
-@@ -11774,7 +11774,7 @@ pkgconfigdir := $(libdir)/pkgconfig
+@@ -11780,7 +11780,7 @@ pkgconfigdir := $(libdir)/pkgconfig
  libwebkitgtkincludedir := $(prefix)/include/webkitgtk-@WEBKITGTK_API_VERSION@
  
  # Libraries and support components
@@ -41,7 +41,7 @@
  noinst_HEADERS := 
  
  # We have a different library with only the files that require GTK+. It 
allows us
-@@ -18909,6 +18909,7 @@ pkgconfig_DATA := Source/JavaScriptCore/javascriptcore
+@@ -18918,6 +18918,7 @@ pkgconfig_DATA := Source/JavaScriptCore/jav

Broken: games/stone-soup

2012-04-24 Thread Christian Weisgerber
I don't know if this is sqlite fallout or something else entirely.


>>> Building under games/stone-soup
 BDEPENDS = 
[print/freetype;graphics/png;devel/gmake;archivers/bzip2;lang/lua;devel/sdl-image;devel/sdl;graphics/pngcrush]
 FULLPKGNAME = stone-soup-0.9.1p0
 RDEPENDS = 
[print/freetype;lang/lua;graphics/png;devel/sdl-image;devel/desktop-file-utils;devel/sdl]
/usr/sbin/pkg_add -a bzip2-1.0.6 freetype-1.3.1p3 gmake-3.82p1 lua-5.1.5 
png-1.5.10 pngcrush-1.7.27 sdl-1.2.15p1 sdl-image-1.2.12
>>> Running prepare in games/stone-soup
===> games/stone-soup
===> stone-soup-0.9.1p0 depends on: pngcrush-* -> pngcrush-1.7.27
===> stone-soup-0.9.1p0 depends on: lua-* -> lua-5.1.5
===> stone-soup-0.9.1p0 depends on: gmake-* -> gmake-3.82p1
===> stone-soup-0.9.1p0 depends on: bzip2-* -> bzip2-1.0.6
===> stone-soup-0.9.1p0 depends on: sdl-* -> sdl-1.2.15p1
===> stone-soup-0.9.1p0 depends on: sdl-image-* -> sdl-image-1.2.12
===> stone-soup-0.9.1p0 depends on: freetype-* -> freetype-1.3.1p3
===> stone-soup-0.9.1p0 depends on: png-* -> png-1.5.10
===>  Verifying specs: c m stdc++ lua sqlite3 GL GLU SDL SDL_image freetype png 
pthread z c m stdc++ lua sqlite3 GL GLU SDL SDL_image freetype png pthread z
===>  found c.64.0 m.7.0 stdc++.54.0 lua.5.1 sqlite3.18.0 GL.12.0 GLU.7.0 
SDL.8.0 SDL_image.3.1 freetype.18.2 png.15.0 pthread.15.1 z.4.1
>>> Running patch in games/stone-soup
===> games/stone-soup
===>  Checking files for stone-soup-0.9.1p0
`/usr/ports/distfiles/stone_soup-0.9.1-nodeps.tar.bz2' is up to date.
===>  Extracting for stone-soup-0.9.1p0
===>  Patching for stone-soup-0.9.1p0
>>> Running configure in games/stone-soup
===> games/stone-soup
===>  Configuring for stone-soup-0.9.1p0
>>> Running build in games/stone-soup
===> games/stone-soup
===>  Building for stone-soup-0.9.1p0
which: advpng: Command not found.
* rebuilding crawl: new build flags or prefix
gmake: *** contrib: No such file or directory.  Stop.
gmake: *** [.contrib-libs] Error 2
*** Error code 2

Stop in /usr/ports/games/stone-soup (line 2462 of 
/usr/ports/infrastructure/mk/bsd.port.mk).
*** Error code 1

Stop in /usr/ports/games/stone-soup (line 2211 of 
/usr/ports/infrastructure/mk/bsd.port.mk).
===> Exiting games/stone-soup with an error
/bin/sh: exit 1: not found
*** Error code 127

Stop in /usr/ports (line 156 of 
/usr/ports/infrastructure/mk/bsd.port.subdir.mk).
Error: /usr/ports/packages/i386/all/stone-soup-0.9.1p0.tgz does not exist

-- 
Christian "naddy" Weisgerber  na...@mips.inka.de



New: asql-1.6

2012-04-24 Thread Pierre-Emmanuel André
Hi,

Small port for asql. Tested on @amd64.

>From pkg/DESCR:
ASQL is a simple tool to allow you to query Apache common logfiles
via SQL. (Only "Apache common" logfiles are currently supported.)
When asql starts up it creates a temporary SQLite database to hold
the contents of the parsed logfile(s) you might load. This temporary
database may then be queried directly via SQL.

Comments / Ok ?
Regards,

-- 
Pierre-Emmanuel André 
GPG key: 0x7AE329DC


asql-1.6.tgz
Description: application/tar-gz