Re: [dev] [faq] How do I push to st repository?

2015-03-17 Thread Nick
Quoth Greg Reagle: I have a pretty good basic understanding of git and I've created, merged, and deleted branches, for instance, but a good solid education in git will be very useful. Thanks again. I recommend these: https://www.youtube.com/watch?v=1ffBJ4sVUb4

Re: [dev] [PATCH] Use git to create dist archives.

2015-03-17 Thread Roberto E. Vargas Caballero
Hi, I considered that, but thought it the lesser evil. *Ideally*, build systems and version control systems shouldn't be tightly coupled, if at all. I have my own prejudices, and we can agree to cordially disagree on such a trivial and here insignificant matter. Why do you suppose that

Re: [dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread FRIGN
On Tue, 17 Mar 2015 21:27:56 +0100 Antenore Gatta anten...@simbiosi.org wrote: Hey Antenore Is there anything quite urgent|interesting|waitingforme task ? = ls no (-C), -S, -f, -m, -s, -x = nl no -d, -f, -h, -p

Re: [dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread Dimitris Papastamos
On Tue, Mar 17, 2015 at 09:27:56PM +0100, Antenore Gatta wrote: On 03/17/2015 09:03 PM, Dimitris Papastamos wrote: On Tue, Mar 17, 2015 at 05:54:42PM +0100, anten...@simbiosi.org wrote: Hi All, As promised find here after a patch that add the -i option to the cp command. As most of the

Re: [dev] [st] Support the DECSCUSR CSI escape sequence

2015-03-17 Thread Ivan Delalande
Hi, On Tue, Mar 17, 2015 at 09:04:32PM +0100, LemonBoy wrote: --- st.c | 47 ++- 1 file changed, 38 insertions(+), 9 deletions(-) diff --git a/st.c b/st.c index 836ae21..37da82e 100644 --- a/st.c +++ b/st.c @@ -257,6 +257,7 @@ typedef struct

[dev] [st] Support the DECSCUSR CSI escape sequence

2015-03-17 Thread LemonBoy
--- st.c | 64 +++- 1 file changed, 51 insertions(+), 13 deletions(-) diff --git a/st.c b/st.c index 836ae21..d8e9b94 100644 --- a/st.c +++ b/st.c @@ -197,14 +197,14 @@ typedef struct { } TCursor; /* CSI Escape sequence structs */

Re: [dev] [sbase] No -lrt in config.mk

2015-03-17 Thread Dimitris Papastamos
On Mon, Mar 16, 2015 at 09:42:50PM -0700, Eric Pruitt wrote: Is there a reason -lrt is missing from config.mk in sbase? I recall seeing some messages saying that OpenBSD lacks -lrt support (or something to that effect), but since its a POSIX library and is required to compile find, it seems

[dev] [sbase][patch] untypedef expr, find, test

2015-03-17 Thread Evan Gates
As is existing style in sbase, get rid of typedefs for user defined types. Still have to do cut and sed. I assume we shouldn't untypedef libutf as that's an external project. -Evan From d22d6fb25f5fced8331b663c5d9eabf2e24f28fc Mon Sep 17 00:00:00 2001 From: Evan Gates evan.ga...@gmail.com Date:

Re: [dev] [st] segfault when selecting text

2015-03-17 Thread Henrique Lengler
On Tue, Mar 17, 2015 at 07:28:27PM -0400, Alex Pilon wrote: The reason I ask is because in 246c348, and all the way back to 2fcfea1bf149f839cdbcba5c1efc7c4ce31f6d95 at least, that's a comment line. Are you 28259f5750f0dc7f52bbaf8b746ec3dc576a58ee? If so, then it would be that dereferencing

[dev] [st] segfault when selecting text

2015-03-17 Thread Henrique Lengler
I'm running the last git-st on OpenBSD, and sometimes when I select text, I get a segfault. I created a core and I debugged it, the log is attached. The case of this log, is a situation that I cat a file, and I copy the result. Does anyone know about this problem? Any solution? -- Regards

Re: [dev] [st] segfault when selecting text

2015-03-17 Thread Alex Pilon
On Tue, Mar 17, 2015 at 07:38:46PM -0300, Henrique Lengler wrote: I'm running the last git-st on OpenBSD, What's your HEAD's ID? The reason I ask is because in 246c348, and all the way back to 2fcfea1bf149f839cdbcba5c1efc7c4ce31f6d95 at least, that's a comment line. Are you

Re: [dev] [st] Bugs in scrollback buffer patch

2015-03-17 Thread Alex Pilon
On Sat, Mar 14, 2015 at 01:08:14PM +0100, Roberto E. Vargas Caballero wrote: * You can scroll past the top line in the buffer. Fixed with the attached diff. You can push your changes to the wiki if you want. I will, and again when I fix those two other items. School priorities. Strake

Re: [dev] [PATCH] Use git to create dist archives.

2015-03-17 Thread Alex Pilon
On Tue, Mar 17, 2015 at 06:59:50AM +0100, Roberto E. Vargas Caballero wrote: Why do you suppose that every person making a distribution package is going to have a git repository?. We use git as our central repository, but it doesn't mean we force to everyone to use it. I don't, but it's not as

[dev] [st] Support the DECSCUSR CSI escape sequence

2015-03-17 Thread LemonBoy
--- st.c | 47 ++- 1 file changed, 38 insertions(+), 9 deletions(-) diff --git a/st.c b/st.c index 836ae21..37da82e 100644 --- a/st.c +++ b/st.c @@ -257,6 +257,7 @@ typedef struct { int ch; /* char height */ int cw; /* char width */

Re: [dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread Antenore Gatta
On 03/17/2015 09:03 PM, Dimitris Papastamos wrote: On Tue, Mar 17, 2015 at 05:54:42PM +0100, anten...@simbiosi.org wrote: Hi All, As promised find here after a patch that add the -i option to the cp command. As most of the code comes from OpenBSD, I'm not sure is suitable for suckless (

Re: [dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread Dimitris Papastamos
On Tue, Mar 17, 2015 at 05:54:42PM +0100, anten...@simbiosi.org wrote: Hi All, As promised find here after a patch that add the -i option to the cp command. As most of the code comes from OpenBSD, I'm not sure is suitable for suckless ( License/Copyright issues? Style? ). If you have

Re: [dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread Antenore Gatta
On 03/17/2015 09:37 PM, FRIGN wrote: = ls no (-C), -S, -f, -m, -s, -x = nl no -d, -f, -h, -p sortno -m, -o, -d, -f, -i = xargs no -I,

Re: [dev] Scope of sbase and ubase

2015-03-17 Thread Alexander Huemer
Hi. On Mon, Mar 09, 2015 at 02:05:39PM +0100, FRIGN wrote: On Mon, 9 Mar 2015 01:51:59 +0100 Alexander Huemer alexander.hue...@xx.vu wrote: Hey Alexander, Thanks for you answer FRIGN. while reading the README file of sbase I noticed `sponge`, remembered that that's from moreutils and

Re: [dev] Scope of sbase and ubase

2015-03-17 Thread Dimitris Papastamos
Feel free to send a documentation patch.

[dev][general] - Greetings introduction

2015-03-17 Thread Antenore Gatta
Hi all, I'm Antenore Gatta, I have some experience in development and several years in other CS domains. I'm here to learn and I hope to pay back with some good and useful patches. At the moment, I'm mainly working on sbase and I'll submit, very very very soon, a patch for review about the

[dev] [surf] CPU burn on bitbucket?

2015-03-17 Thread Markus Teich
Heyho, can you also use the current surf master to heat up your room when visiting bitbucket[0]? I'm using webkit-2.4.8-r200 from the default gentoo tree. 0: https://bitbucket.org/account/signin/ --Markus

Re: [dev] [surf] CPU burn on bitbucket?

2015-03-17 Thread Florian Bruhin
* Markus Teich markus.te...@stusta.mhn.de [2015-03-17 17:49:05 +0100]: Heyho, can you also use the current surf master to heat up your room when visiting bitbucket[0]? I'm using webkit-2.4.8-r200 from the default gentoo tree. 0: https://bitbucket.org/account/signin/ --Markus That seems

[dev][sbase][PATCH] Add -i option to cp command

2015-03-17 Thread anten...@simbiosi.org
Hi All, As promised find here after a patch that add the -i option to the cp command. As most of the code comes from OpenBSD, I'm not sure is suitable for suckless ( License/Copyright issues? Style? ). If you have better ideas I'll try to improve it, otherwise I was thinkoing to go ahead with mv