From 1c82dafa6b6c1d38f98bc755f3263ba315eb83a6 Mon Sep 17 00:00:00 2001 From: "R. Tyler Croy" Date: Sun, 8 Jan 2017 10:31:57 -0800 Subject: [PATCH] Add license preambles to all the source files --- src/arun-handlers.adb | 18 ++++++++++++++++++ src/arun-handlers.ads | 18 ++++++++++++++++++ src/arun-launcher.adb | 18 ++++++++++++++++++ src/arun-launcher.ads | 19 ++++++++++++++++++- src/arun.adb | 20 ++++++++++++++++++++ src/arun.ads | 19 ++++++++++++++++++- src/main.adb | 19 ++++++++++++++++++- 7 files changed, 128 insertions(+), 3 deletions(-) diff --git a/src/arun-handlers.adb b/src/arun-handlers.adb index 856d1a2..482fcbf 100644 --- a/src/arun-handlers.adb +++ b/src/arun-handlers.adb @@ -1,6 +1,24 @@ --- -- Basic GtkAda handlers for Arun --- +------------------------------------------------------------------------------ +-- +-- Copyright (C) 2017 R. Tyler Croy +-- +-- 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. +------------------------------------------------------------------------------ with Ada.Text_IO; with GNAT.OS_Lib; diff --git a/src/arun-handlers.ads b/src/arun-handlers.ads index 875e538..a7d3539 100644 --- a/src/arun-handlers.ads +++ b/src/arun-handlers.ads @@ -1,6 +1,24 @@ --- -- Basic GtkAda handlers for Arun --- +------------------------------------------------------------------------------ +-- +-- Copyright (C) 2017 R. Tyler Croy +-- +-- 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. +------------------------------------------------------------------------------ with Gtkada.Builder; use Gtkada.Builder; diff --git a/src/arun-launcher.adb b/src/arun-launcher.adb index 4d77765..24aba7a 100644 --- a/src/arun-launcher.adb +++ b/src/arun-launcher.adb @@ -1,3 +1,21 @@ +------------------------------------------------------------------------------ +-- +-- Copyright (C) 2017 R. Tyler Croy +-- +-- 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. +------------------------------------------------------------------------------ with Ada.Text_IO; use Ada.Text_IO; with Ada.Command_Line.Environment; diff --git a/src/arun-launcher.ads b/src/arun-launcher.ads index fb857fd..99a979d 100644 --- a/src/arun-launcher.ads +++ b/src/arun-launcher.ads @@ -1,4 +1,21 @@ - +------------------------------------------------------------------------------ +-- +-- Copyright (C) 2017 R. Tyler Croy +-- +-- 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. +------------------------------------------------------------------------------ package Arun.Launcher is diff --git a/src/arun.adb b/src/arun.adb index d3162ae..9abea0c 100644 --- a/src/arun.adb +++ b/src/arun.adb @@ -1,3 +1,23 @@ +------------------------------------------------------------------------------ +-- +-- Copyright (C) 2017 R. Tyler Croy +-- +-- 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. +------------------------------------------------------------------------------ + + with Gtk; use Gtk; with Gtk.Box; use Gtk.Box; diff --git a/src/arun.ads b/src/arun.ads index b7bad2c..142f405 100644 --- a/src/arun.ads +++ b/src/arun.ads @@ -1,4 +1,21 @@ - +------------------------------------------------------------------------------ +-- +-- Copyright (C) 2017 R. Tyler Croy +-- +-- 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. +------------------------------------------------------------------------------ package Arun is procedure Main; diff --git a/src/main.adb b/src/main.adb index af7b340..916bef0 100644 --- a/src/main.adb +++ b/src/main.adb @@ -1,4 +1,21 @@ - +------------------------------------------------------------------------------ +-- +-- Copyright (C) 2017 R. Tyler Croy +-- +-- 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. +------------------------------------------------------------------------------ with Arun; procedure Main is