debootstrap/debootstrap.spec
Tomas Cech 2e1b9aaa27 Accepting request 311984 from home:sleep_walker:branches:devel:tools
- bump to 1.0.70
  * Use tr instead of (missing in d-i) xargs (Closes:
      #785693). Thanks, Julian Schauder!
  * Make sure to deduplicate package list in download_release to
      avoid issues while counting downloaded packages. The failure
      path could lead to printing some strange integer (Closes:
      #709751, #768445, #785276, #774752).  This was reported to
      mostly happen whenever --no-resolve-deps is used.
      
  * Add support for --force-check-gpg so that one can
      programmatically make sure keyring checks are used and that
      no fallback to an https mirror happens (Closes: #661501,
      #733179, #775454).  * Switch default mirror from
      ftp.us.debian.org to the new, official http redirector
      service: httpredir.debian.org
  * Make it possible to override the MAKEDEV variable (Closes: #734743).
      Thanks, Wookey!
  * Update Standards to 3.9.6 (checked)
  * Support the jessie-kfreebsd suite, by using the same script as
      jessie (a symlink to sid) (Closes: #784927).

OBS-URL: https://build.opensuse.org/request/show/311984
OBS-URL: https://build.opensuse.org/package/show/devel:tools/debootstrap?expand=0&rev=23
2015-06-14 20:13:33 +00:00

60 lines
1.8 KiB
RPMSpec

#
# spec file for package debootstrap
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2012 Frank Lichtenheld <frank@lichtenheld.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: debootstrap
Version: 1.0.70
Release: 0
Summary: Bootstrap a basic Debian system
License: MIT
Group: Development/Tools/Other
Url: https://packages.debian.org/debootstrap
Source0: http://http.debian.net/debian/pool/main/d/%{name}/%{name}_%{version}.tar.gz
Source1: devices.tar.gz
Patch0: %{name}-norootforbuild.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
%description
debootstrap is used to create a Debian base system from scratch,
without requiring the availability of dpkg or apt. It does this
by downloading .deb files from a mirror site, and carefully
unpacking them into a directory which can eventually be chrooted
into.
%prep
%setup -q
%patch0 -p1
cp -f %{SOURCE1} .
%build
# Nothing to build.
%install
%make_install
install -Dm 0644 %{name}.8 %{buildroot}%{_mandir}/man8/%{name}.8
%files
%defattr(-,root,root)
%doc README TODO debian/changelog debian/copyright
%{_sbindir}/%{name}
%{_datadir}/%{name}/
%{_mandir}/man?/%{name}.?%{?ext_man}
%changelog