This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository cups-x2go. from a2902ed Continue development new 4abdbbb debian/changelog: fix missing whitespace. new 1523824 cups-x2go: import tempfile() function from File::Temp module. new e3646f0 cups-x2go: only repeat the last X, not the whole ".pdfX" string (or the like.) new 76f9e74 debian/control: add dependencies on perl-modules for core modules and ${perl:Depends} for perl itself. new 16327aa debian/control: whitespace fix. new 49d2041 cups-x2go.spec: add proper dependencies on perl and File::Temp module. 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 | 6 +++--- cups-x2go.spec | 13 +++++++++++++ debian/changelog | 14 ++++++++++++-- debian/control | 4 +++- 4 files changed, 31 insertions(+), 6 deletions(-) -- Alioth's /srv/git/code.x2go.org/cups-x2go.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 4abdbbba812cbde085963f42b6994cd80e9c92f4 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Jun 15 14:55:54 2015 +0200 debian/changelog: fix missing whitespace. --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 2ee4f6f..e5c3dbe 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,7 +6,7 @@ cups-x2go (3.0.1.3-0x2go1) UNRELEASED; urgency=low cups-x2go (3.0.1.2-0x2go1) unstable; urgency=high - [ Mihai Moldovan] + [ Mihai Moldovan ] * cups-x2go.spec: + Depend on openssh-clients on Fedora, RHEL, EPEL and CentOS instead of pulling in the complete openssh suite. -- Alioth's /srv/git/code.x2go.org/cups-x2go.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 152382460faf850f727b169b5e2f04f8bf89b2eb Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Jun 15 14:39:39 2015 +0200 cups-x2go: import tempfile() function from File::Temp module. --- cups-x2go | 2 +- debian/changelog | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cups-x2go b/cups-x2go index 1d906b9..2cf9dde 100755 --- a/cups-x2go +++ b/cups-x2go @@ -22,7 +22,7 @@ use Sys::Syslog qw( :standard :macros ); use Sys::Hostname; use File::Basename; use File::Copy; -use File::Temp; +use File::Temp qw( tempfile ); use IPC::Open2; use Text::ParseWords; use strict; diff --git a/debian/changelog b/debian/changelog index e5c3dbe..7383617 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ cups-x2go (3.0.1.3-0x2go1) UNRELEASED; urgency=low - * Continue development + [ Mihai Moldovan ] + * New upstream version (3.0.1.3): + - cups-x2go: import tempfile() function from File::Temp module. -- X2Go Release Manager <git-admin@x2go.org> Sun, 14 Jun 2015 18:37:33 +0200 -- Alioth's /srv/git/code.x2go.org/cups-x2go.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 e3646f02d109edd37e4e13f89a1110a143a519ab Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Jun 15 14:40:04 2015 +0200 cups-x2go: only repeat the last X, not the whole ".pdfX" string (or the like.) --- cups-x2go | 4 ++-- debian/changelog | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/cups-x2go b/cups-x2go index 2cf9dde..1d488b7 100755 --- a/cups-x2go +++ b/cups-x2go @@ -199,8 +199,8 @@ $uid =~ s/\W//g; #sanity check my $template = "$jid-$uid-cupsjob$$"; my $ps_template = $template . "X" x 16; -my $pdf_template = $template . ".pdfX" x 16; -my $title_template = $template . ".pdf.titleX" x 16; +my $pdf_template = $template . ".pdf" . "X" x 16; +my $title_template = $template . ".pdf.title" . "X" x 16; if (!$psFile) { my ($tfh, $tempFile) = tempfile ($ps_template, TMPDIR => 1); diff --git a/debian/changelog b/debian/changelog index 7383617..3656533 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,6 +3,8 @@ cups-x2go (3.0.1.3-0x2go1) UNRELEASED; urgency=low [ Mihai Moldovan ] * New upstream version (3.0.1.3): - cups-x2go: import tempfile() function from File::Temp module. + - cups-x2go: only repeat the last X, not the whole ".pdfX" string (or the + like.) -- X2Go Release Manager <git-admin@x2go.org> Sun, 14 Jun 2015 18:37:33 +0200 -- Alioth's /srv/git/code.x2go.org/cups-x2go.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 76f9e7491f24da25cfd04d12bc4dc9920895e2bc Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Jun 15 15:00:00 2015 +0200 debian/control: add dependencies on perl-modules for core modules and ${perl:Depends} for perl itself. --- debian/changelog | 3 +++ debian/control | 2 ++ 2 files changed, 5 insertions(+) diff --git a/debian/changelog b/debian/changelog index 3656533..ff8c185 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,9 @@ cups-x2go (3.0.1.3-0x2go1) UNRELEASED; urgency=low - cups-x2go: import tempfile() function from File::Temp module. - cups-x2go: only repeat the last X, not the whole ".pdfX" string (or the like.) + * debian/control: + - Add dependencies on perl-modules for core modules and ${perl:Depends} + for perl itself. -- X2Go Release Manager <git-admin@x2go.org> Sun, 14 Jun 2015 18:37:33 +0200 diff --git a/debian/control b/debian/control index 03d124d..fe95312 100644 --- a/debian/control +++ b/debian/control @@ -16,6 +16,8 @@ Package: cups-x2go Architecture: all Depends: ${misc:Depends}, + ${perl:Depends}, + perl-modules, ghostscript, cups-client, cups -- Alioth's /srv/git/code.x2go.org/cups-x2go.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 16327aacb6d458af65697455bc2a6ca2a0711b6e Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Jun 15 15:00:13 2015 +0200 debian/control: whitespace fix. --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index fe95312..93085fc 100644 --- a/debian/control +++ b/debian/control @@ -14,7 +14,7 @@ Vcs-Browser: http://code.x2go.org/gitweb?p=cups-x2go.git;a=summary Package: cups-x2go Architecture: all -Depends: +Depends: ${misc:Depends}, ${perl:Depends}, perl-modules, -- Alioth's /srv/git/code.x2go.org/cups-x2go.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 49d2041f82b07f3c08ca31274c25573589644a85 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Jun 15 15:04:16 2015 +0200 cups-x2go.spec: add proper dependencies on perl and File::Temp module. Hopefully pulls in perl-base with the core modules or the like... --- cups-x2go.spec | 13 +++++++++++++ debian/changelog | 3 +++ 2 files changed, 16 insertions(+) diff --git a/cups-x2go.spec b/cups-x2go.spec index 4cee376..6a5756f 100644 --- a/cups-x2go.spec +++ b/cups-x2go.spec @@ -44,6 +44,19 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRoot: %{_tmppath}/%{name}-%{version}-build %endif +# Perl stuff. +%if 0%{?suse_version} +%if 0%{?suse_version} < 1140 +Requires: perl = %{perl_version} +%else +%{perl_requires} +%endif +%else +Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) +%endif + +Requires: perl(File::Temp) + %description X2Go is a server based computing environment with - session resuming diff --git a/debian/changelog b/debian/changelog index ff8c185..45d27a5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,9 @@ cups-x2go (3.0.1.3-0x2go1) UNRELEASED; urgency=low * debian/control: - Add dependencies on perl-modules for core modules and ${perl:Depends} for perl itself. + * cups-x2go.spec: + - Add proper dependencies on perl and File::Temp module. Hopefully pulls + in perl-base with the core modules or the like... -- X2Go Release Manager <git-admin@x2go.org> Sun, 14 Jun 2015 18:37:33 +0200 -- Alioth's /srv/git/code.x2go.org/cups-x2go.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/cups-x2go.git