Re: xombrero dumps core

2013-05-09 Thread Allan Streib
.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP I am still seeing crashes, latest produced: xombrero in free(): error: chunk is already free (0x1341276f2e40) Abort trap (core dumped) -- Allan Streib

[NEW] apt-mirror, first port, questions

2020-11-12 Thread Allan Streib
Hi all, First time porter, thought this seemed like something simple to get my feet wet but I immediately ran into a few questions. I wanted to set up a local Ubuntu repository mirror on my network, using an OpenBSD machine. apt-mirror is the tool for this, it's basically a perl script that uses

Re: [NEW] apt-mirror, first port, questions

2020-11-22 Thread Allan Streib
Stuart Henderson writes: > Since we don't seem to be making any progress on agreeing on an > additional uid range to use for ports (anything proposed so far either > bumps into ranges used in some developer large installations, or uses > high numbers resulting in concerns about large

New: textproc/csvquote

2021-10-17 Thread Allan Streib
This is a little utility that I have found useful when processing CSV files that may contain delimeters or newlines within data fields. https://github.com/dbro/csvquote The project provides no release/tags or man page. I offer the attached port for comments/testing. I have tested only on

Re: a bearable browser

2021-12-20 Thread Allan Streib
I have used Firefox from packages, with uBlock Origin, for several years. I used to favor Chrome, it seemed to do better with Google stuff like gmail, docs, sheets, etc. but haven't noticed that lately. Every once in a while some site with some runaway JS garbage will bring Firefox to its

Re: New: textproc/csvquote

2021-10-29 Thread Allan Streib
On Fri, Oct 29, 2021, at 2:18 PM, Thomas Frohwein wrote: > On Fri, Oct 29, 2021 at 05:40:13PM +0100, Stuart Henderson wrote: > > Thanks - this is ok with me > > committed, thanks Thank you! > > > > On 2021/10/29 13:19, Omar Polo wrote: > > > >> I'm attaching an improved version with: > > > >>

sysutils/usmb question

2022-04-15 Thread Allan Streib
Is anyone using this port successfully? I'm unable to get past an error "fuse_mount: Permission denied" and preliminary efforts with ktrace didn't reveal any obvious problem. I'm wondering if there is anything non-obvious about the configuration? Allan

Re: sysutils/usmb question

2022-04-15 Thread Allan Streib
On Fri, Apr 15, 2022, at 5:18 PM, Stuart Henderson wrote: > Note that fuse mounts on OpenBSD require running as root. Aha. It did work as root, and I found that the permission denied was on /dev/fuse0. I don't know why I didn't see that in the ktrace earlier but I tried again and it did get

Re: howto update an existing port ?

2023-01-29 Thread Allan Streib
On Sun, Jan 29, 2023, at 14:26, ςЎβξЯиęł ŁĮωέ wrote: > does anyone have a good howto update an existing port ? for instance > neovim - from 0.7.2 to 0.8.2 'man ports' and https://www.openbsd.org/faq/ports/

Re: Question about net/curl and SFTP

2023-06-08 Thread Allan Streib
On Thu, Jun 8, 2023, at 03:01, Stuart Henderson wrote: > I don't recommend that. It affects the library too, which is used > by many programs in ports. > > There are other ways to do this, including lftp: > > $ yes | head -500 | lftp sftp://hostname -e 'put /dev/stdin -o /tmp/file' > > and rclone

Re: Question about net/curl and SFTP

2023-06-07 Thread Allan Streib
On Wed, Jun 7, 2023, at 12:37, Vlad Meșco wrote: > Curl is built without sftp or scp support; my guess is because "why > would you?" I would just use the sftp utility itself, except it doesn't allow reading the standard input for the data to transfer. curl does, thus my attempt to use it in

Question about net/curl and SFTP

2023-06-07 Thread Allan Streib
My goal is to copy from stdin to a remote system via sftp in a pipeline. I thought curl would allow this with its "-T" argument by providing "-" as the local filename to transfer, but the result was: curl: (1) Protocol "sftp" not supported or disabled in libcurl I tried to search the list

Re: Question about net/curl and SFTP

2023-06-07 Thread Allan Streib
On Wed, Jun 7, 2023, at 13:35, Vlad Meșco wrote: > On Wed, Jun 07, 2023 at 12:19:19PM -0600, Abel Abraham Camarillo Ojeda wrote: >> You can also use plain ssh with something like: >> >> program | ssh -n user@host 'cat > /route/to/destfile' > > I agree with Abel, that's the best choice if you can

net/pidgin: openssl: send failed: -1 with purple-teams

2024-04-18 Thread Allan Streib
We use Teams at work now. I built purple-teams (https://github.com/EionRobb/purple-teams) and it mostly works, however intermittently pidgin (or finch) becomes unresponsive, consuming near 100% of a CPU for a minute or two, then settles down. I ran finch with the PURPLE_VERBOSE_DEBUG environment

Re: net/pidgin: openssl: send failed: -1 with purple-teams

2024-04-19 Thread Allan Streib
pleSslConnection *g return (-1); } - purple_debug_error("openssl", "send failed: %zi\n", s); - s = 0; + purple_debug_error("openssl", "send failed: %d\n", ret); + er