Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed missing attribution for acme-client and Sympl (jessie) #145

Open
wants to merge 4 commits into
base: jessie
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions common/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
symbiosis-common (2020:0818) stable; urgency=medium

* Fixed missing attribution for included code from other OSS projects.

-- Paul Cammish <kelduum@mythic-beasts.com> Tue, 18 Aug 2020 11:18:34 +0100

symbiosis-common (2020:0203) stable; urgency=medium

* Implement Acme V2 Fix for Let's Encrypt
Expand Down
49 changes: 49 additions & 0 deletions common/debian/copyright
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,52 @@ Licence:

On Debian systems, the complete text of the GNU General Public
Licence, version 2, can be found in /usr/share/common-licenses/GPL-2.


Files: /usr/lib/ruby/symbiosis/ssl/letsencrypt.rb
Comment: Back-ported from Sympl, a fork of Symbiosis: https://sympl.host
Copyright: 2019, The Sympl Project
License: GPL-2+
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 package; if not, write to the Free
Software Foundation, Inc., 51 Franklin St, Fifth Floor,
Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU General Public
License version 2 can be found in the file
`/usr/share/common-licenses/GPL-2'.


Files: /usr/lib/ruby/vendor_ruby/acme.rb /usr/lib/ruby/vendor_ruby/acme/*:
Comment: Original source: https://github.com/unixcharles/acme-client
Copyright: 2019, Charles Barbier
License: The MIT License (MIT)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
9 changes: 9 additions & 0 deletions common/lib/symbiosis/ssl/letsencrypt.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Updated in 2019 for Sympl (https://sympl.host) to support ACMEv02 Let's Encrypt API
# Sympl is a fork of Symbiosis under active development, with support for current Debian.
# The Sympl Project is supported by Mythic Beasts (mythic-beasts.com)
# Source: https://gitlab.mythic-beasts.com/sympl/sympl/-/blob/buster/core/lib/symbiosis/ssl/letsencrypt.rb
#
# This version back-ported to Symbiosis in Feb 2020.
#
# Original version copyright 2016 Bytemark Hosting.

require 'symbiosis/ssl'
require 'symbiosis/ssl/selfsigned'
require 'symbiosis/host'
Expand Down