Skip to content

Commit a700c66

Browse files
committed
Update license to GPL-3+
1 parent 72a3f1d commit a700c66

File tree

10 files changed

+738
-406
lines changed

10 files changed

+738
-406
lines changed

COPYING

Lines changed: 0 additions & 339 deletions
This file was deleted.

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Changelog
66

77
- Add new notice type: ``LVC_EARLY_WARNING``. [Leo Singer]
88

9+
- Update license to GPL-3+. [Leo Singer]
10+
911
1.0.0 (2020-01-29)
1012
------------------
1113

LICENSE.md

Lines changed: 675 additions & 0 deletions
Large diffs are not rendered by default.

gcn/__init__.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Copyright (C) 2013-2018 Leo Singer
22
#
3-
# This program is free software; you can redistribute it and/or modify it
4-
# under the terms of the GNU General Public License as published by the
5-
# Free Software Foundation; either version 2 of the License, or (at your
6-
# option) any later version.
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU General Public License as published by
5+
# the Free Software Foundation, either version 3 of the License, or
6+
# (at your option) any later version.
77
#
8-
# This program is distributed in the hope that it will be useful, but
9-
# WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11-
# Public License for more details.
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU General Public License for more details.
1212
#
13-
# You should have received a copy of the GNU General Public License along
14-
# with this program; if not, write to the Free Software Foundation, Inc.,
15-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
13+
# You should have received a copy of the GNU General Public License
14+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
1615
#
1716
"""
1817
Anonymous VOEvent client for receiving GCN/TAN notices in XML format

gcn/cmdline.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Copyright (C) 2016-2018 Leo Singer
22
#
3-
# This program is free software; you can redistribute it and/or modify it
4-
# under the terms of the GNU General Public License as published by the
5-
# Free Software Foundation; either version 2 of the License, or (at your
6-
# option) any later version.
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU General Public License as published by
5+
# the Free Software Foundation, either version 3 of the License, or
6+
# (at your option) any later version.
77
#
8-
# This program is distributed in the hope that it will be useful, but
9-
# WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11-
# Public License for more details.
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU General Public License for more details.
1212
#
13-
# You should have received a copy of the GNU General Public License along
14-
# with this program; if not, write to the Free Software Foundation, Inc.,
15-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
13+
# You should have received a copy of the GNU General Public License
14+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
1615
#
1716
"""
1817
Utilities for command-line interface.

gcn/handlers.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Copyright (C) 2014-2018 Leo Singer
22
#
3-
# This program is free software; you can redistribute it and/or modify it
4-
# under the terms of the GNU General Public License as published by the
5-
# Free Software Foundation; either version 2 of the License, or (at your
6-
# option) any later version.
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU General Public License as published by
5+
# the Free Software Foundation, either version 3 of the License, or
6+
# (at your option) any later version.
77
#
8-
# This program is distributed in the hope that it will be useful, but
9-
# WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11-
# Public License for more details.
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU General Public License for more details.
1212
#
13-
# You should have received a copy of the GNU General Public License along
14-
# with this program; if not, write to the Free Software Foundation, Inc.,
15-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
13+
# You should have received a copy of the GNU General Public License
14+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
1615
#
1716
"""
1817
Payload handlers.

gcn/notice_types.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Copyright (C) 2014-2018 Leo Singer
22
#
3-
# This program is free software; you can redistribute it and/or modify it
4-
# under the terms of the GNU General Public License as published by the
5-
# Free Software Foundation; either version 2 of the License, or (at your
6-
# option) any later version.
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU General Public License as published by
5+
# the Free Software Foundation, either version 3 of the License, or
6+
# (at your option) any later version.
77
#
8-
# This program is distributed in the hope that it will be useful, but
9-
# WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11-
# Public License for more details.
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU General Public License for more details.
1212
#
13-
# You should have received a copy of the GNU General Public License along
14-
# with this program; if not, write to the Free Software Foundation, Inc.,
15-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
13+
# You should have received a copy of the GNU General Public License
14+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
1615
#
1716
"""
1817
GCN Notice types, from <http://gcn.gsfc.nasa.gov/filtering.html>.

gcn/voeventclient.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Copyright (C) 2014-2018 Leo Singer
22
#
3-
# This program is free software; you can redistribute it and/or modify it
4-
# under the terms of the GNU General Public License as published by the
5-
# Free Software Foundation; either version 2 of the License, or (at your
6-
# option) any later version.
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU General Public License as published by
5+
# the Free Software Foundation, either version 3 of the License, or
6+
# (at your option) any later version.
77
#
8-
# This program is distributed in the hope that it will be useful, but
9-
# WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11-
# Public License for more details.
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU General Public License for more details.
1212
#
13-
# You should have received a copy of the GNU General Public License along
14-
# with this program; if not, write to the Free Software Foundation, Inc.,
15-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
13+
# You should have received a copy of the GNU General Public License
14+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
1615
#
1716
"""
1817
Anonymous VOEvent client for receiving GCNs in XML format, implementing the

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers =
2424
Development Status :: 4 - Beta
2525
Environment :: Console
2626
Intended Audience :: Science/Research
27-
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
27+
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
2828
Operating System :: POSIX
2929
Programming Language :: Python :: 2.7
3030
Programming Language :: Python :: 3.5

setup.py

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Copyright (C) 2014-2018 Leo Singer
22
#
3-
# This program is free software; you can redistribute it and/or modify it
4-
# under the terms of the GNU General Public License as published by the
5-
# Free Software Foundation; either version 2 of the License, or (at your
6-
# option) any later version.
3+
# This program is free software: you can redistribute it and/or modify
4+
# it under the terms of the GNU General Public License as published by
5+
# the Free Software Foundation, either version 3 of the License, or
6+
# (at your option) any later version.
77
#
8-
# This program is distributed in the hope that it will be useful, but
9-
# WITHOUT ANY WARRANTY; without even the implied warranty of
10-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
11-
# Public License for more details.
8+
# This program is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
# GNU General Public License for more details.
1212
#
13-
# You should have received a copy of the GNU General Public License along
14-
# with this program; if not, write to the Free Software Foundation, Inc.,
15-
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
13+
# You should have received a copy of the GNU General Public License
14+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
1615
#
1716

1817
import ast

0 commit comments

Comments
 (0)