Skip to content
This repository was archived by the owner on Oct 25, 2021. It is now read-only.

Commit ffa30d5

Browse files
author
Rett Berg
committed
fix #238: correct license comments in source code to MIT/APACHE
1 parent c6b2b9e commit ffa30d5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+739
-513
lines changed

artifact-data/src/artifact.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2017 Garrett Berg <@vitiral, vitiral@gmail.com>
2+
* Copyright (C) 2018 Rett Berg <@vitiral, vitiral@gmail.com>
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* The source code is Licensed under either of
85
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
6+
* * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
7+
* http://www.apache.org/licenses/LICENSE-2.0)
8+
* * MIT license ([LICENSE-MIT](LICENSE-MIT) or
9+
* http://opensource.org/licenses/MIT)
1310
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* at your option.
12+
*
13+
* Unless you explicitly state otherwise, any contribution intentionally submitted
14+
* for inclusion in the work by you, as defined in the Apache-2.0 license, shall
15+
* be dual licensed as above, without any additional terms or conditions.
1616
* */
1717

1818
//! #SPC-read-artifact

artifact-data/src/dev_prelude.rs

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
/*
1+
/* artifact: the requirements tracking tool made for developers
2+
* Copyright (C) 2018 Rett Berg <@vitiral, vitiral@gmail.com>
23
*
3-
* This program is free software: you can redistribute it and/or modify
4-
* it under the terms of the Lesser GNU General Public License as published
5-
* by the Free Software Foundation, either version 3 of the License, or
6-
* (at your option) any later version.
4+
* The source code is Licensed under either of
75
*
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.
6+
* * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
7+
* http://www.apache.org/licenses/LICENSE-2.0)
8+
* * MIT license ([LICENSE-MIT](LICENSE-MIT) or
9+
* http://opensource.org/licenses/MIT)
1210
*
13-
* You should have received a copy of the Lesser GNU General Public License
14-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* at your option.
12+
*
13+
* Unless you explicitly state otherwise, any contribution intentionally submitted
14+
* for inclusion in the work by you, as defined in the Apache-2.0 license, shall
15+
* be dual licensed as above, without any additional terms or conditions.
1516
* */
1617
pub(crate) use ergo::*;
1718
#[allow(unused_imports)]

artifact-data/src/graph.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2017 Garrett Berg <@vitiral, vitiral@gmail.com>
2+
* Copyright (C) 2018 Rett Berg <@vitiral, vitiral@gmail.com>
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* The source code is Licensed under either of
85
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
6+
* * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
7+
* http://www.apache.org/licenses/LICENSE-2.0)
8+
* * MIT license ([LICENSE-MIT](LICENSE-MIT) or
9+
* http://opensource.org/licenses/MIT)
1310
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* at your option.
12+
*
13+
* Unless you explicitly state otherwise, any contribution intentionally submitted
14+
* for inclusion in the work by you, as defined in the Apache-2.0 license, shall
15+
* be dual licensed as above, without any additional terms or conditions.
1616
* */
1717
//! Module for constructing and processing graphs of artifacts.
1818
use petgraph;

artifact-data/src/implemented.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2017 Garrett Berg <@vitiral, vitiral@gmail.com>
2+
* Copyright (C) 2018 Rett Berg <@vitiral, vitiral@gmail.com>
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* The source code is Licensed under either of
85
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
6+
* * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
7+
* http://www.apache.org/licenses/LICENSE-2.0)
8+
* * MIT license ([LICENSE-MIT](LICENSE-MIT) or
9+
* http://opensource.org/licenses/MIT)
1310
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* at your option.
12+
*
13+
* Unless you explicitly state otherwise, any contribution intentionally submitted
14+
* for inclusion in the work by you, as defined in the Apache-2.0 license, shall
15+
* be dual licensed as above, without any additional terms or conditions.
1616
* */
1717
//! #SPC-read-impl
1818
//!

artifact-data/src/intermediate.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2017 Garrett Berg <@vitiral, vitiral@gmail.com>
2+
* Copyright (C) 2018 Rett Berg <@vitiral, vitiral@gmail.com>
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* The source code is Licensed under either of
85
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
6+
* * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
7+
* http://www.apache.org/licenses/LICENSE-2.0)
8+
* * MIT license ([LICENSE-MIT](LICENSE-MIT) or
9+
* http://opensource.org/licenses/MIT)
1310
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* at your option.
12+
*
13+
* Unless you explicitly state otherwise, any contribution intentionally submitted
14+
* for inclusion in the work by you, as defined in the Apache-2.0 license, shall
15+
* be dual licensed as above, without any additional terms or conditions.
1616
* */
1717
use std::fmt;
1818
use base64;

artifact-data/src/lib.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2017 Garrett Berg <@vitiral, vitiral@gmail.com>
2+
* Copyright (C) 2018 Rett Berg <@vitiral, vitiral@gmail.com>
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* The source code is Licensed under either of
85
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
6+
* * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
7+
* http://www.apache.org/licenses/LICENSE-2.0)
8+
* * MIT license ([LICENSE-MIT](LICENSE-MIT) or
9+
* http://opensource.org/licenses/MIT)
1310
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* at your option.
12+
*
13+
* Unless you explicitly state otherwise, any contribution intentionally submitted
14+
* for inclusion in the work by you, as defined in the Apache-2.0 license, shall
15+
* be dual licensed as above, without any additional terms or conditions.
1616
* */
1717
//! The artifact data crate defines the method of serializing
1818
//! and deserializing raw artifact and processing them into

artifact-data/src/modify.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2018 Garrett Berg <@vitiral, vitiral@gmail.com>
3-
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16-
* */
171
//! #SPC-modify
182
193
use std::error;

artifact-data/src/name.rs

Whitespace-only changes.

artifact-data/src/project.rs

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2017 Garrett Berg <@vitiral, vitiral@gmail.com>
3-
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
8-
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
13-
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
16-
* */
171
//! The major exported type and function for loading artifacts.
182
193
use time;

artifact-data/src/raw.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* artifact: the requirements tracking tool made for developers
2-
* Copyright (C) 2017 Garrett Berg <@vitiral, vitiral@gmail.com>
2+
* Copyright (C) 2018 Rett Berg <@vitiral, vitiral@gmail.com>
33
*
4-
* This program is free software: you can redistribute it and/or modify
5-
* it under the terms of the Lesser GNU General Public License as published
6-
* by the Free Software Foundation, either version 3 of the License, or
7-
* (at your option) any later version.
4+
* The source code is Licensed under either of
85
*
9-
* This program is distributed in the hope that it will be useful,
10-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
11-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12-
* GNU General Public License for more details.
6+
* * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
7+
* http://www.apache.org/licenses/LICENSE-2.0)
8+
* * MIT license ([LICENSE-MIT](LICENSE-MIT) or
9+
* http://opensource.org/licenses/MIT)
1310
*
14-
* You should have received a copy of the Lesser GNU General Public License
15-
* along with this program. If not, see <http://www.gnu.org/licenses/>.
11+
* at your option.
12+
*
13+
* Unless you explicitly state otherwise, any contribution intentionally submitted
14+
* for inclusion in the work by you, as defined in the Apache-2.0 license, shall
15+
* be dual licensed as above, without any additional terms or conditions.
1616
* */
1717
#![allow(dead_code)]
1818

0 commit comments

Comments
 (0)