Hello community, here is the log from the commit of package piper for openSUSE:Factory checked in at 2020-06-23 21:05:58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/piper (Old) and /work/SRC/openSUSE:Factory/.piper.new.2956 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "piper" Tue Jun 23 21:05:58 2020 rev:9 rq:816455 version:0.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/piper/piper.changes 2020-06-07 21:38:01.433394097 +0200 +++ /work/SRC/openSUSE:Factory/.piper.new.2956/piper.changes 2020-06-23 21:06:22.910188695 +0200 @@ -1,0 +2,7 @@ +Mon Jun 22 20:59:19 UTC 2020 - Matthias Bach <[email protected]> + +- Update to version 0.5.1: + * Add missing man page + * Use SPDX 3 license identifiers in the code + +------------------------------------------------------------------- Old: ---- piper-0.5.tar.xz New: ---- piper-0.5.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ piper.spec ++++++ --- /var/tmp/diff_new_pack.ojOT19/_old 2020-06-23 21:06:24.338193308 +0200 +++ /var/tmp/diff_new_pack.ojOT19/_new 2020-06-23 21:06:24.342193321 +0200 @@ -18,7 +18,7 @@ Name: piper -Version: 0.5 +Version: 0.5.1 Release: 0 Summary: Configuration UI for gaming mice License: GPL-2.0-only @@ -73,5 +73,6 @@ %{_datadir}/metainfo/org.freedesktop.Piper.appdata.xml %{_datadir}/piper %{python3_sitelib}/* +%doc %_mandir/man1/piper.1.gz %changelog ++++++ _service ++++++ --- /var/tmp/diff_new_pack.ojOT19/_old 2020-06-23 21:06:24.370193411 +0200 +++ /var/tmp/diff_new_pack.ojOT19/_new 2020-06-23 21:06:24.370193411 +0200 @@ -2,7 +2,7 @@ <service name="obs_scm" mode="disabled"> <param name="url">https://github.com/libratbag/piper.git</param> <param name="scm">git</param> - <param name="revision">0.5</param> + <param name="revision">0.5.1</param> <param name="versionformat">@PARENT_TAG@</param> <param name="changesgenerate">enable</param> </service> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.ojOT19/_old 2020-06-23 21:06:24.386193463 +0200 +++ /var/tmp/diff_new_pack.ojOT19/_new 2020-06-23 21:06:24.386193463 +0200 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/libratbag/piper.git</param> - <param name="changesrevision">4fab9ccdccbac296e866f9af1dd46a8979f192d1</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">61ac340e3e1add6811228422e991e160006ac0c9</param></service></servicedata> \ No newline at end of file ++++++ piper-0.5.tar.xz -> piper-0.5.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/.circleci/config.yml new/piper-0.5.1/.circleci/config.yml --- old/piper-0.5/.circleci/config.yml 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/.circleci/config.yml 2020-06-22 10:07:53.000000000 +0200 @@ -3,7 +3,7 @@ piper_references: build_dependencies: &build_dependencies FEDORA_RPMS: meson gettext python3 pygobject3-devel python3-lxml libratbag-ratbagd python3-cairo python3-evdev python3-flake8 gtk-update-icon-cache - UBUNTU_DEBS: meson pkg-config gettext python3 python-gi-dev python3-lxml python3-evdev gir1.2-rsvg-2.0 python3-gi-cairo python3-flake8 ratbagd gtk-update-icon-cache + UBUNTU_DEBS: meson pkg-config gettext python3 python-gi-dev python3-lxml python3-evdev gir1.2-rsvg-2.0 python3-gi-cairo flake8 ratbagd gtk-update-icon-cache ARCH_PKGS: meson libratbag python-cairo python-evdev python-gobject python-lxml gtk-update-icon-cache default_settings: &default_settings @@ -116,9 +116,7 @@ - run: name: Install prerequisites command: | - apt-get update - apt-get install -y software-properties-common - add-apt-repository universe + export DEBIAN_FRONTEND=noninteractive apt-get update apt-get install -y tree git ${UBUNTU_DEBS} - checkout @@ -140,15 +138,15 @@ <<: *arch_settings docker: - image: archlinux - ubuntu_19_10: + ubuntu_20_04: <<: *ubuntu_settings docker: - - image: ubuntu:19.10 + - image: ubuntu:20.04 workflows: version: 2 compile_and_test: jobs: - - ubuntu_19_10 + - ubuntu_20_04 - fedora_31 - arch diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/data/meson.build new/piper-0.5.1/data/meson.build --- old/piper-0.5/data/meson.build 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/data/meson.build 2020-06-22 10:07:53.000000000 +0200 @@ -3,11 +3,23 @@ desktopdir = join_paths(datadir, 'applications') icondir = join_paths(datadir, 'icons', 'hicolor', 'scalable', 'apps') metainfodir = join_paths(datadir, 'metainfo') +man1dir = join_paths(mandir, 'man1') conf = configuration_data() conf.set('version', meson.project_version()) conf.set('version_date', version_date) +manpage = configure_file( + input: files('piper.1.in'), + output: 'piper.1', + configuration: conf, +) + +install_man( + manpage, + install_dir: man1dir, +) + about_dialog = configure_file(input: 'ui/AboutDialog.ui.in', output: 'AboutDialog.ui', configuration: conf) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/data/piper.1.in new/piper-0.5.1/data/piper.1.in --- old/piper-0.5/data/piper.1.in 1970-01-01 01:00:00.000000000 +0100 +++ new/piper-0.5.1/data/piper.1.in 2020-06-22 10:07:53.000000000 +0200 @@ -0,0 +1,13 @@ +.TH PIPER 1 "@version_date@" "@version@" "User Commands" +.SH NAME +Piper \- GTK application to configure gaming devices +.SH DESCRIPTION +.SS "Usage:" +.IP +piper [OPTION] +.SS "Help Options:" +.TP +\fB\-h\fR, \fB\-\-help\fR +Show help options +.SH "SEE ALSO" +ratbagctl(1), ratbagd(8) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/meson.build new/piper-0.5.1/meson.build --- old/piper-0.5/meson.build 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/meson.build 2020-06-22 10:07:53.000000000 +0200 @@ -1,9 +1,9 @@ project('piper', - version: '0.5', + version: '0.5.1', license: 'GPL-2.0-or-later', meson_version: '>= 0.42.0') # The tag date of the project_version(), update when the version bumps. -version_date='2020-05-25' +version_date='2020-06-22' # The DBus API version of ratbagd that we are compatible with. Anything # higher or lower will not be compatible so make sure you bumpt that to the @@ -51,6 +51,7 @@ pkgdatadir = join_paths(datadir, meson.project_name()) bindir = join_paths(prefix, get_option('bindir')) podir = join_paths(meson.source_root(), 'po') +mandir = join_paths(prefix, get_option('mandir')) i18n = import('i18n') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/application.py new/piper-0.5.1/piper/application.py --- old/piper-0.5/piper/application.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/application.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from .ratbagd import Ratbagd from .window import Window diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/buttondialog.py new/piper-0.5.1/piper/buttondialog.py --- old/piper-0.5/piper/buttondialog.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/buttondialog.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later import sys diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/buttonspage.py new/piper-0.5.1/piper/buttonspage.py --- old/piper-0.5/piper/buttonspage.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/buttonspage.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from gettext import gettext as _ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/devicerow.py new/piper-0.5.1/piper/devicerow.py --- old/piper-0.5/piper/devicerow.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/devicerow.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from piper.svg import get_svg diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/errorperspective.py new/piper-0.5.1/piper/errorperspective.py --- old/piper-0.5/piper/errorperspective.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/errorperspective.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from .gi_composites import GtkTemplate diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/leddialog.py new/piper-0.5.1/piper/leddialog.py --- old/piper-0.5/piper/leddialog.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/leddialog.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from .gi_composites import GtkTemplate from .ratbagd import RatbagdLed diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/ledspage.py new/piper-0.5.1/piper/ledspage.py --- old/piper-0.5/piper/ledspage.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/ledspage.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from gettext import gettext as _ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/mousemap.py new/piper-0.5.1/piper/mousemap.py --- old/piper-0.5/piper/mousemap.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/mousemap.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later import cairo import gi diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/mouseperspective.py new/piper-0.5.1/piper/mouseperspective.py --- old/piper-0.5/piper/mouseperspective.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/mouseperspective.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from gettext import gettext as _ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/optionbutton.py new/piper-0.5.1/piper/optionbutton.py --- old/piper-0.5/piper/optionbutton.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/optionbutton.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from .gi_composites import GtkTemplate diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/profilerow.py new/piper-0.5.1/piper/profilerow.py --- old/piper-0.5/piper/profilerow.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/profilerow.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from .gi_composites import GtkTemplate diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/resolutionrow.py new/piper-0.5.1/piper/resolutionrow.py --- old/piper-0.5/piper/resolutionrow.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/resolutionrow.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from .gi_composites import GtkTemplate diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/resolutionspage.py new/piper-0.5.1/piper/resolutionspage.py --- old/piper-0.5/piper/resolutionspage.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/resolutionspage.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from gettext import gettext as _ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/svg.py new/piper-0.5.1/piper/svg.py --- old/piper-0.5/piper/svg.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/svg.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2019 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. +# SPDX-License-Identifier: GPL-2.0-or-later from gi.repository import Gio # noqa diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/welcomeperspective.py new/piper-0.5.1/piper/welcomeperspective.py --- old/piper-0.5/piper/welcomeperspective.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/welcomeperspective.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from .devicerow import DeviceRow from .gi_composites import GtkTemplate diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/piper-0.5/piper/window.py new/piper-0.5.1/piper/window.py --- old/piper-0.5/piper/window.py 2020-05-25 11:23:36.000000000 +0200 +++ new/piper-0.5.1/piper/window.py 2020-06-22 10:07:53.000000000 +0200 @@ -1,18 +1,4 @@ -# Copyright (C) 2017 Jente Hidskes <[email protected]> -# -# 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. +# SPDX-License-Identifier: GPL-2.0-or-later from gettext import gettext as _
