This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gokdrive. from ec8d825 x2gokdrive.spec: build verbosely. new b76da0f x2ogkdrive.spec: copy xorg-server source verbosely. new 26a8afb x2gokdrive.spec: use archive mode when copying xorg-server source. new eb8ba97 x2gokdrive.spec: *SuSE puts the xorg-server source code into /usr/src/xserver. The 3 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 | 5 +++++ x2gokdrive.spec | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit b76da0f2bfd64abece529e617070ad13734f6c59 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Oct 28 22:51:12 2019 +0100 x2ogkdrive.spec: copy xorg-server source verbosely. Matches debian/rules tar call more closely. --- debian/changelog | 2 ++ x2gokdrive.spec | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 36d17f7..9573f86 100644 --- a/debian/changelog +++ b/debian/changelog @@ -74,6 +74,8 @@ x2gokdrive (0.0.0.1-0x2go1) UNRELEASED; urgency=medium package. + Also build-depend upon pam-devel. + Build verbosely. We do want to see actual compilation steps. + + Copy xorg-server source verbosely. Matches debian/rules tar call more + closely. * debian/rules: + Remove weird empty variable reference construct. + Whitespace-only fixes. diff --git a/x2gokdrive.spec b/x2gokdrive.spec index 361fed5..f8810ad 100644 --- a/x2gokdrive.spec +++ b/x2gokdrive.spec @@ -224,7 +224,7 @@ More information about X2Go can be found at: # prepare xorg-server build tree mkdir -p 'BUILD' -cp -r '/usr/share/xorg-x11-server-source/'* 'BUILD/' +cp -rv '/usr/share/xorg-x11-server-source/'* 'BUILD/' # Precaution from: # https://src.fedoraproject.org/rpms/tigervnc/blob/master/f/tigervnc.spec find 'BUILD/' -type 'f' -perm '-001' -print0 | while read -r -d '' file; do -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit 26a8afb80cbff92c33b28f1d9b26943dac1a134b Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Oct 28 22:54:02 2019 +0100 x2gokdrive.spec: use archive mode when copying xorg-server source. We probably want to keep stuff like timestamps to not break the Makefile dependencies. --- debian/changelog | 2 ++ x2gokdrive.spec | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 9573f86..344f6a9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -76,6 +76,8 @@ x2gokdrive (0.0.0.1-0x2go1) UNRELEASED; urgency=medium + Build verbosely. We do want to see actual compilation steps. + Copy xorg-server source verbosely. Matches debian/rules tar call more closely. + + Use archive mode when copying xorg-server source. We probably want to + keep stuff like timestamps to not break the Makefile dependencies. * debian/rules: + Remove weird empty variable reference construct. + Whitespace-only fixes. diff --git a/x2gokdrive.spec b/x2gokdrive.spec index f8810ad..68381e3 100644 --- a/x2gokdrive.spec +++ b/x2gokdrive.spec @@ -224,7 +224,7 @@ More information about X2Go can be found at: # prepare xorg-server build tree mkdir -p 'BUILD' -cp -rv '/usr/share/xorg-x11-server-source/'* 'BUILD/' +cp -av '/usr/share/xorg-x11-server-source/'* 'BUILD/' # Precaution from: # https://src.fedoraproject.org/rpms/tigervnc/blob/master/f/tigervnc.spec find 'BUILD/' -type 'f' -perm '-001' -print0 | while read -r -d '' file; do -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit eb8ba9765ba6e63d12cb74e4fed974c88111e979 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Oct 28 23:19:25 2019 +0100 x2gokdrive.spec: *SuSE puts the xorg-server source code into /usr/src/xserver. --- debian/changelog | 1 + x2gokdrive.spec | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/debian/changelog b/debian/changelog index 344f6a9..d172142 100644 --- a/debian/changelog +++ b/debian/changelog @@ -78,6 +78,7 @@ x2gokdrive (0.0.0.1-0x2go1) UNRELEASED; urgency=medium closely. + Use archive mode when copying xorg-server source. We probably want to keep stuff like timestamps to not break the Makefile dependencies. + + *SuSE puts the xorg-server source code into /usr/src/xserver. * debian/rules: + Remove weird empty variable reference construct. + Whitespace-only fixes. diff --git a/x2gokdrive.spec b/x2gokdrive.spec index 68381e3..e2edd97 100644 --- a/x2gokdrive.spec +++ b/x2gokdrive.spec @@ -224,7 +224,11 @@ More information about X2Go can be found at: # prepare xorg-server build tree mkdir -p 'BUILD' +%if 0%{?suse_version} +cp -av '/usr/share/xserver/'* 'BUILD/' +%else cp -av '/usr/share/xorg-x11-server-source/'* 'BUILD/' +%endif # Precaution from: # https://src.fedoraproject.org/rpms/tigervnc/blob/master/f/tigervnc.spec find 'BUILD/' -type 'f' -perm '-001' -print0 | while read -r -d '' file; do -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git