Accepting request 329824 from network:utilities
1 OBS-URL: https://build.opensuse.org/request/show/329824 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/hostname?expand=0&rev=2
This commit is contained in:
commit
4c2b3fb982
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Sep 8 12:32:33 UTC 2015 - nemysis@openSUSE.org
|
||||||
|
|
||||||
|
- Update to 3.16, announce message:
|
||||||
|
|
||||||
|
* Changed buffer size to the recommended 255 character when working with
|
||||||
|
names instead of IPs. (Closes: #796922)
|
||||||
|
* Bumped Standards-Version to 3.9.6, no changes needed.
|
||||||
|
|
||||||
|
- Use %{name} instead of hostname
|
||||||
|
- Use CFLAGS="%{optflags}" to fix 'File is compiled without RPM_OPT_FLAGS'
|
||||||
|
- Add changelog to Documentation
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 11 07:31:16 UTC 2015 - dimstar@opensuse.org
|
Thu Jun 11 07:31:16 UTC 2015 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package hostname
|
# spec file for package hostname
|
||||||
#
|
#
|
||||||
# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -15,14 +15,15 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
Name: hostname
|
Name: hostname
|
||||||
Version: 3.15
|
Version: 3.16
|
||||||
Release: 0
|
Release: 0
|
||||||
License: GPL-2.0+
|
|
||||||
Summary: Utility to Set/Show the Host Name or Domain Name
|
Summary: Utility to Set/Show the Host Name or Domain Name
|
||||||
Url: https://tracker.debian.org/pkg/hostname
|
License: GPL-2.0+
|
||||||
Group: Productivity/Networking/Other
|
Group: Productivity/Networking/Other
|
||||||
Source: http://http.debian.net/debian/pool/main/h/hostname/%{name}_%{version}.tar.gz
|
Url: https://tracker.debian.org/pkg/hostname
|
||||||
|
Source: http://http.debian.net/debian/pool/main/h/%{name}/%{name}_%{version}.tar.gz
|
||||||
# net-tools requires hostname, but we know we do not rely on ourselves to build
|
# net-tools requires hostname, but we know we do not rely on ourselves to build
|
||||||
#!BuildIgnore: hostname
|
#!BuildIgnore: hostname
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -32,32 +33,34 @@ This package provides commands which can be used to display the system's DNS
|
|||||||
name, and to display or set its hostname or NIS domain name.
|
name, and to display or set its hostname or NIS domain name.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags} CFLAGS="%{optflags}"
|
||||||
|
|
||||||
%install
|
%install
|
||||||
install -D -p -m 755 hostname %{buildroot}%{_bindir}/hostname
|
install -D -p -m 755 %{name} %{buildroot}%{_bindir}/%{name}
|
||||||
install -d -m 755 %{buildroot}/bin/
|
install -d -m 755 %{buildroot}/bin/
|
||||||
ln -sf %{_bindir}/hostname %{buildroot}/bin/hostname
|
ln -sf %{_bindir}/%{name} %{buildroot}/bin/%{name}
|
||||||
install -D -p -m 644 hostname.1 %{buildroot}%{_mandir}/man1/hostname.1
|
install -D -p -m 644 %{name}.1 %{buildroot}%{_mandir}/man1/%{name}.1
|
||||||
# do not install ypdomainname and nisdomainname which are provided by yp-tools
|
# do not install ypdomainname and nisdomainname which are provided by yp-tools
|
||||||
for prog in dnsdomainname domainname; do
|
for prog in dnsdomainname domainname; do
|
||||||
ln -sf %{_bindir}/hostname %{buildroot}/bin/$prog
|
ln -sf %{_bindir}/%{name} %{buildroot}/bin/$prog
|
||||||
ln -sf %{_bindir}/hostname %{buildroot}%{_bindir}/$prog
|
ln -sf %{_bindir}/%{name} %{buildroot}%{_bindir}/$prog
|
||||||
ln -sf hostname.1 %{buildroot}%{_mandir}/man1/${prog}.1
|
ln -sf hostname.1 %{buildroot}%{_mandir}/man1/${prog}.1
|
||||||
done
|
done
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc COPYRIGHT
|
%doc COPYRIGHT debian/changelog
|
||||||
/bin/hostname
|
/bin/%{name}
|
||||||
/bin/domainname
|
/bin/domainname
|
||||||
/bin/dnsdomainname
|
/bin/dnsdomainname
|
||||||
%{_bindir}/hostname
|
%{_bindir}/%{name}
|
||||||
%{_bindir}/domainname
|
%{_bindir}/domainname
|
||||||
%{_bindir}/dnsdomainname
|
%{_bindir}/dnsdomainname
|
||||||
%{_mandir}/man1/hostname.1*
|
%{_mandir}/man1/%{name}.1%{ext_man}
|
||||||
%{_mandir}/man1/domainname.1*
|
%{_mandir}/man1/domainname.1%{ext_man}
|
||||||
%{_mandir}/man1/dnsdomainname.1*
|
%{_mandir}/man1/dnsdomainname.1%{ext_man}
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b6d10114ed14306b21745d2cac1b9adf7a2546f16b9fd719bec14bd7cec61d20
|
|
||||||
size 13039
|
|
3
hostname_3.16.tar.gz
Normal file
3
hostname_3.16.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:40c6dc0b4fb36ffefe92e9572f679c377f4486ed4010302732175e743c9e269b
|
||||||
|
size 13225
|
Loading…
Reference in New Issue
Block a user