-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #537 from nullr0ute/prepare-0.4.12
Prepare 0.4.12
- Loading branch information
Showing
18 changed files
with
113 additions
and
72 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fdo-admin-tool" | ||
version = "0.4.11" | ||
version = "0.4.12" | ||
authors = ["Antonio Murdaca <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -21,10 +21,10 @@ pretty_env_logger = "0.4" | |
nix = "0.26" | ||
tokio = { version = "1", features = ["full"] } | ||
|
||
fdo-data-formats = { path = "../data-formats", version = "0.4.11" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.11", features = ["server", "client"] } | ||
fdo-store = { path = "../store", version = "0.4.11", features = ["directory"] } | ||
fdo-util = { path = "../util", version = "0.4.11" } | ||
fdo-data-formats = { path = "../data-formats", version = "0.4.12" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.12", features = ["server", "client"] } | ||
fdo-store = { path = "../store", version = "0.4.12", features = ["directory"] } | ||
fdo-util = { path = "../util", version = "0.4.12" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fdo-client-linuxapp" | ||
version = "0.4.11" | ||
version = "0.4.12" | ||
authors = ["Patrick Uiterwijk <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -22,6 +22,6 @@ secrecy = "0.8" | |
devicemapper = "0.33" | ||
openssl = "0.10.55" | ||
|
||
fdo-data-formats = { path = "../data-formats", version = "0.4.11" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.11", features = ["client"] } | ||
fdo-util = { path = "../util", version = "0.4.11" } | ||
fdo-data-formats = { path = "../data-formats", version = "0.4.12" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.12", features = ["client"] } | ||
fdo-util = { path = "../util", version = "0.4.12" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fdo-data-formats" | ||
version = "0.4.11" | ||
version = "0.4.12" | ||
authors = ["Patrick Uiterwijk <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
%global combined_license Apache-2.0 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR ISC OR MIT) AND (Apache-2.0 OR MIT) AND ((Apache-2.0 OR MIT) AND BSD-3-Clause) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-2-Clause AND BSD-3-Clause AND (CC0-1.0 OR Apache-2.0) AND (CC0-1.0 OR MIT-0 OR Apache 2.0) AND ISC AND MIT AND ((MIT OR Apache-2.0) AND Unicode-DFS-2016) AND (Apache-2.0 OR MIT OR Zlib) AND MPL-2.0 AND (Unlicense OR MIT) | ||
|
||
Name: fido-device-onboard | ||
Version: 0.4.11 | ||
Version: 0.4.12 | ||
Release: 1%{?dist} | ||
Summary: A rust implementation of the FIDO Device Onboard Specification | ||
License: BSD-3-Clause | ||
|
@@ -64,7 +64,21 @@ install -D -m 0644 -t %{buildroot}%{_docdir}/fdo examples/config/* | |
# duplicates as needed by AIO command so link them | ||
ln -s %{_bindir}/fdo-owner-tool %{buildroot}%{_libexecdir}/fdo/fdo-owner-tool | ||
ln -s %{_bindir}/fdo-admin-tool %{buildroot}%{_libexecdir}/fdo/fdo-admin-tool | ||
# Create directories needed by the various services so we own them | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/keys | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores/manufacturer_keys | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores/manufacturing_sessions | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores/owner_onboarding_sessions | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores/owner_vouchers | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores/rendezvous_registered | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores/rendezvous_sessions | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/stores/serviceinfo_api_devices | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/manufacturing-server.conf.d | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/owner-onboarding-server.conf.d | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/rendezvous-server.conf.d | ||
mkdir -p %{buildroot}%{_sysconfdir}/fdo/serviceinfo-api-server.conf.d | ||
# Dracut manufacturing service | ||
install -D -m 0755 -t %{buildroot}%{dracutlibdir}/modules.d/52fdo dracut/52fdo/module-setup.sh | ||
install -D -m 0755 -t %{buildroot}%{dracutlibdir}/modules.d/52fdo dracut/52fdo/manufacturing-client-generator | ||
|
@@ -93,6 +107,14 @@ Requires: openssl-libs >= 3.0.1-12 | |
|
||
%files -n fdo-owner-onboarding-server | ||
%license LICENSE LICENSE.dependencies | ||
%dir %{_sysconfdir}/fdo | ||
%dir %{_sysconfdir}/fdo/keys | ||
%dir %{_sysconfdir}/fdo/owner-onboarding-server.conf.d | ||
%dir %{_sysconfdir}/fdo/serviceinfo-api-server.conf.d | ||
%dir %{_sysconfdir}/fdo/stores | ||
%dir %{_sysconfdir}/fdo/stores/owner_onboarding_sessions | ||
%dir %{_sysconfdir}/fdo/stores/owner_vouchers | ||
%dir %{_sysconfdir}/fdo/stores/serviceinfo_api_devices | ||
%{_libexecdir}/fdo/fdo-owner-onboarding-server | ||
%{_libexecdir}/fdo/fdo-serviceinfo-api-server | ||
%dir %{_docdir}/fdo | ||
|
@@ -122,6 +144,12 @@ License: %combined_license | |
|
||
%files -n fdo-rendezvous-server | ||
%license LICENSE LICENSE.dependencies | ||
%dir %{_sysconfdir}/fdo | ||
%dir %{_sysconfdir}/fdo/keys | ||
%dir %{_sysconfdir}/fdo/rendezvous-server.conf.d | ||
%dir %{_sysconfdir}/fdo/stores | ||
%dir %{_sysconfdir}/fdo/stores/rendezvous_registered | ||
%dir %{_sysconfdir}/fdo/stores/rendezvous_sessions | ||
%{_libexecdir}/fdo/fdo-rendezvous-server | ||
%dir %{_docdir}/fdo | ||
%{_docdir}/fdo/rendezvous-*.yml | ||
|
@@ -145,6 +173,14 @@ Requires: openssl-libs >= 3.0.1-12 | |
|
||
%files -n fdo-manufacturing-server | ||
%license LICENSE LICENSE.dependencies | ||
%dir %{_sysconfdir}/fdo | ||
%dir %{_sysconfdir}/fdo/keys | ||
%dir %{_sysconfdir}/fdo/manufacturing-server.conf.d | ||
%dir %{_sysconfdir}/fdo/keys | ||
%dir %{_sysconfdir}/fdo/stores | ||
%dir %{_sysconfdir}/fdo/stores/manufacturer_keys | ||
%dir %{_sysconfdir}/fdo/stores/manufacturing_sessions | ||
%dir %{_sysconfdir}/fdo/stores/owner_vouchers | ||
%{_libexecdir}/fdo/fdo-manufacturing-server | ||
%dir %{_docdir}/fdo | ||
%{_docdir}/fdo/manufacturing-server.yml | ||
|
@@ -199,8 +235,6 @@ License: %combined_license | |
Summary: FDO admin tools implementation | ||
License: %combined_license | ||
Requires: fdo-manufacturing-server = %{version}-%{release} | ||
Requires: fdo-init = %{version}-%{release} | ||
Requires: fdo-client = %{version}-%{release} | ||
Requires: fdo-rendezvous-server = %{version}-%{release} | ||
Requires: fdo-owner-onboarding-server = %{version}-%{release} | ||
Requires: fdo-owner-cli = %{version}-%{release} | ||
|
@@ -209,10 +243,11 @@ Requires: fdo-owner-cli = %{version}-%{release} | |
|
||
%files -n fdo-admin-cli | ||
%license LICENSE LICENSE.dependencies | ||
%dir %{_sysconfdir}/fdo | ||
%dir %{_sysconfdir}/fdo/keys | ||
%{_bindir}/fdo-admin-tool | ||
%{_libexecdir}/fdo/fdo-admin-tool | ||
%{_unitdir}/fdo-aio.service | ||
%dir %{_sysconfdir}/fdo | ||
|
||
%post -n fdo-admin-cli | ||
%systemd_post fdo-aio.service | ||
|
@@ -224,9 +259,15 @@ Requires: fdo-owner-cli = %{version}-%{release} | |
%systemd_postun_with_restart fdo-aio.service | ||
|
||
%changelog | ||
* Wed Jul 26 2023 Peter Robinson <[email protected]> - 0.4.12-1 | ||
- Update to 0.4.12 | ||
|
||
* Mon Jul 03 2023 Peter Robinson <[email protected]> - 0.4.11-1 | ||
- Update to 0.4.11 | ||
|
||
* Mon Jul 03 2023 Peter Robinson <[email protected]> - 0.4.10-2 | ||
- Updates for eln/c9s building | ||
|
||
* Fri Jun 23 2023 Peter Robinson <[email protected]> - 0.4.10-1 | ||
- Update to 0.4.10 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fdo-http-wrapper" | ||
version = "0.4.11" | ||
version = "0.4.12" | ||
authors = ["Patrick Uiterwijk <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -18,8 +18,8 @@ hex = "0.4" | |
|
||
openssl = "0.10.55" | ||
|
||
fdo-data-formats = { path = "../data-formats", version = "0.4.11" } | ||
fdo-store = { path = "../store", version = "0.4.11" } | ||
fdo-data-formats = { path = "../data-formats", version = "0.4.12" } | ||
fdo-store = { path = "../store", version = "0.4.12" } | ||
aws-nitro-enclaves-cose = "0.4.0" | ||
|
||
# Server-side | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "integration-tests" | ||
version = "0.4.11" | ||
version = "0.4.12" | ||
edition = "2018" | ||
publish = false | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fdo-manufacturing-client" | ||
version = "0.4.11" | ||
version = "0.4.12" | ||
authors = ["Patrick Uiterwijk <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,6 +17,6 @@ rand = "0.8.4" | |
tss-esapi = { version = "7.2", features = ["generate-bindings"] } | ||
regex = "1.3.7" | ||
|
||
fdo-data-formats = { path = "../data-formats", version = "0.4.11" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.11", features = ["client"] } | ||
fdo-util = { path = "../util", version = "0.4.11" } | ||
fdo-data-formats = { path = "../data-formats", version = "0.4.12" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.12", features = ["client"] } | ||
fdo-util = { path = "../util", version = "0.4.12" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fdo-manufacturing-server" | ||
version = "0.4.11" | ||
version = "0.4.12" | ||
authors = ["Patrick Uiterwijk <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -18,7 +18,7 @@ log = "0.4" | |
hex = "0.4" | ||
serde_yaml = "0.9" | ||
|
||
fdo-data-formats = { path = "../data-formats", version = "0.4.11" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.11", features = ["server"] } | ||
fdo-store = { path = "../store", version = "0.4.11", features = ["directory"] } | ||
fdo-util = { path = "../util", version = "0.4.11" } | ||
fdo-data-formats = { path = "../data-formats", version = "0.4.12" } | ||
fdo-http-wrapper = { path = "../http-wrapper", version = "0.4.12", features = ["server"] } | ||
fdo-store = { path = "../store", version = "0.4.12", features = ["directory"] } | ||
fdo-util = { path = "../util", version = "0.4.12" } |
Oops, something went wrong.