Re: dmenu: update to 4.5

2012-04-09 Thread Gleydson Soares
On Tue, Apr 03, 2012 at 10:23:55PM +0100, Stuart Henderson wrote:
 On 2012/04/03 17:16, Gleydson Soares wrote:
  here is a diff that update x11/dmenu to 4.5.
 
 OK for my uses, but if someone has a multi-monitor setup it would
 be nice to confirm that this doesn't cause any problems:-
 
  * Detects monitor based on input focus, not just pointer location. 

i did tests in my multihead set up today, works fine.
jim@ are you OK with this update?



Re: dmenu: update to 4.5

2012-04-04 Thread David Coppa
On Tue, Apr 3, 2012 at 10:16 PM, Gleydson Soares gsoa...@openbsd.org wrote:
 hello

 here is a diff that update x11/dmenu to 4.5.

 following changelog:

 * Detects monitor based on input focus, not just pointer location.
 * Token matching instead of just substrings.
 * XIM composition support.
 * Paste from clipboard with C-S-y.
 * stest(1) replaces lsx(1).
 * M-[Gghjkl] restored for vi-like navigation.
 * And a couple of bug fixes.

 works for me, i am running it daily +spectrwm
 looking for comments,tests and OKs,

OK for me too (tested amd64).

ciao,
David



Re: dmenu: update to 4.5

2012-04-04 Thread Daniel Bolgheroni
On Tue, Apr 03, 2012 at 05:16:22PM -0300, Gleydson Soares wrote:

 works for me, i am running it daily +spectrwm
 looking for comments,tests and OKs,

Works for me on amd64 too.



dmenu: update to 4.5

2012-04-03 Thread Gleydson Soares
hello 

here is a diff that update x11/dmenu to 4.5.

following changelog:

* Detects monitor based on input focus, not just pointer location. 
* Token matching instead of just substrings. 
* XIM composition support. 
* Paste from clipboard with C-S-y. 
* stest(1) replaces lsx(1). 
* M-[Gghjkl] restored for vi-like navigation. 
* And a couple of bug fixes.

works for me, i am running it daily +spectrwm
looking for comments,tests and OKs,
Index: Makefile
===
RCS file: /cvs/ports/x11/dmenu/Makefile,v
retrieving revision 1.17
diff -u -p -r1.17 Makefile
--- Makefile20 Sep 2011 20:34:52 -  1.17
+++ Makefile3 Apr 2012 18:07:52 -
@@ -1,7 +1,7 @@
 # $OpenBSD: Makefile,v 1.17 2011/09/20 20:34:52 gsoares Exp $
 
 COMMENT=   dynamic menu for X11
-DISTNAME=  dmenu-4.4.1
+DISTNAME=  dmenu-4.5
 
 CATEGORIES=x11
 HOMEPAGE=  http://tools.suckless.org/dmenu
Index: distinfo
===
RCS file: /cvs/ports/x11/dmenu/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- distinfo20 Sep 2011 20:34:52 -  1.12
+++ distinfo3 Apr 2012 18:07:52 -
@@ -1,5 +1,5 @@
-MD5 (dmenu-4.4.1.tar.gz) = 0YqqmsMmX5LsNKDfDLbr1A==
-RMD160 (dmenu-4.4.1.tar.gz) = ShVIbq8Z/d6T52PsNAAB5edKwqQ=
-SHA1 (dmenu-4.4.1.tar.gz) = Qvi7S4v3KEDMND8LPzGXWiI1Dlo=
-SHA256 (dmenu-4.4.1.tar.gz) = bWQWRathDZjYR7mmRQC+fMDnW/9TQlNJBpNq+m3bRVA=
-SIZE (dmenu-4.4.1.tar.gz) = 9318
+MD5 (dmenu-4.5.tar.gz) = nEYWntcDcy7FLtlGwn2EtA==
+RMD160 (dmenu-4.5.tar.gz) = t3GoTg6aj7spMXwH+nf5K2Tc3C8=
+SHA1 (dmenu-4.5.tar.gz) = cMGhO5ULewyxvDXjDG6GGng1mVM=
+SHA256 (dmenu-4.5.tar.gz) = CCzWmNghJcoLOYkAb7hKxGdcKlWFv1u4rw6gnPuVqFA=
+SIZE (dmenu-4.5.tar.gz) = 11543
Index: patches/patch-Makefile
===
RCS file: /cvs/ports/x11/dmenu/patches/patch-Makefile,v
retrieving revision 1.1
diff -u -p -r1.1 patch-Makefile
--- patches/patch-Makefile  18 Aug 2011 14:13:28 -  1.1
+++ patches/patch-Makefile  3 Apr 2012 18:07:52 -
@@ -1,9 +1,6 @@
 $OpenBSD: patch-Makefile,v 1.1 2011/08/18 14:13:28 gsoares Exp $
-
-dmenu: lsx conflicts with comms/lrzsz
-
 Makefile.orig  Tue Jul 19 17:31:28 2011
-+++ Makefile   Tue Jul 26 14:51:15 2011
+--- Makefile.orig  Tue Apr  3 12:17:59 2012
 Makefile   Tue Apr  3 12:19:29 2012
 @@ -16,17 +16,17 @@ options:
  
  .c.o:
@@ -11,39 +8,17 @@ dmenu: lsx conflicts with comms/lrzsz
 -  @${CC} -c $ ${CFLAGS}
 +  ${CC} -c $ ${CFLAGS}
  
- ${OBJ}: config.mk
+ ${OBJ}: config.mk draw.h
  
  dmenu: dmenu.o draw.o
@echo CC -o $@
 -  @${CC} -o $@ dmenu.o draw.o ${LDFLAGS}
 +  ${CC} -o $@ dmenu.o draw.o ${LDFLAGS}
  
- lsx: lsx.o
+ stest: stest.o
@echo CC -o $@
--  @${CC} -o $@ lsx.o ${LDFLAGS}
-+  ${CC} -o $@ lsx.o ${LDFLAGS}
+-  @${CC} -o $@ stest.o ${LDFLAGS}
++  ${CC} -o $@ stest.o ${LDFLAGS}
  
  clean:
@echo cleaning
-@@ -43,16 +43,17 @@ dist: clean
- install: all
-   @echo installing executables to ${DESTDIR}${PREFIX}/bin
-   @mkdir -p ${DESTDIR}${PREFIX}/bin
--  @cp -f dmenu dmenu_run lsx ${DESTDIR}${PREFIX}/bin
-+  @cp -f dmenu dmenu_run ${DESTDIR}${PREFIX}/bin
-+  @cp -f lsx ${DESTDIR}${PREFIX}/bin/dmenu_lsx
-   @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu
-   @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_run
--  @chmod 755 ${DESTDIR}${PREFIX}/bin/lsx
-+  @chmod 755 ${DESTDIR}${PREFIX}/bin/dmenu_lsx
-   @echo installing manual pages to ${DESTDIR}${MANPREFIX}/man1
-   @mkdir -p ${DESTDIR}${MANPREFIX}/man1
-   @sed s/VERSION/${VERSION}/g  dmenu.1  
${DESTDIR}${MANPREFIX}/man1/dmenu.1
--  @sed s/VERSION/${VERSION}/g  lsx.1  
${DESTDIR}${MANPREFIX}/man1/lsx.1
-+  @sed s/VERSION/${VERSION}/g  lsx.1  
${DESTDIR}${MANPREFIX}/man1/dmenu_lsx.1
-   @chmod 644 ${DESTDIR}${MANPREFIX}/man1/dmenu.1
--  @chmod 644 ${DESTDIR}${MANPREFIX}/man1/lsx.1
-+  @chmod 644 ${DESTDIR}${MANPREFIX}/man1/dmenu_lsx.1
- 
- uninstall:
-   @echo removing executables from ${DESTDIR}${PREFIX}/bin
Index: patches/patch-config_mk
===
RCS file: /cvs/ports/x11/dmenu/patches/patch-config_mk,v
retrieving revision 1.9
diff -u -p -r1.9 patch-config_mk
--- patches/patch-config_mk 20 Sep 2011 20:34:52 -  1.9
+++ patches/patch-config_mk 3 Apr 2012 18:07:52 -
@@ -1,8 +1,8 @@
 $OpenBSD: patch-config_mk,v 1.9 2011/09/20 20:34:52 gsoares Exp $
 config.mk.orig Mon Sep 19 06:48:13 2011
-+++ config.mk  Tue Sep 20 11:00:07 2011
+--- config.mk.orig Sun Jan  8 10:18:43 2012
 config.mk  Tue Apr  3 12:08:37 2012
 @@ -2,11 +2,11 @@
- VERSION = 4.4.1
+ VERSION = 4.5
  
  # paths
 -PREFIX = /usr/local
@@ -17,14 +17,15 @@ $OpenBSD: patch-config_mk,v 1.9 2011/09/
  
  # Xinerama, comment if you don't

Re: dmenu: update to 4.5

2012-04-03 Thread Gonzalo L. R.
works fine here on amd64 with last spectrwm. :)

El 04/03/12 17:16, Gleydson Soares escribió:
 hello 
 
 here is a diff that update x11/dmenu to 4.5.
 
 following changelog:
 
 * Detects monitor based on input focus, not just pointer location. 
 * Token matching instead of just substrings. 
 * XIM composition support. 
 * Paste from clipboard with C-S-y. 
 * stest(1) replaces lsx(1). 
 * M-[Gghjkl] restored for vi-like navigation. 
 * And a couple of bug fixes.
 
 works for me, i am running it daily +spectrwm
 looking for comments,tests and OKs,

-- 
Sending from my Computer.



Re: dmenu: update to 4.5

2012-04-03 Thread Stuart Henderson
On 2012/04/03 17:16, Gleydson Soares wrote:
 here is a diff that update x11/dmenu to 4.5.

OK for my uses, but if someone has a multi-monitor setup it would
be nice to confirm that this doesn't cause any problems:-

 * Detects monitor based on input focus, not just pointer location.