This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository cups-x2go. from 37e7098 Continue development... new 999285d cups-x2go.spec: depend on openssh-clients on Fedora, EPEL5, EPEL6, RHEL and CentOS. new 12a42d5 cups-x2go.spec: change %{_libexecdir} to /lib as the standard install location for CUPS backends on Fedora, RHEL, (Open)SUSE and EPEL. new 250ea69 cups-x2go.spec: wrap macros in curly braces where appropriate. new c11499d cups-x2go.spec: do not own alien directories. new f450335 cups-x2go.spec: add docs. new bb502ea cups-x2go.spec: re-add ${_datadir}/ppd/cups-x2go as owned directory. Use slashes to correctly mark directories. The 6 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: cups-x2go.spec | 23 +++++++++++++---------- debian/changelog | 12 +++++++++++- 2 files changed, 24 insertions(+), 11 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository cups-x2go. commit 999285dd6230284e2ca92678a5b3aea77df8f883 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 11 03:43:25 2015 +0100 cups-x2go.spec: depend on openssh-clients on Fedora, EPEL5, EPEL6, RHEL and CentOS. --- cups-x2go.spec | 4 ++++ debian/changelog | 5 ++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/cups-x2go.spec b/cups-x2go.spec index 4851b7a..4bb9f30 100644 --- a/cups-x2go.spec +++ b/cups-x2go.spec @@ -10,7 +10,11 @@ Source0: http://code.x2go.org/releases/source/%{name}/%{name}-%{version}. Requires: cups Requires: ghostscript +%if 0%{?fedora} || 0%{?el5} || 0%{el6} || 0%{?rhel_version} || 0%{?centos_version} || 0%{?rhel} +Requires: openssh-clients +%else Requires: openssh +%endif %if 0%{?el5} # For compatibility with EPEL5 diff --git a/debian/changelog b/debian/changelog index 7cf510b..6635e10 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,9 @@ cups-x2go (3.0.1.2-0x2go1) UNRELEASED; urgency=low - * Continue development... + [ Mihai Moldovan] + * cups-x2go.spec: + + Depend on openssh-clients on Fedora, RHEL, EPEL and CentOS instead of + pulling in the complete openssh suite. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 21:08:34 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository cups-x2go. commit 12a42d5d71db9bb1e33d3654acb596193a07ea97 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 11 03:55:54 2015 +0100 cups-x2go.spec: change %{_libexecdir} to /lib as the standard install location for CUPS backends on Fedora, RHEL, (Open)SUSE and EPEL. --- cups-x2go.spec | 8 ++++---- debian/changelog | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/cups-x2go.spec b/cups-x2go.spec index 4bb9f30..9fbd555 100644 --- a/cups-x2go.spec +++ b/cups-x2go.spec @@ -44,7 +44,7 @@ CUPS backend for printing from X2Go. %install b="%buildroot"; -c="$b/%_libexecdir/cups/backend"; +c="$b/%{_prefix}/lib/cups/backend"; mkdir -p "$c"; install -pm0755 cups-x2go "$c/"; c="$b/%_datadir/ppd/cups-x2go"; @@ -60,8 +60,8 @@ install -pm0644 VERSION.cups-x2go "$c/"; %files %defattr(-,root,root) -%dir %_libexecdir/cups -%dir %_libexecdir/cups/backend +%dir %{_prefix}/lib/cups +%dir %{_prefix}/lib/cups/backend # # The cups-x2go backends wants root permissions. So give it to them. # http://www.cups.org/documentation.php/doc-1.4/man-backend.html says: @@ -69,7 +69,7 @@ install -pm0644 VERSION.cups-x2go "$c/"; # Otherwise, the backend is run using the unprivileged user account, # typically "lp".” # -%attr(0700,root,root) %_libexecdir/cups/backend/cups-x2go +%attr(0700,root,root) %{_prefix}/lib/cups/backend/cups-x2go %_datadir/ppd %config(noreplace) %_sysconfdir/cups/cups-x2go.conf %_datadir/x2go diff --git a/debian/changelog b/debian/changelog index 6635e10..eed9e16 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,8 @@ cups-x2go (3.0.1.2-0x2go1) UNRELEASED; urgency=low * cups-x2go.spec: + Depend on openssh-clients on Fedora, RHEL, EPEL and CentOS instead of pulling in the complete openssh suite. + + Change %{_libexecdir} to ${_prefix}/lib as the standard install location + for CUPS backends on Fedora, RHEL, (Open)SUSE and EPEL. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 21:08:34 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository cups-x2go. commit 250ea690f3cfb645df610cd979edfa9387fc6c79 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 11 03:57:30 2015 +0100 cups-x2go.spec: wrap macros in curly braces where appropriate. --- cups-x2go.spec | 12 ++++++------ debian/changelog | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/cups-x2go.spec b/cups-x2go.spec index 9fbd555..d3da61e 100644 --- a/cups-x2go.spec +++ b/cups-x2go.spec @@ -47,13 +47,13 @@ b="%buildroot"; c="$b/%{_prefix}/lib/cups/backend"; mkdir -p "$c"; install -pm0755 cups-x2go "$c/"; -c="$b/%_datadir/ppd/cups-x2go"; +c="$b/%{_datadir}/ppd/cups-x2go"; mkdir -p "$c"; install -pm0644 CUPS-X2GO.ppd "$c/"; -c="$b/%_sysconfdir/cups"; +c="$b/%{_sysconfdir}/cups"; mkdir -p "$c"; install -pm0644 cups-x2go.conf "$c/"; -c="$b/%_datadir/x2go/versions"; +c="$b/%{_datadir}/x2go/versions"; mkdir -p "$c"; install -pm0644 VERSION.cups-x2go "$c/"; @@ -70,9 +70,9 @@ install -pm0644 VERSION.cups-x2go "$c/"; # typically "lp".” # %attr(0700,root,root) %{_prefix}/lib/cups/backend/cups-x2go -%_datadir/ppd -%config(noreplace) %_sysconfdir/cups/cups-x2go.conf -%_datadir/x2go +%{_datadir}/ppd +%config(noreplace) %{_sysconfdir}/cups/cups-x2go.conf +%{_datadir}/x2go %changelog diff --git a/debian/changelog b/debian/changelog index eed9e16..a36ab85 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,6 +6,7 @@ cups-x2go (3.0.1.2-0x2go1) UNRELEASED; urgency=low pulling in the complete openssh suite. + Change %{_libexecdir} to ${_prefix}/lib as the standard install location for CUPS backends on Fedora, RHEL, (Open)SUSE and EPEL. + + Wrap macros in curly braces where appropriate. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 21:08:34 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository cups-x2go. commit c11499dfb86dd942a605d6eaa91c2d22e34ba062 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 11 04:11:05 2015 +0100 cups-x2go.spec: do not own alien directories. --- cups-x2go.spec | 3 --- debian/changelog | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/cups-x2go.spec b/cups-x2go.spec index d3da61e..f06e604 100644 --- a/cups-x2go.spec +++ b/cups-x2go.spec @@ -60,8 +60,6 @@ install -pm0644 VERSION.cups-x2go "$c/"; %files %defattr(-,root,root) -%dir %{_prefix}/lib/cups -%dir %{_prefix}/lib/cups/backend # # The cups-x2go backends wants root permissions. So give it to them. # http://www.cups.org/documentation.php/doc-1.4/man-backend.html says: @@ -70,7 +68,6 @@ install -pm0644 VERSION.cups-x2go "$c/"; # typically "lp".” # %attr(0700,root,root) %{_prefix}/lib/cups/backend/cups-x2go -%{_datadir}/ppd %config(noreplace) %{_sysconfdir}/cups/cups-x2go.conf %{_datadir}/x2go diff --git a/debian/changelog b/debian/changelog index a36ab85..f9ce00e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,7 @@ cups-x2go (3.0.1.2-0x2go1) UNRELEASED; urgency=low + Change %{_libexecdir} to ${_prefix}/lib as the standard install location for CUPS backends on Fedora, RHEL, (Open)SUSE and EPEL. + Wrap macros in curly braces where appropriate. + + Do not own alien directories. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 21:08:34 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository cups-x2go. commit f45033517e33ad3b4cf7428d5d8d41f36c03f75e Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 11 04:11:46 2015 +0100 cups-x2go.spec: add docs. --- cups-x2go.spec | 1 + debian/changelog | 1 + 2 files changed, 2 insertions(+) diff --git a/cups-x2go.spec b/cups-x2go.spec index f06e604..43e7346 100644 --- a/cups-x2go.spec +++ b/cups-x2go.spec @@ -60,6 +60,7 @@ install -pm0644 VERSION.cups-x2go "$c/"; %files %defattr(-,root,root) +%doc debian/changelog debian/copyright COPYING README.txt # # The cups-x2go backends wants root permissions. So give it to them. # http://www.cups.org/documentation.php/doc-1.4/man-backend.html says: diff --git a/debian/changelog b/debian/changelog index f9ce00e..aaf39e3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,7 @@ cups-x2go (3.0.1.2-0x2go1) UNRELEASED; urgency=low for CUPS backends on Fedora, RHEL, (Open)SUSE and EPEL. + Wrap macros in curly braces where appropriate. + Do not own alien directories. + + Add docs. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 21:08:34 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository cups-x2go. commit bb502eacb4b4bf4bc4de3d069fe5d7358e9c7008 Author: Mihai Moldovan <ionic@ionic.de> Date: Wed Feb 11 04:12:14 2015 +0100 cups-x2go.spec: re-add ${_datadir}/ppd/cups-x2go as owned directory. Use slashes to correctly mark directories. --- cups-x2go.spec | 3 ++- debian/changelog | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/cups-x2go.spec b/cups-x2go.spec index 43e7346..eccb66f 100644 --- a/cups-x2go.spec +++ b/cups-x2go.spec @@ -70,7 +70,8 @@ install -pm0644 VERSION.cups-x2go "$c/"; # %attr(0700,root,root) %{_prefix}/lib/cups/backend/cups-x2go %config(noreplace) %{_sysconfdir}/cups/cups-x2go.conf -%{_datadir}/x2go +%{_datadir}/ppd/cups-x2go/ +%{_datadir}/x2go/ %changelog diff --git a/debian/changelog b/debian/changelog index aaf39e3..42fe3c4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ cups-x2go (3.0.1.2-0x2go1) UNRELEASED; urgency=low + Wrap macros in curly braces where appropriate. + Do not own alien directories. + Add docs. + + Re-add ${_datadir}/ppd/cups-x2go as owned directory. + + Use slashes to correctly mark directories. -- X2Go Release Manager <git-admin@x2go.org> Tue, 10 Feb 2015 21:08:34 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git