This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gokdriveclient. from 1c78e27 x2gokdriveclient.spec: move make_call macro invocation to correct location. new 68410bf x2gokdriveclient.spec: add PREFIX to make call. new 2b59f49 debian/rules: try to export PREFIX to not install in the default prefix. 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 | 3 +++ debian/rules | 2 ++ x2gokdriveclient.spec | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdriveclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdriveclient. commit 68410bf7a9d0199a8d569f45032f1b846b0874de Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 18:44:31 2023 +0100 x2gokdriveclient.spec: add PREFIX to make call. --- debian/changelog | 1 + x2gokdriveclient.spec | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 43f4fd7..6918ea8 100644 --- a/debian/changelog +++ b/debian/changelog @@ -104,6 +104,7 @@ x2gokdriveclient (0.0.0.1-0x2go1) UNRELEASED; urgency=medium - res/resource.qrc: reference subdirectories. - x2gokdriveclient.spec: move make_call macro invocation to correct location. It previously only triggered for non-existent Qt6 builds. + - x2gokdriveclient.spec: add PREFIX to make call. * debian/rules: + Let qmake add general Qt {C{,XX},L}FLAGS instead of overriding them. Especially needed for C++11 support. diff --git a/x2gokdriveclient.spec b/x2gokdriveclient.spec index b706196..3953f63 100644 --- a/x2gokdriveclient.spec +++ b/x2gokdriveclient.spec @@ -121,7 +121,7 @@ test -f ChangeLog.gitlog && cp ChangeLog.gitlog res/txt/git-info || true %build -%define make_call make %{?_smp_mflags} CXXFLAGS='%{optflags}' QMAKE_OPTS='QMAKE_STRIP=:' QT_VERSION='%{qt_version}' +%define make_call make %{?_smp_mflags} CXXFLAGS='%{optflags}' QMAKE_OPTS='QMAKE_STRIP=:' QT_VERSION='%{qt_version}' PREFIX='%{_prefix}' %if %{qt_version} == 5 %if 0%{?_qt5_bindir:1} export 'PATH=%{_qt5_bindir}:'"${PATH}" -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdriveclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdriveclient. commit 2b59f4916f2deefa5062f2783f335025a6365def Author: Mihai Moldovan <ionic@ionic.de> Date: Fri Feb 24 18:47:29 2023 +0100 debian/rules: try to export PREFIX to not install in the default prefix. We might have to pass it down further, though. --- debian/changelog | 2 ++ debian/rules | 2 ++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 6918ea8..bd0c4cf 100644 --- a/debian/changelog +++ b/debian/changelog @@ -112,6 +112,8 @@ x2gokdriveclient (0.0.0.1-0x2go1) UNRELEASED; urgency=medium mechanism. We would need a lot more work for that. + Don't install x2gokdriveclient binary manually, the Makefile does that for us. + + Try to export PREFIX to not install in the default prefix. We might have + to pass it down further, though. * debian/copyright: + Change the source license to GPL-3+. + Change license for debian/* to GPL-3+ as well, after asking Mike Gabriel diff --git a/debian/rules b/debian/rules index 56b7106..b6b4eb4 100755 --- a/debian/rules +++ b/debian/rules @@ -15,6 +15,8 @@ include /usr/share/dpkg/buildflags.mk export QT_SELECT=qt5 +export PREFIX='/usr' + %: dh $@ --parallel -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdriveclient.git