Accepting request 917985 from Base:System
OBS-URL: https://build.opensuse.org/request/show/917985 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/debianutils?expand=0&rev=3
This commit is contained in:
commit
6caf753655
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Sep 10 13:07:28 UTC 2021 - Danilo Spinella <danilo.spinella@suse.com>
|
||||||
|
|
||||||
|
- Update to 5.4:
|
||||||
|
* Added update-shells
|
||||||
|
* Dropped tempfile
|
||||||
|
* Various improvements
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Aug 18 07:52:47 UTC 2021 - Danilo Spinella <danilo.spinella@suse.com>
|
Wed Aug 18 07:52:47 UTC 2021 - Danilo Spinella <danilo.spinella@suse.com>
|
||||||
|
|
||||||
|
@ -17,23 +17,23 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: debianutils
|
Name: debianutils
|
||||||
Version: 4.11.2
|
Version: 5.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Miscellaneous utilities specific to Debian
|
Summary: Miscellaneous utilities specific to Debian
|
||||||
License: GPL-2.0-only
|
License: GPL-2.0-only
|
||||||
Group: System/Shells
|
Group: System/Shells
|
||||||
URL: https://packages.debian.org/%{name}
|
URL: https://packages.debian.org/%{name}
|
||||||
Source: http://ftp.debian.org/debian/pool/main/d/%{name}/%{name}_%{version}.tar.xz
|
Source: http://ftp.debian.org/debian/pool/main/d/%{name}/%{name}_%{version}.orig.tar.xz
|
||||||
|
|
||||||
%description
|
%description
|
||||||
* add-shell: add a shell to /etc/shells
|
* add-shell: add a shell to /etc/shells
|
||||||
* ischroot: etects if it is currently running in a chroot
|
* ischroot: etects if it is currently running in a chroot
|
||||||
* run-parts: run scripts or programs in a directory
|
* run-parts: run scripts or programs in a directory
|
||||||
* tempfile: create a temporary file in a safe manner
|
|
||||||
* remove-shell: remove a shell to /etc/shells
|
* remove-shell: remove a shell to /etc/shells
|
||||||
|
* update-shells: update the list of valid login shells
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n %{name}
|
%autosetup
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure
|
%configure
|
||||||
@ -42,27 +42,27 @@ Source: http://ftp.debian.org/debian/pool/main/d/%{name}/%{name}_%{versi
|
|||||||
%install
|
%install
|
||||||
# savelog is under SMAIL license, don't install
|
# savelog is under SMAIL license, don't install
|
||||||
install -Dt %{buildroot}%{_bindir} ischroot
|
install -Dt %{buildroot}%{_bindir} ischroot
|
||||||
install -Dt %{buildroot}%{_bindir} tempfile
|
|
||||||
install -Dt %{buildroot}%{_sbindir} add-shell
|
install -Dt %{buildroot}%{_sbindir} add-shell
|
||||||
install -Dt %{buildroot}%{_sbindir} remove-shell
|
install -Dt %{buildroot}%{_sbindir} remove-shell
|
||||||
install -Dt %{buildroot}%{_sbindir} run-parts
|
install -Dt %{buildroot}%{_sbindir} run-parts
|
||||||
|
install -Dt %{buildroot}%{_sbindir} update-shells
|
||||||
|
|
||||||
install -m 0644 -Dt %{buildroot}%{_mandir}/man1 ischroot.1
|
install -m 0644 -Dt %{buildroot}%{_mandir}/man1 ischroot.1
|
||||||
install -m 0644 -Dt %{buildroot}%{_mandir}/man8 add-shell.8
|
install -m 0644 -Dt %{buildroot}%{_mandir}/man8 add-shell.8
|
||||||
install -m 0644 -Dt %{buildroot}%{_mandir}/man8 remove-shell.8
|
install -m 0644 -Dt %{buildroot}%{_mandir}/man8 remove-shell.8
|
||||||
install -m 0644 -Dt %{buildroot}%{_mandir}/man1 tempfile.1
|
|
||||||
install -m 0644 -Dt %{buildroot}%{_mandir}/man8 run-parts.8
|
install -m 0644 -Dt %{buildroot}%{_mandir}/man8 run-parts.8
|
||||||
|
install -m 0644 -Dt %{buildroot}%{_mandir}/man8 update-shells.8
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_bindir}/ischroot
|
%{_bindir}/ischroot
|
||||||
%{_bindir}/tempfile
|
|
||||||
%{_sbindir}/add-shell
|
%{_sbindir}/add-shell
|
||||||
%{_sbindir}/remove-shell
|
%{_sbindir}/remove-shell
|
||||||
%{_sbindir}/run-parts
|
%{_sbindir}/run-parts
|
||||||
|
%{_sbindir}/update-shells
|
||||||
%{_mandir}/man1/ischroot.1%{?ext_man}
|
%{_mandir}/man1/ischroot.1%{?ext_man}
|
||||||
%{_mandir}/man8/add-shell.8%{?ext_man}
|
%{_mandir}/man8/add-shell.8%{?ext_man}
|
||||||
%{_mandir}/man8/remove-shell.8%{?ext_man}
|
%{_mandir}/man8/remove-shell.8%{?ext_man}
|
||||||
%{_mandir}/man1/tempfile.1%{?ext_man}
|
|
||||||
%{_mandir}/man8/run-parts.8%{?ext_man}
|
%{_mandir}/man8/run-parts.8%{?ext_man}
|
||||||
|
%{_mandir}/man8/update-shells.8%{?ext_man}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3b680e81709b740387335fac8f8806d71611dcf60874e1a792e862e48a1650de
|
|
||||||
size 158132
|
|
BIN
debianutils_5.4.orig.tar.xz
(Stored with Git LFS)
Normal file
BIN
debianutils_5.4.orig.tar.xz
(Stored with Git LFS)
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user