FreeBSD Bugzilla – Attachment 176340 Details for
Bug 213949
[patch] x11-wm/bspwm: update to 0.9.2 and take maintainership
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
up to 0.9.2
bspwm_092.patch (text/plain), 3.96 KB, created by
Oleh Hushchenkov
on 2016-10-31 12:47:27 UTC
(
hide
)
Description:
up to 0.9.2
Filename:
MIME Type:
Creator:
Oleh Hushchenkov
Created:
2016-10-31 12:47:27 UTC
Size:
3.96 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 424995) >+++ Makefile (working copy) >@@ -1,11 +1,11 @@ >-# Created by: Anton Törnqvist <antont@inbox.lv> >+# Created by: Anton T?rnqvist <antont@inbox.lv> > # $FreeBSD$ > > PORTNAME= bspwm >-PORTVERSION= 0.9.1 >+PORTVERSION= 0.9.2 > CATEGORIES= x11-wm > >-MAINTAINER= ports@FreeBSD.org >+MAINTAINER= gor@clogic.com.ua > COMMENT= Tiling window manager based on binary space partitioning > > LICENSE= BSD2CLAUSE >Index: distinfo >=================================================================== >--- distinfo (revision 424995) >+++ distinfo (working copy) >@@ -1,2 +1,3 @@ >-SHA256 (baskerville-bspwm-0.9.1_GH0.tar.gz) = 02bb58a307acdec242eb4b8a62764ed53d01c30474dfb1bc09812d943773bb85 >-SIZE (baskerville-bspwm-0.9.1_GH0.tar.gz) = 82335 >+TIMESTAMP = 1477914289 >+SHA256 (baskerville-bspwm-0.9.2_GH0.tar.gz) = 33689d138d50f42444820b3a76b84fee7fa3af58e33ad589319c84e51fefdcf0 >+SIZE (baskerville-bspwm-0.9.2_GH0.tar.gz) = 92558 >Index: files/patch-Makefile >=================================================================== >--- files/patch-Makefile (revision 424995) >+++ files/patch-Makefile (working copy) >@@ -1,13 +1,14 @@ >---- Makefile.orig 2016-03-15 16:06:25 UTC >+--- Makefile.orig 2016-10-30 12:25:26 UTC > +++ Makefile >-@@ -1,15 +1,16 @@ >- VERSION := $(shell git describe 2> /dev/null || cat VERSION) >+@@ -1,17 +1,18 @@ >+ VERCMD ?= git describe 2> /dev/null >+ VERSION := $(shell $(VERCMD) || cat VERSION) > > -CPPFLAGS += -D_POSIX_C_SOURCE=200112L -DVERSION=\"$(VERSION)\" > +CPPFLAGS += $(shell pkg-config --cflags xcb-ewmh xcb-event xcb-icccm xcb-randr xcb-util xcb-xinerama) -DVERSION=\"$(VERSION)\" > CFLAGS += -std=c99 -pedantic -Wall -Wextra >--LDLIBS = -lm -lxcb -lxcb-util -lxcb-icccm -lxcb-ewmh -lxcb-randr -lxcb-xinerama >-+LDLIBS = $(shell pkg-config --libs xcb-ewmh xcb-event xcb-icccm xcb-randr xcb-util xcb-xinerama) -lm >+-LDLIBS = -lm -lxcb -lxcb-util -lxcb-keysyms -lxcb-icccm -lxcb-ewmh -lxcb-randr -lxcb-xinerama >++LDLIBS = $(shell pkg-config --libs xcb-keysyms xcb-ewmh xcb-event xcb-icccm xcb-randr xcb-util xcb-xinerama) -lm > > PREFIX ?= /usr/local > -BINPREFIX ?= $(PREFIX)/bin >@@ -14,6 +15,7 @@ > -MANPREFIX ?= $(PREFIX)/share/man > -DOCPREFIX ?= $(PREFIX)/share/doc/bspwm > -BASHCPL ?= $(PREFIX)/share/bash-completion/completions >+-FISHCPL ?= $(PREFIX)/share/fish/vendor_completions.d > -ZSHCPL ?= $(PREFIX)/share/zsh/site-functions > +BINPREFIX = $(PREFIX)/bin > +MANPREFIX = $(PREFIX)/man >@@ -20,11 +22,12 @@ > +DOCPREFIX = $(PREFIX)/share/doc/bspwm > +EXPREFIX = $(PREFIX)/share/examples/bspwm > +BASHCPL = $(PREFIX)/share/bash-completion/completions >++FISHCPL = $(PREFIX)/share/fish/vendor_completions.d > +ZSHCPL = $(PREFIX)/share/zsh/site-functions > >- MD_DOCS = README.md doc/CHANGELOG.md doc/CONTRIBUTING.md doc/INSTALL.md doc/MISC.md doc/TODO.md >+ MD_DOCS = README.md doc/CHANGELOG.md doc/CONTRIBUTING.md doc/INSTALL.md doc/MISC.md doc/TODO.md > XSESSIONS ?= $(PREFIX)/share/xsessions >-@@ -35,20 +36,36 @@ bspc: $(CLI_OBJ) >+@@ -37,22 +38,38 @@ bspc: $(CLI_OBJ) > > install: > mkdir -p "$(DESTDIR)$(BINPREFIX)" >@@ -40,6 +43,9 @@ > mkdir -p "$(DESTDIR)$(BASHCPL)" > - cp -p contrib/bash_completion "$(DESTDIR)$(BASHCPL)"/bspc > + ${BSD_INSTALL_DATA} contrib/bash_completion "$(DESTDIR)$(BASHCPL)"/bspc >+ mkdir -p "$(DESTDIR)$(FISHCPL)" >+- cp -p contrib/fish_completion "$(DESTDIR)$(FISHCPL)"/bspc.fish >++ ${BSD_INSTALL_DATA} contrib/fish_completion "$(DESTDIR)$(FISHCPL)"/bspc.fish > mkdir -p "$(DESTDIR)$(ZSHCPL)" > - cp -p contrib/zsh_completion "$(DESTDIR)$(ZSHCPL)"/_bspc > + ${BSD_INSTALL_DATA} contrib/zsh_completion "$(DESTDIR)$(ZSHCPL)"/_bspc >Index: pkg-plist >=================================================================== >--- pkg-plist (revision 424995) >+++ pkg-plist (working copy) >@@ -3,5 +3,6 @@ > man/man1/bspc.1.gz > man/man1/bspwm.1.gz > share/bash-completion/completions/bspc >+share/fish/vendor_completions.d/bspc.fish > share/xsessions/bspwm.desktop > share/zsh/site-functions/_bspc
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 213949
:
176340
|
176406