Skip to content

Commit

Permalink
change license headers from EPL to Apache-2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
max-grzanna authored and SebastianSchildt committed Oct 4, 2024
1 parent 1be5056 commit f70153a
Show file tree
Hide file tree
Showing 10 changed files with 51 additions and 49 deletions.
10 changes: 5 additions & 5 deletions zenoh-kuksa-provider/.gitignore
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#*******************************************************************************
########################################################################
# Copyright (c) 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: EPL-2.0
#*******************************************************************************
# SPDX-License-Identifier: Apache-2.0
########################################################################

# compiled files and executables
target
Expand Down
10 changes: 5 additions & 5 deletions zenoh-kuksa-provider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#*******************************************************************************
########################################################################
# Copyright (c) 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: EPL-2.0
#*******************************************************************************
# SPDX-License-Identifier: Apache-2.0
########################################################################


[package]
Expand Down
22 changes: 12 additions & 10 deletions zenoh-kuksa-provider/DEFAULT_CONFIG.json5
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
// Copyright (c) 2024 Contributors to the Eclipse Foundation
//
// See the NOTICE file(s) distributed with this work for additional
// information regarding copyright ownership.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License 2.0 which is available at
// http://www.eclipse.org/legal/epl-2.0
//
// SPDX-License-Identifier: EPL-2.0
/********************************************************************************
* Copyright (c) 2024 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

{
// Zenoh configuration
Expand Down
10 changes: 5 additions & 5 deletions zenoh-kuksa-provider/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# *******************************************************************************
########################################################################
# Copyright (c) 2024 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0
# terms of the Apache License 2.0 which is available at
# http://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: EPL-2.0
# *******************************************************************************
# SPDX-License-Identifier: Apache-2.0
########################################################################

FROM ghcr.io/rust-cross/rust-musl-cross:x86_64-musl AS builder-amd64
ENV BUILDTARGET="x86_64-unknown-linux-musl"
Expand Down
8 changes: 4 additions & 4 deletions zenoh-kuksa-provider/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

use clap::Parser;
use log::{debug, info};
Expand Down
8 changes: 4 additions & 4 deletions zenoh-kuksa-provider/src/provider_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

use log::error;
use serde::{Deserialize, Serialize};
Expand Down
8 changes: 4 additions & 4 deletions zenoh-kuksa-provider/src/utils/kuksa_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

use kuksa::proto::v1::{datapoint::Value, DataType, Datapoint};
use log::warn;
Expand Down
8 changes: 4 additions & 4 deletions zenoh-kuksa-provider/src/utils/metadata_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

use std::collections::HashMap;
use std::sync::Arc;
Expand Down
8 changes: 4 additions & 4 deletions zenoh-kuksa-provider/src/utils/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

pub mod kuksa_utils;
pub mod metadata_store;
Expand Down
8 changes: 4 additions & 4 deletions zenoh-kuksa-provider/src/utils/zenoh_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
* terms of the Apache License 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/

use zenoh::buffers::ZBuf;
use zenoh::prelude::*;
Expand Down

0 comments on commit f70153a

Please sign in to comment.