grim/local-pipelines

Add a bunch of licensing info

2016-07-26, Gary Kramlich
aef3a7b69e1b
Parents e0e7aaa7b515
Children 34a698d6f0c9
Add a bunch of licensing info
--- a/README.md Tue Jul 26 19:13:25 2016 -0500
+++ b/README.md Tue Jul 26 19:13:50 2016 -0500
@@ -34,4 +34,18 @@
Additional environment variable support and need to investigate pipelines a bit
more to make sure everything looks the same.
+## Licensing
+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 3 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
--- a/pipelines/__init__.py Tue Jul 26 19:13:25 2016 -0500
+++ b/pipelines/__init__.py Tue Jul 26 19:13:50 2016 -0500
@@ -1,1 +1,21 @@
+# vi:et:ts=4 sw=4 sts=4
+#
+# local-pipelines : run Bitbucket pipelines locally
+# Copyright (C) 2016 Gary Kramlich <grim@reaperworld.com>
+# Copyright (C) 2016 Sean Farley <sean@farley.io>
+#
+# 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 3 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
+
__version__ = "0.1.1"
--- a/pipelines/__main__.py Tue Jul 26 19:13:25 2016 -0500
+++ b/pipelines/__main__.py Tue Jul 26 19:13:50 2016 -0500
@@ -1,3 +1,23 @@
+# vi:et:ts=4 sw=4 sts=4
+#
+# local-pipelines : run Bitbucket pipelines locally
+# Copyright (C) 2016 Gary Kramlich <grim@reaperworld.com>
+# Copyright (C) 2016 Sean Farley <sean@farley.io>
+#
+# 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 3 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
+
from pipelines.core import main
main()
--- a/pipelines/core.py Tue Jul 26 19:13:25 2016 -0500
+++ b/pipelines/core.py Tue Jul 26 19:13:50 2016 -0500
@@ -1,4 +1,22 @@
# vi:et:ts=4 sw=4 sts=4
+#
+# local-pipelines : run Bitbucket pipelines locally
+# Copyright (C) 2016 Gary Kramlich <grim@reaperworld.com>
+# Copyright (C) 2016 Sean Farley <sean@farley.io>
+#
+# 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 3 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
from __future__ import print_function
--- a/pipelines/pipeline.py Tue Jul 26 19:13:25 2016 -0500
+++ b/pipelines/pipeline.py Tue Jul 26 19:13:50 2016 -0500
@@ -1,4 +1,22 @@
# vi:et:ts=4 sw=4 sts=4
+#
+# local-pipelines : run Bitbucket pipelines locally
+# Copyright (C) 2016 Gary Kramlich <grim@reaperworld.com>
+# Copyright (C) 2016 Sean Farley <sean@farley.io>
+#
+# 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 3 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
import fnmatch
import os
--- a/pipelines/vcs.py Tue Jul 26 19:13:25 2016 -0500
+++ b/pipelines/vcs.py Tue Jul 26 19:13:50 2016 -0500
@@ -1,4 +1,22 @@
# vi:et:ts=4 sw=4 sts=4
+#
+# local-pipelines : run Bitbucket pipelines locally
+# Copyright (C) 2016 Gary Kramlich <grim@reaperworld.com>
+# Copyright (C) 2016 Sean Farley <sean@farley.io>
+#
+# 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 3 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
import os
import subprocess
--- a/setup.py Tue Jul 26 19:13:25 2016 -0500
+++ b/setup.py Tue Jul 26 19:13:50 2016 -0500
@@ -1,4 +1,22 @@
# vi:et:ts=4 sw=4 sts=4
+#
+# local-pipelines : run Bitbucket pipelines locally
+# Copyright (C) 2016 Gary Kramlich <grim@reaperworld.com>
+# Copyright (C) 2016 Sean Farley <sean@farley.io>
+#
+# 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 3 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
from setuptools import setup, find_packages