Updated to 2.2 (0fde6ba3a56be0b28a0100e8492e362564fe2ec2)
OBS-URL: https://build.opensuse.org/package/show/systemsmanagement:Agama:Devel/agama-cli?expand=0&rev=8
This commit is contained in:
parent
e0bf6f8ba7
commit
c09b544584
2
_service
2
_service
@ -4,7 +4,7 @@
|
|||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">v(.*)</param>
|
<param name="versionrewrite-pattern">v(.*)</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">v2.1</param>
|
<param name="revision">v2.2</param>
|
||||||
<param name="subdir">rust</param>
|
<param name="subdir">rust</param>
|
||||||
<param name="without-version">enable</param>
|
<param name="without-version">enable</param>
|
||||||
<param name="extract">package/agama-cli.changes</param>
|
<param name="extract">package/agama-cli.changes</param>
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Jun 1 08:14:14 UTC 2023 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
|
||||||
|
|
||||||
|
- Add a localization D-Bus service (gh#openSUSE/agama#533).
|
||||||
|
- Add a network D-Bus service (gh#openSUSE/agama#571).
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue May 23 11:51:26 UTC 2023 - Martin Vidner <mvidner@suse.com>
|
Tue May 23 11:51:26 UTC 2023 - Martin Vidner <mvidner@suse.com>
|
||||||
|
|
||||||
|
@ -18,25 +18,41 @@
|
|||||||
|
|
||||||
Name: agama-cli
|
Name: agama-cli
|
||||||
# This will be set by osc services, that will run after this.
|
# This will be set by osc services, that will run after this.
|
||||||
Version: 2.1+0
|
Version: 0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Agama command line interface
|
Summary: Agama command line interface
|
||||||
# If you know the license, put it's SPDX string here.
|
# If you know the license, put it's SPDX string here.
|
||||||
# Alternately, you can use cargo lock2rpmprovides to help generate this.
|
# Alternately, you can use cargo lock2rpmprovides to help generate this.
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
URL: https://github.com/yast/agama-cli
|
URL: https://github.com/opensuse/agama
|
||||||
Source0: agama.tar
|
Source0: agama.tar
|
||||||
Source1: vendor.tar.zst
|
Source1: vendor.tar.zst
|
||||||
# Generated by the cargo_vendor OBS service
|
# Generated by the cargo_vendor OBS service
|
||||||
Source2: cargo_config
|
Source2: cargo_config
|
||||||
BuildRequires: cargo-packaging
|
BuildRequires: cargo-packaging
|
||||||
BuildRequires: pkgconfig(openssl)
|
BuildRequires: pkgconfig(openssl)
|
||||||
|
# used in tests for dbus service
|
||||||
|
BuildRequires: python-langtable-data
|
||||||
|
BuildRequires: dbus-1-common
|
||||||
Requires: jsonnet
|
Requires: jsonnet
|
||||||
Requires: lshw
|
Requires: lshw
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Command line program to interact with the agama service.
|
Command line program to interact with the agama service.
|
||||||
|
|
||||||
|
%package -n agama-dbus-server
|
||||||
|
# This will be set by osc services, that will run after this.
|
||||||
|
Version: 0
|
||||||
|
Release: 0
|
||||||
|
Summary: Agama Rust D-Bus service
|
||||||
|
License: GPL-2.0-only
|
||||||
|
URL: https://github.com/opensuse/agama
|
||||||
|
Requires: dbus-1-common
|
||||||
|
Requires: python-langtable-data
|
||||||
|
|
||||||
|
%description -n agama-dbus-server
|
||||||
|
DBus service for agama project. It provides so far localization service.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -a1 -n agama
|
%autosetup -a1 -n agama
|
||||||
mkdir .cargo
|
mkdir .cargo
|
||||||
@ -50,8 +66,11 @@ cp %{SOURCE2} .cargo/config
|
|||||||
%install
|
%install
|
||||||
install -D -d -m 0755 %{buildroot}%{_bindir}
|
install -D -d -m 0755 %{buildroot}%{_bindir}
|
||||||
install -m 0755 %{_builddir}/agama/target/release/agama %{buildroot}%{_bindir}/agama
|
install -m 0755 %{_builddir}/agama/target/release/agama %{buildroot}%{_bindir}/agama
|
||||||
|
install -m 0755 %{_builddir}/agama/target/release/agama-dbus-server %{buildroot}%{_bindir}/agama-dbus-server
|
||||||
install -D -d -m 0755 %{buildroot}%{_datadir}/agama-cli
|
install -D -d -m 0755 %{buildroot}%{_datadir}/agama-cli
|
||||||
install -m 0644 %{_builddir}/agama/agama-lib/share/profile.schema.json %{buildroot}%{_datadir}/agama-cli
|
install -m 0644 %{_builddir}/agama/agama-lib/share/profile.schema.json %{buildroot}%{_datadir}/agama-cli
|
||||||
|
install --directory %{buildroot}%{_datadir}/dbus-1/agama-services
|
||||||
|
install -m 0644 --target-directory=%{buildroot}%{_datadir}/dbus-1/agama-services %{_builddir}/agama/share/*.service
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{cargo_test}
|
%{cargo_test}
|
||||||
@ -61,4 +80,8 @@ install -m 0644 %{_builddir}/agama/agama-lib/share/profile.schema.json %{buildro
|
|||||||
%dir %{_datadir}/agama-cli
|
%dir %{_datadir}/agama-cli
|
||||||
%{_datadir}/agama-cli/profile.schema.json
|
%{_datadir}/agama-cli/profile.schema.json
|
||||||
|
|
||||||
|
%files -n agama-dbus-server
|
||||||
|
%{_bindir}/agama-dbus-server
|
||||||
|
%{_datadir}/dbus-1/agama-services
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:e1f5a44bbe2842cc99447027e5e30c203e2ae86c53694d426dcd629e2bf9faa8
|
oid sha256:27f19c2a80eeac841deee10440606cdfbe07f3e3687ca5f51848332a8e88a486
|
||||||
size 166923
|
size 332299
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
name: agama
|
name: agama
|
||||||
version: 2.1+0
|
version: 2.2
|
||||||
mtime: 1684843456
|
mtime: 1687531248
|
||||||
commit: 0714759d3d29f13d8725f8e76e0bf8bc882f7ad9
|
commit: 0fde6ba3a56be0b28a0100e8492e362564fe2ec2
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
version https://git-lfs.github.com/spec/v1
|
||||||
oid sha256:d1e9bae20ffc7c6011456e8d9f228dfd8dfb33c477213a29c78ced41c4ef29d9
|
oid sha256:44e77533bb8d6574a59e85e1936a20fb47dafcbad9f06aee196d1e9b51426e44
|
||||||
size 34152745
|
size 35507723
|
||||||
|
Loading…
Reference in New Issue
Block a user