--- p2v/client/Rakefile | 2 +- p2v/client/bin/virt-p2v | 2 +- p2v/client/bin/virt-p2v-launcher | 2 +- p2v/client/lib/virt-p2v/converter.rb | 2 +- p2v/client/lib/virt-p2v/gtk-queue.rb | 2 +- p2v/client/lib/virt-p2v/ui/connect.rb | 2 +- p2v/client/lib/virt-p2v/ui/convert.rb | 2 +- p2v/client/lib/virt-p2v/ui/gtk.rb | 16 ++++++++++++++++ p2v/client/lib/virt-p2v/ui/main.rb | 2 +- p2v/client/lib/virt-p2v/ui/network.rb | 2 +- p2v/client/test/test_newmain.rb | 16 ++++++++++++++++ p2v/client/test/test_newmain_integration.rb | 16 ++++++++++++++++ p2v/client/virt-p2v.gemspec | 2 +- rubygem-virt-p2v.spec.PL | 1 + 14 files changed, 59 insertions(+), 10 deletions(-)
diff --git a/p2v/client/Rakefile b/p2v/client/Rakefile index b7059a0..78ddd98 100644 --- a/p2v/client/Rakefile +++ b/p2v/client/Rakefile @@ -1,4 +1,4 @@ -# Copyright (C) 2012 Red Hat Inc. +# Copyright (C) 2012-2014 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/bin/virt-p2v b/p2v/client/bin/virt-p2v index 5b294a7..c1894fa 100755 --- a/p2v/client/bin/virt-p2v +++ b/p2v/client/bin/virt-p2v @@ -1,6 +1,6 @@ #!/usr/bin/env ruby -# Copyright (C) 2011 Red Hat Inc. +# Copyright (C) 2011, 2013 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/bin/virt-p2v-launcher b/p2v/client/bin/virt-p2v-launcher index 3c4e328..92e68bd 100755 --- a/p2v/client/bin/virt-p2v-launcher +++ b/p2v/client/bin/virt-p2v-launcher @@ -1,6 +1,6 @@ #!/usr/bin/env ruby # -# Copyright (C) 2011 Red Hat Inc. +# Copyright (C) 2011, 2013 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/lib/virt-p2v/converter.rb b/p2v/client/lib/virt-p2v/converter.rb index eccc436..2c70c0b 100644 --- a/p2v/client/lib/virt-p2v/converter.rb +++ b/p2v/client/lib/virt-p2v/converter.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2012 Red Hat Inc. +# Copyright (C) 2011-2013 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/lib/virt-p2v/gtk-queue.rb b/p2v/client/lib/virt-p2v/gtk-queue.rb index 22a92b4..2222fa4 100644 --- a/p2v/client/lib/virt-p2v/gtk-queue.rb +++ b/p2v/client/lib/virt-p2v/gtk-queue.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2011 Red Hat Inc. +# Copyright (C) 2011, 2013 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/lib/virt-p2v/ui/connect.rb b/p2v/client/lib/virt-p2v/ui/connect.rb index 15c3d9c..df7659c 100644 --- a/p2v/client/lib/virt-p2v/ui/connect.rb +++ b/p2v/client/lib/virt-p2v/ui/connect.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2011 Red Hat Inc. +# Copyright (C) 2011, 2013 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/lib/virt-p2v/ui/convert.rb b/p2v/client/lib/virt-p2v/ui/convert.rb index b737c1b..5068078 100644 --- a/p2v/client/lib/virt-p2v/ui/convert.rb +++ b/p2v/client/lib/virt-p2v/ui/convert.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2011-2012 Red Hat Inc. +# Copyright (C) 2011-2013 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/lib/virt-p2v/ui/gtk.rb b/p2v/client/lib/virt-p2v/ui/gtk.rb index a321c3f..c52eb11 100644 --- a/p2v/client/lib/virt-p2v/ui/gtk.rb +++ b/p2v/client/lib/virt-p2v/ui/gtk.rb @@ -1,3 +1,19 @@ +# Copyright (C) 2013-2014 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + require('gtk2') if !(Kernel.const_defined?(:NOGUI) && NOGUI == true) if Kernel.const_defined?(:NOGUI) && NOGUI == true diff --git a/p2v/client/lib/virt-p2v/ui/main.rb b/p2v/client/lib/virt-p2v/ui/main.rb index e46c70f..b445c9e 100644 --- a/p2v/client/lib/virt-p2v/ui/main.rb +++ b/p2v/client/lib/virt-p2v/ui/main.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2011 Red Hat Inc. +# Copyright (C) 2011, 2013, 2014 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/lib/virt-p2v/ui/network.rb b/p2v/client/lib/virt-p2v/ui/network.rb index 3ade7ed..fd0adad 100644 --- a/p2v/client/lib/virt-p2v/ui/network.rb +++ b/p2v/client/lib/virt-p2v/ui/network.rb @@ -1,4 +1,4 @@ -# Copyright (C) 2011 Red Hat Inc. +# Copyright (C) 2011, 2013 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/p2v/client/test/test_newmain.rb b/p2v/client/test/test_newmain.rb index e093303..40e0c68 100644 --- a/p2v/client/test/test_newmain.rb +++ b/p2v/client/test/test_newmain.rb @@ -1,3 +1,19 @@ +# Copyright (C) 2013, 2014 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + require 'minitest/autorun' NOGUI = true require 'virt-p2v/ui/main' diff --git a/p2v/client/test/test_newmain_integration.rb b/p2v/client/test/test_newmain_integration.rb index f7c59a8..9026d99 100644 --- a/p2v/client/test/test_newmain_integration.rb +++ b/p2v/client/test/test_newmain_integration.rb @@ -1,3 +1,19 @@ +# Copyright (C) 2013 Red Hat Inc. +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License along +# with this program; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + require 'minitest/autorun' require 'virt-p2v/ui/main' diff --git a/p2v/client/virt-p2v.gemspec b/p2v/client/virt-p2v.gemspec index 18614d1..db2441a 100644 --- a/p2v/client/virt-p2v.gemspec +++ b/p2v/client/virt-p2v.gemspec @@ -1,4 +1,4 @@ -# Copyright (C) 2012 Red Hat Inc. +# Copyright (C) 2012-2014 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/rubygem-virt-p2v.spec.PL b/rubygem-virt-p2v.spec.PL index 65d0486..ccd6256 100644 --- a/rubygem-virt-p2v.spec.PL +++ b/rubygem-virt-p2v.spec.PL @@ -1,5 +1,6 @@ # -*- rpm-spec -*- # Copyright (C) 2006 Daniel Berrange <d...@berrange.com> +# Copyright (C) 2014 Red Hat Inc. <mza...@redhat.com> # use strict; -- 1.8.3.1 _______________________________________________ Libguestfs mailing list Libguestfs@redhat.com https://www.redhat.com/mailman/listinfo/libguestfs