Accepting request 732096 from Base:System
OBS-URL: https://build.opensuse.org/request/show/732096 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/busybox?expand=0&rev=52
This commit is contained in:
commit
96fccd963c
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 10 07:27:49 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
|
- Trim marketing from description.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Aug 22 15:27:18 CEST 2019 - kukuk@suse.de
|
Thu Aug 22 15:27:18 CEST 2019 - kukuk@suse.de
|
||||||
|
|
||||||
|
54
busybox.spec
54
busybox.spec
@ -19,7 +19,7 @@
|
|||||||
Name: busybox
|
Name: busybox
|
||||||
Version: 1.30.1
|
Version: 1.30.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: The Swiss Army Knife of Embedded Linux
|
Summary: Minimalist variant of UNIX utilities linked in a single executable
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: System/Base
|
Group: System/Base
|
||||||
Url: http://www.busybox.net/
|
Url: http://www.busybox.net/
|
||||||
@ -33,61 +33,40 @@ Patch: busybox.install.patch
|
|||||||
Provides: useradd_or_adduser_dep
|
Provides: useradd_or_adduser_dep
|
||||||
BuildRequires: glibc-devel-static
|
BuildRequires: glibc-devel-static
|
||||||
BuildRequires: libtirpc-devel
|
BuildRequires: libtirpc-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
BusyBox combines tiny versions of many common UNIX utilities into a
|
BusyBox combines tiny versions of many common UNIX utilities into a
|
||||||
small single executable. It provides minimalist replacements for most
|
single executable. It provides minimalist replacements for utilities
|
||||||
of the utilities usually found in fileutils, shellutils, findutils,
|
usually found in fileutils, shellutils, findutils, textutils, grep,
|
||||||
textutils, grep, gzip, tar, and more. BusyBox provides a fairly
|
gzip, tar, and more. BusyBox provides a fairly complete POSIX
|
||||||
complete POSIX environment for any small or embedded system. The
|
environment for small or embedded systems. The utilities in BusyBox
|
||||||
utilities in BusyBox generally have fewer options than their
|
generally have fewer options than their GNU cousins. The options that
|
||||||
full-featured GNU cousins. The options that are included provide the
|
are included provide the expected functionality and behave much like
|
||||||
expected functionality and behave very much like their GNU
|
their GNU counterparts.
|
||||||
counterparts.
|
|
||||||
|
|
||||||
%package static
|
%package static
|
||||||
Summary: Static linked Swiss Army Knife of Embedded Linux
|
Summary: Static linked version of Busybox, a compact UNIX utility collection
|
||||||
Group: System/Base
|
Group: System/Base
|
||||||
|
|
||||||
%description static
|
%description static
|
||||||
The static linked BusyBox combines tiny versions of many common UNIX utilities into a
|
BusyBox combines tiny versions of many common UNIX utilities into a
|
||||||
small single executable. It provides minimalist replacements for most
|
single executable.
|
||||||
of the utilities usually found in fileutils, shellutils, findutils,
|
|
||||||
textutils, grep, gzip, tar, and more. BusyBox provides a fairly
|
|
||||||
complete POSIX environment for any small or embedded system. The
|
|
||||||
utilities in BusyBox generally have fewer options than their
|
|
||||||
full-featured GNU cousins. The options that are included provide the
|
|
||||||
expected functionality and behave very much like their GNU
|
|
||||||
counterparts.
|
|
||||||
|
|
||||||
%package container
|
%package container
|
||||||
Summary: Swiss Army Knife of Embedded Linux configured for container
|
Summary: A version of Busybox configured for containers
|
||||||
Group: System/Base
|
Group: System/Base
|
||||||
Provides: useradd_or_adduser_dep
|
Provides: useradd_or_adduser_dep
|
||||||
|
|
||||||
%description container
|
%description container
|
||||||
This is a very small BusyBox version which contains only the tools which
|
This is a small BusyBox version which contains only the tools which
|
||||||
makes sense in a container.
|
makes sense in a container.
|
||||||
BusyBox combines tiny versions of many common UNIX utilities into a
|
|
||||||
small single executable. It provides minimalist replacements for most
|
|
||||||
of the utilities usually found in fileutils, shellutils, findutils,
|
|
||||||
textutils, grep, gzip, tar, and more. BusyBox provides a fairly
|
|
||||||
complete POSIX environment for any small or embedded system. The
|
|
||||||
utilities in BusyBox generally have fewer options than their
|
|
||||||
full-featured GNU cousins. The options that are included provide the
|
|
||||||
expected functionality and behave very much like their GNU
|
|
||||||
counterparts.
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch -p0
|
%patch -p0
|
||||||
cp -a %{SOURCE1} docs/
|
cp -a %{SOURCE1} docs/
|
||||||
find -name CVS | xargs rm -rf
|
find "(" -name CVS -o -name .cvsignore -o -name .svn -o -name .gitignore ")" \
|
||||||
find -name .cvsignore | xargs rm -rf
|
-exec rm -Rf {} +
|
||||||
find -name .svn | xargs rm -rf
|
|
||||||
find -name .gitignore | xargs rm -rf
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
export KCONFIG_NOTIMESTAMP=KCONFIG_NOTIMESTAMP
|
export KCONFIG_NOTIMESTAMP=KCONFIG_NOTIMESTAMP
|
||||||
@ -127,7 +106,6 @@ install -d %{buildroot}%{_mandir}/man1
|
|||||||
install -m 644 docs/BusyBox.1 %{buildroot}%{_mandir}/man1
|
install -m 644 docs/BusyBox.1 %{buildroot}%{_mandir}/man1
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc docs/mdev.txt
|
%doc docs/mdev.txt
|
||||||
%doc %{_mandir}/man1/BusyBox.1.gz
|
%doc %{_mandir}/man1/BusyBox.1.gz
|
||||||
@ -137,12 +115,10 @@ install -m 644 docs/BusyBox.1 %{buildroot}%{_mandir}/man1
|
|||||||
%{_datadir}/busybox/busybox.links
|
%{_datadir}/busybox/busybox.links
|
||||||
|
|
||||||
%files static
|
%files static
|
||||||
%defattr(-,root,root)
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{_bindir}/busybox-static
|
%{_bindir}/busybox-static
|
||||||
|
|
||||||
%files container
|
%files container
|
||||||
%defattr(-,root,root)
|
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%{_bindir}/busybox-container
|
%{_bindir}/busybox-container
|
||||||
%{_bindir}/busybox-container.install
|
%{_bindir}/busybox-container.install
|
||||||
|
Loading…
Reference in New Issue
Block a user