Compare commits
20 Commits
master
...
debian/lat
| Author | SHA1 | Date |
|---|---|---|
|
|
5d5ad3a57f | |
|
|
696ecae7c8 | |
|
|
0e82f11b62 | |
|
|
aff69c9d2b | |
|
|
a5599bf3c2 | |
|
|
94d2303396 | |
|
|
d5d6f73b8c | |
|
|
38999d1e49 | |
|
|
85c20f8961 | |
|
|
4b79ff1011 | |
|
|
0bf4b945d2 | |
|
|
f78e829b18 | |
|
|
38db47bd5c | |
|
|
82c72aac3b | |
|
|
454470316c | |
|
|
f86b8e4195 | |
|
|
9c9b60bf30 | |
|
|
801ef5f0c1 | |
|
|
5995edec50 | |
|
|
17ab889ff7 |
|
|
@ -65,13 +65,8 @@ jobs:
|
|||
cmake --workflow --preset ci
|
||||
pass:
|
||||
name: Pass
|
||||
if: always()
|
||||
needs:
|
||||
- checks
|
||||
- build-and-test
|
||||
needs: [checks, build-and-test]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Decide whether the needed jobs succeeded or failed
|
||||
uses: re-actors/alls-green@release/v1
|
||||
with:
|
||||
jobs: ${{ toJSON(needs) }}
|
||||
- name: Placeholder
|
||||
run: true
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
ocppi (0.3.2-1) UNRELEASED; urgency=medium
|
||||
|
||||
* Initial release
|
||||
|
||||
-- Chen Linxuan <me@black-desk.cn> Thu, 21 Mar 2024 21:29:25 +0800
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
Source: ocppi
|
||||
Maintainer: Chen Linxuan <me@black-desk.cn>
|
||||
Section: devel
|
||||
Priority: optional
|
||||
Standards-Version: 4.6.2
|
||||
Build-Depends: cmake,
|
||||
debhelper-compat (= 12),
|
||||
libexpected-dev (>= 1.0.0~dfsg-2~bpo10+1),
|
||||
nlohmann-json3-dev (>= 3.5.0),
|
||||
pkgconf
|
||||
|
||||
Package: libocppi-dev
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Description: c++ library for OCI runtime and distribution
|
||||
A C++ library for using/implement OCI runtime and distribution
|
||||
.
|
||||
A C++ library for using OCI runtime cli, distribution, or implement OCI runtime.
|
||||
|
||||
Package: libocppi0.3.2
|
||||
Architecture: any
|
||||
Depends: ${misc:Depends}, ${shlibs:Depends}
|
||||
Description: c++ library for OCI runtime and distribution
|
||||
A C++ library for using/implement OCI runtime and distribution
|
||||
.
|
||||
A C++ library for using OCI runtime cli, distribution, or implement OCI runtime.
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
Files:
|
||||
*
|
||||
Copyright: 2023 Chen Linxuan
|
||||
License: LGPL-2+
|
||||
|
||||
Files:
|
||||
debian/*
|
||||
Copyright: 2023 Chen Linxuan
|
||||
License: LGPL-2+
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
usr/include/ocppi-*
|
||||
usr/lib/*/*.so
|
||||
usr/lib/*/cmake/ocppi-*
|
||||
|
|
@ -0,0 +1 @@
|
|||
usr/lib/*/*.so.*
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/make -f
|
||||
%:
|
||||
dh $@
|
||||
override_dh_auto_configure:
|
||||
dh_auto_configure -- -DCPM_LOCAL_PACKAGES_ONLY=ON ${DH_AUTO_ARGS}
|
||||
|
|
@ -0,0 +1 @@
|
|||
3.0 (quilt)
|
||||
|
|
@ -31,6 +31,7 @@ struct DeleteOption;
|
|||
struct ExecOption;
|
||||
struct KillOption;
|
||||
struct ListOption;
|
||||
class Signal;
|
||||
struct StartOption;
|
||||
struct StateOption;
|
||||
struct GlobalOption;
|
||||
|
|
|
|||
|
|
@ -2,7 +2,11 @@
|
|||
|
||||
#include <string>
|
||||
|
||||
namespace ocppi::runtime {
|
||||
namespace ocppi::runtime
|
||||
{
|
||||
|
||||
class Signal : public std::string {
|
||||
using std::string::string;
|
||||
};
|
||||
|
||||
using Signal = std::string;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@
|
|||
#include "ocppi/runtime/DeleteOption.hpp"
|
||||
#include "ocppi/runtime/FeaturesOption.hpp"
|
||||
#include "ocppi/runtime/KillOption.hpp"
|
||||
#include "ocppi/runtime/Signal.hpp"
|
||||
#include "ocppi/runtime/StartOption.hpp"
|
||||
#include "ocppi/runtime/StateOption.hpp"
|
||||
#include "ocppi/runtime/features/types/Features.hpp"
|
||||
|
|
@ -25,6 +24,8 @@ namespace state::types
|
|||
struct State;
|
||||
}
|
||||
|
||||
class Signal;
|
||||
|
||||
class SpecRuntime {
|
||||
public:
|
||||
SpecRuntime() = default;
|
||||
|
|
|
|||
Loading…
Reference in New Issue