This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goserver. from 768a609 debian/x2goserver.manpages: install x2goupdateoptionsstring man page. new 44902b9 x2goserver/Makefile: don't quote POD_SCRIPTS, because of... make. new c6c6232 x2goserver/Makefile: install man1 files and dirs, too. The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: debian/changelog | 2 ++ x2goserver/Makefile | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit 44902b99423b8b93d7a051c5ba993fb6627ee82a Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Dec 13 11:37:08 2018 +0100 x2goserver/Makefile: don't quote POD_SCRIPTS, because of... make. --- debian/changelog | 1 + x2goserver/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index edcbff2..630b3e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -74,6 +74,7 @@ x2goserver (4.1.0.4-0x2go1) UNRELEASED; urgency=medium usage. - x2goserver/Makefile: add x2goupdateoptionsstring POD-to-man-page handling. + - x2goserver/Makefile: don't quote POD_SCRIPTS, because of... make. * debian/control: + Build-depend upon lsb-release for distro version detection. * debian/x2goserver.manpages: diff --git a/x2goserver/Makefile b/x2goserver/Makefile index f76fdf2..36ea410 100755 --- a/x2goserver/Makefile +++ b/x2goserver/Makefile @@ -23,7 +23,7 @@ BIN_SCRIPTS=$(shell cd bin && echo *) SBIN_SCRIPTS=$(shell cd sbin && echo *) LIB_FILES=$(shell cd lib && echo *) FEATURE_SCRIPTS=$(shell cd share/x2gofeature.d && echo *.features) -POD_SCRIPTS="sbin/x2gocleansessions.8 bin/x2goupdateoptionsstring.1" +POD_SCRIPTS=sbin/x2gocleansessions.8 bin/x2goupdateoptionsstring.1 man_pages = `cd man && find * -type f` -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goserver.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goserver. commit c6c6232cc73da2baf309c72e71b58cded4269c89 Author: Mihai Moldovan <ionic@ionic.de> Date: Thu Dec 13 11:42:02 2018 +0100 x2goserver/Makefile: install man1 files and dirs, too. --- debian/changelog | 1 + x2goserver/Makefile | 3 +++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 630b3e4..33a5855 100644 --- a/debian/changelog +++ b/debian/changelog @@ -75,6 +75,7 @@ x2goserver (4.1.0.4-0x2go1) UNRELEASED; urgency=medium - x2goserver/Makefile: add x2goupdateoptionsstring POD-to-man-page handling. - x2goserver/Makefile: don't quote POD_SCRIPTS, because of... make. + - x2goserver/Makefile: install man1 files and dirs, too. * debian/control: + Build-depend upon lsb-release for distro version detection. * debian/x2goserver.manpages: diff --git a/x2goserver/Makefile b/x2goserver/Makefile index 36ea410..b49e73a 100755 --- a/x2goserver/Makefile +++ b/x2goserver/Makefile @@ -102,6 +102,9 @@ install_config: install_man: $(INSTALL_DIR) $(DESTDIR)$(MANDIR) + $(INSTALL_DIR) $(DESTDIR)$(MANDIR)/man1 + $(INSTALL_FILE) man/man1/*.1 $(DESTDIR)$(MANDIR)/man1 + gzip -f $(DESTDIR)$(MANDIR)/man1/x2go*.1 $(INSTALL_DIR) $(DESTDIR)$(MANDIR)/man5 $(INSTALL_FILE) man/man5/*.5 $(DESTDIR)$(MANDIR)/man5 gzip -f $(DESTDIR)$(MANDIR)/man5/x2go*.5 -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goserver.git