FreeBSD Bugzilla – Attachment 192093 Details for
Bug 227105
x11-wm/bspwm: update to 0.9.5
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch v2
bspwm094.diff (text/plain), 7.74 KB, created by
Oleh Hushchenkov
on 2018-04-02 09:14:14 UTC
(
hide
)
Description:
Patch v2
Filename:
MIME Type:
Creator:
Oleh Hushchenkov
Created:
2018-04-02 09:14:14 UTC
Size:
7.74 KB
patch
obsolete
>Index: Makefile >=================================================================== >--- Makefile (revision 466142) >+++ Makefile (working copy) >@@ -2,7 +2,7 @@ > # $FreeBSD$ > > PORTNAME= bspwm >-PORTVERSION= 0.9.3 >+PORTVERSION= 0.9.4 > CATEGORIES= x11-wm > > MAINTAINER= gor@clogic.com.ua >@@ -16,7 +16,7 @@ > libxcb-keysyms.so:x11/xcb-util-keysyms > RUN_DEPENDS= sxhkd:x11/sxhkd > >-USES= gmake pkgconfig >+USES= gmake localbase:ldflags > > USE_XORG= xcb > >@@ -28,6 +28,37 @@ > PORTDOCS= * > PORTEXAMPLES= * > >-OPTIONS_DEFINE= DOCS EXAMPLES >+PLIST_FILES= bin/bspc \ >+ bin/bspwm \ >+ man/man1/bspc.1.gz \ >+ man/man1/bspwm.1.gz > >+OPTIONS_DEFINE= DOCS EXAMPLES CONTRIB >+CONTRIB_DESC= Install contrib (shell completions, etc.) >+ >+do-install: >+ ${MKDIR} ${STAGEDIR}${BINDIR} ${STAGEDIR}${MANPREFIX}/man/man1 >+ ${INSTALL_PROGRAM} ${WRKSRC}/bspc ${STAGEDIR}${PREFIX}/bin >+ ${INSTALL_PROGRAM} ${WRKSRC}/bspwm ${STAGEDIR}${PREFIX}/bin >+ ${INSTALL_MAN} ${WRKSRC}/doc/bspc.1 ${STAGEDIR}${MANPREFIX}/man/man1 >+ ${INSTALL_MAN} ${WRKSRC}/doc/bspwm.1 ${STAGEDIR}${MANPREFIX}/man/man1 >+ >+post-install-DOCS-on: >+ ${MKDIR} ${STAGEDIR}${DOCSDIR} >+ ${INSTALL_DATA} ${WRKSRC}/doc/*.md ${STAGEDIR}${DOCSDIR} >+ >+post-install-EXAMPLES-on: >+ ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} >+ cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} >+ >+post-install-CONTRIB-on: >+ ${MKDIR} ${STAGEDIR}${PREFIX}/share/bash-completion/completions >+ ${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d >+ ${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions >+ ${MKDIR} ${STAGEDIR}${PREFIX}/share/xsessions >+ ${INSTALL_DATA} ${WRKSRC}/contrib/bash_completion ${STAGEDIR}${PREFIX}/share/bash-completion/completions/bspc >+ ${INSTALL_DATA} ${WRKSRC}/contrib/fish_completion ${STAGEDIR}${PREFIX}/share/fish/vendor_completions.d/bspc.fish >+ ${INSTALL_DATA} ${WRKSRC}/contrib/zsh_completion ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_bspc >+ ${INSTALL_DATA} ${WRKSRC}/contrib/freedesktop/bspwm.desktop ${STAGEDIR}${PREFIX}/share/xsessions/bspwm.desktop >+ > .include <bsd.port.mk> >Index: distinfo >=================================================================== >--- distinfo (revision 466142) >+++ distinfo (working copy) >@@ -1,3 +1,3 @@ >-TIMESTAMP = 1500268835 >-SHA256 (baskerville-bspwm-0.9.3_GH0.tar.gz) = b356e3ff5754c63c94b36d904274c0ba16f9a8494e78a1c93bb23113f891bc9d >-SIZE (baskerville-bspwm-0.9.3_GH0.tar.gz) = 95779 >+TIMESTAMP = 1522315256 >+SHA256 (baskerville-bspwm-0.9.4_GH0.tar.gz) = 7c921e8d8f98c2c7b5e0d389a7838fc82b819adc773f931d46590db9fe06597a >+SIZE (baskerville-bspwm-0.9.4_GH0.tar.gz) = 106857 >Index: files/patch-Makefile >=================================================================== >--- files/patch-Makefile (revision 466142) >+++ files/patch-Makefile (nonexistent) >@@ -1,85 +0,0 @@ >---- Makefile.orig 2017-07-14 19:01:20 UTC >-+++ Makefile >-@@ -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-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 >--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 >-+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 >- XSESSIONS ?= $(PREFIX)/share/xsessions >-@@ -39,23 +40,44 @@ bspc: $(CLI_OBJ) >- >- install: >- mkdir -p "$(DESTDIR)$(BINPREFIX)" >-- cp -pf bspwm "$(DESTDIR)$(BINPREFIX)" >-- cp -pf bspc "$(DESTDIR)$(BINPREFIX)" >-+ ${BSD_INSTALL_PROGRAM} bspwm "$(DESTDIR)$(BINPREFIX)" >-+ ${BSD_INSTALL_PROGRAM} bspc "$(DESTDIR)$(BINPREFIX)" >- mkdir -p "$(DESTDIR)$(MANPREFIX)"/man1 >-- cp -p doc/bspwm.1 "$(DESTDIR)$(MANPREFIX)"/man1 >-- cp -Pp doc/bspc.1 "$(DESTDIR)$(MANPREFIX)"/man1 >-+ ${BSD_INSTALL_MAN} doc/bspwm.1 "$(DESTDIR)$(MANPREFIX)"/man1 >-+ ${BSD_INSTALL_MAN} doc/bspc.1 "$(DESTDIR)$(MANPREFIX)"/man1 >- 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 >- mkdir -p "$(DESTDIR)$(DOCPREFIX)" >-- cp -p $(MD_DOCS) "$(DESTDIR)$(DOCPREFIX)" >-- mkdir -p "$(DESTDIR)$(DOCPREFIX)"/examples >-- cp -pr examples/* "$(DESTDIR)$(DOCPREFIX)"/examples >-+ ${BSD_INSTALL_DATA} $(MD_DOCS) "$(DESTDIR)$(DOCPREFIX)" >-+ mkdir -p "$(DESTDIR)$(EXPREFIX)" >-+ ${BSD_INSTALL_DATA} examples/bspwmrc "$(DESTDIR)$(EXPREFIX)" >-+ ${BSD_INSTALL_DATA} examples/sxhkdrc "$(DESTDIR)$(EXPREFIX)" >-+ mkdir -p "$(DESTDIR)$(EXPREFIX)"/external_rules >-+ ${BSD_INSTALL_DATA} examples/external_rules/bspwmrc \ >-+ "$(DESTDIR)$(EXPREFIX)"/external_rules >-+ ${BSD_INSTALL_DATA} examples/external_rules/external_rules \ >-+ "$(DESTDIR)$(EXPREFIX)"/external_rules >-+ mkdir -p "$(DESTDIR)$(EXPREFIX)"/external_rules/pseudo_automatic_mode >-+ ${BSD_INSTALL_DATA} examples/external_rules/pseudo_automatic_mode/* \ >-+ "$(DESTDIR)$(EXPREFIX)"/external_rules/pseudo_automatic_mode >-+ mkdir -p "$(DESTDIR)$(EXPREFIX)"/loop >-+ ${BSD_INSTALL_DATA} examples/loop/* \ >-+ "$(DESTDIR)$(EXPREFIX)"/loop >-+ mkdir -p "$(DESTDIR)$(EXPREFIX)"/overlapping_borders >-+ ${BSD_INSTALL_DATA} examples/overlapping_borders/* \ >-+ "$(DESTDIR)$(EXPREFIX)"/overlapping_borders >-+ mkdir -p "$(DESTDIR)$(EXPREFIX)"/panel >-+ ${BSD_INSTALL_DATA} examples/panel/* \ >-+ "$(DESTDIR)$(EXPREFIX)"/panel >-+ mkdir -p "$(DESTDIR)$(EXPREFIX)"/receptacles >-+ ${BSD_INSTALL_DATA} examples/receptacles/* \ >-+ "$(DESTDIR)$(EXPREFIX)"/receptacles >- mkdir -p "$(DESTDIR)$(XSESSIONS)" >-- cp -p contrib/freedesktop/bspwm.desktop "$(DESTDIR)$(XSESSIONS)" >-+ ${BSD_INSTALL_DATA} contrib/freedesktop/bspwm.desktop "$(DESTDIR)$(XSESSIONS)" >- >- uninstall: >- rm -f "$(DESTDIR)$(BINPREFIX)"/bspwm > >Property changes on: files/patch-Makefile >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: pkg-plist >=================================================================== >--- pkg-plist (revision 466142) >+++ pkg-plist (nonexistent) >@@ -1,8 +0,0 @@ >-bin/bspc >-bin/bspwm >-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 > >Property changes on: pkg-plist >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property
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
Flags:
o.hushchenkov
:
maintainer-approval+
Actions:
View
|
Diff
Attachments on
bug 227105
:
191973
|
192093
|
192581
|
192643