diff --git a/README.en.md b/README.en.md deleted file mode 100644 index fb1492b..0000000 --- a/README.en.md +++ /dev/null @@ -1,36 +0,0 @@ -# tang - -#### Description -{**When you're done, you can delete the content in this README and update the file with details for others getting started with your repository**} - -#### Software Architecture -Software architecture description - -#### Installation - -1. xxxx -2. xxxx -3. xxxx - -#### Instructions - -1. xxxx -2. xxxx -3. xxxx - -#### Contribution - -1. Fork the repository -2. Create Feat_xxx branch -3. Commit your code -4. Create Pull Request - - -#### Gitee Feature - -1. You can use Readme\_XXX.md to support different languages, such as Readme\_en.md, Readme\_zh.md -2. Gitee blog [blog.gitee.com](https://blog.gitee.com) -3. Explore open source project [https://gitee.com/explore](https://gitee.com/explore) -4. The most valuable open source project [GVP](https://gitee.com/gvp) -5. The manual of Gitee [https://gitee.com/help](https://gitee.com/help) -6. The most popular members [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/README.md b/README.md deleted file mode 100644 index b0f4355..0000000 --- a/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# tang - -#### 介绍 -{**以下是码云平台说明,您可以替换此简介** -码云是 OSCHINA 推出的基于 Git 的代码托管平台(同时支持 SVN)。专为开发者提供稳定、高效、安全的云端软件开发协作平台 -无论是个人、团队、或是企业,都能够用码云实现代码托管、项目管理、协作开发。企业项目请看 [https://gitee.com/enterprises](https://gitee.com/enterprises)} - -#### 软件架构 -软件架构说明 - - -#### 安装教程 - -1. xxxx -2. xxxx -3. xxxx - -#### 使用说明 - -1. xxxx -2. xxxx -3. xxxx - -#### 参与贡献 - -1. Fork 本仓库 -2. 新建 Feat_xxx 分支 -3. 提交代码 -4. 新建 Pull Request - - -#### 码云特技 - -1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md -2. 码云官方博客 [blog.gitee.com](https://blog.gitee.com) -3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解码云上的优秀开源项目 -4. [GVP](https://gitee.com/gvp) 全称是码云最有价值开源项目,是码云综合评定出的优秀开源项目 -5. 码云官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) -6. 码云封面人物是一档用来展示码云会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) diff --git a/tang-7.tar.bz2 b/tang-7.tar.bz2 new file mode 100644 index 0000000..0c07e82 Binary files /dev/null and b/tang-7.tar.bz2 differ diff --git a/tang.spec b/tang.spec new file mode 100644 index 0000000..2e09ff5 --- /dev/null +++ b/tang.spec @@ -0,0 +1,101 @@ +Name: tang +Version: 7 +Release: 2 +Summary: Server for binding data to network presence +License: GPLv3+ +URL: https://github.com/latchset/%{name} +Source0: https://github.com/latchset/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2 + +BuildRequires: gcc jose libjose-devel libjose-zlib-devel libjose-openssl-devel +BuildRequires: http-parser-devel systemd-devel pkgconfig systemd curl +BuildRequires: asciidoc coreutils grep sed + +Requires: coreutils jose grep sed +Requires(pre): shadow-utils +%{?systemd_requires} + +%description +This package is a server for binding data to network presence. +First, the client gets a list of the Tang server's advertised asymmetric keys. +This can happen online by a simple HTTP GET. Alternatively, since the keys are +asymmetric, the public key list can be distributed out of band. +Second, the client uses one of these public keys to generate a unique, +cryptographically strong encryption key. The data is then encrypted using this +key. Once the data is encrypted, the key is discarded. Some small metadata is +produced as part of this operation which the client should store in a convenient +location. This process of encrypting data is the provisioning step. +Third, when the client is ready to access its data, it simply loads the metadata +produced in the provisioning step and performs an HTTP POST in order to recover +the encryption key. This process is the recovery step. + +%package_help + +%prep +%autosetup -n %{name}-%{version} + +%build +%configure +%make_build + +%install +%make_install + +%{__sed} -i 's|DirectoryMode=0700||' %{buildroot}/%{_unitdir}/%{name}d-update.path +%{__sed} -i 's|MakeDirectory=true||' %{buildroot}/%{_unitdir}/%{name}d-update.path +echo "User=%{name}" >> %{buildroot}/%{_unitdir}/%{name}d-update.service +echo "User=%{name}" >> %{buildroot}/%{_unitdir}/%{name}d@.service +install -d %{buildroot}/%{_localstatedir}/cache/%{name} +install -d %{buildroot}/%{_localstatedir}/db/%{name} + +%check +if ! make %{?_smp_mflags} check; then + cat test-suite.log + false +fi + +%pre +getent group %{name} >/dev/null || groupadd -r %{name} +getent passwd %{name} >/dev/null || \ + useradd -r -g %{name} -d %{_localstatedir}/cache/%{name} -s /sbin/nologin \ + -c "Tang Network Presence Daemon user" %{name} +exit 0 + +%post +%systemd_post %{name}d.socket +%systemd_post %{name}d-update.path +%systemd_post %{name}d-update.service +%systemd_post %{name}d-keygen.service + +%preun +%systemd_preun %{name}d.socket +%systemd_preun %{name}d-update.path +%systemd_preun %{name}d-update.service +%systemd_preun %{name}d-keygen.service + +%postun +%systemd_postun_with_restart %{name}d.socket +%systemd_postun_with_restart %{name}d-update.path +%systemd_postun_with_restart %{name}d-update.service +%systemd_postun_with_restart %{name}d-keygen.service + +%files +%license COPYING +%attr(0750, %{name}, %{name}) %{_localstatedir}/cache/%{name} +%attr(2570, %{name}, %{name}) %{_localstatedir}/db/%{name} +%{_unitdir}/%{name}d-keygen.service +%{_unitdir}/%{name}d-update.service +%{_unitdir}/%{name}d-update.path +%{_unitdir}/%{name}d@.service +%{_unitdir}/%{name}d.socket +%{_libexecdir}/%{name}d-keygen +%{_libexecdir}/%{name}d-update +%{_libexecdir}/%{name}d +%{_bindir}/%{name}-show-keys + +%files help +%{_mandir}/man8/tang.8* +%{_mandir}/man1/tang-show-keys.1* + +%changelog +* Thu Dec 5 2019 openEuler Buildteam - 7-2 +- Package init \ No newline at end of file