1 |
slords |
1.1 |
Summary: e-smith dynamic dns client to update dyndns.com |
2 |
|
|
%define name e-smith-dynamicdns-dyndns |
3 |
|
|
Name: %{name} |
4 |
slords |
1.2 |
%define version 1.5.0 |
5 |
|
|
%define release 1 |
6 |
slords |
1.1 |
Version: %{version} |
7 |
|
|
Release: %{release}%{?dist} |
8 |
|
|
License: GPL |
9 |
|
|
Group: Networking/Utilities |
10 |
|
|
Source: %{name}-%{version}.tar.gz |
11 |
|
|
BuildRoot: /var/tmp/%{name}-%{version}-%{release}-buildroot |
12 |
|
|
BuildRequires: e-smith-devtools |
13 |
|
|
BuildArchitectures: noarch |
14 |
|
|
Requires: e-smith-base, e-smith-lib, e-smith >= 4.1 |
15 |
|
|
AutoReqProv: no |
16 |
|
|
|
17 |
|
|
%changelog |
18 |
|
|
* Sun Apr 29 2007 Shad L. Lords <slords@mail.com> |
19 |
|
|
- Clean up spec so package can be built by koji/plague |
20 |
|
|
|
21 |
slords |
1.2 |
* Sat Feb 24 2007 Charlie Brady <charlieb@e-smith.com> 1.5.0-01 |
22 |
|
|
- Roll new development stream. |
23 |
|
|
|
24 |
slords |
1.1 |
* Thu Dec 07 2006 Shad L. Lords <slords@mail.com> |
25 |
|
|
- Update to new release naming. No functional changes. |
26 |
|
|
- Make Packager generic |
27 |
|
|
|
28 |
|
|
* Wed Nov 30 2005 Gordon Rowell <gordonr@gormand.com.au> 1.4.0-02 |
29 |
|
|
- Bump release number only |
30 |
|
|
|
31 |
|
|
* Fri Oct 11 2002 Charlie Brady <charlieb@e-smith.com> |
32 |
|
|
- [1.4.0-01] |
33 |
|
|
- Rolling stable version number to 1.4.0 |
34 |
|
|
|
35 |
|
|
* Wed Jun 5 2002 Charlie Brady <charlieb@e-smith.com> |
36 |
|
|
- [1.3.0-01] |
37 |
|
|
- Changing version to maintained stream number to 1.3.0 |
38 |
|
|
|
39 |
|
|
* Thu May 23 2002 Gordon Rowell <gordonr@e-smith.com> |
40 |
|
|
- [1.2.3-01] |
41 |
|
|
- RPM rebuild forced by cvsroot2rpm |
42 |
|
|
|
43 |
|
|
* Mon Feb 25 2002 Kirrily Robert <skud@e-smith.com> |
44 |
|
|
- [1.2.2-01] |
45 |
|
|
- Testing rpm2cvs |
46 |
|
|
|
47 |
|
|
* Mon Feb 25 2002 Kirrily Robert <skud@e-smith.com> |
48 |
|
|
- [1.2.1-01] |
49 |
|
|
- rollRPM: Rolled version number to 1.2.1-01. Includes patches up to 1.2.0-04. |
50 |
|
|
|
51 |
|
|
* Fri Aug 17 2001 gordonr |
52 |
|
|
- [1.2.0-04] |
53 |
|
|
- Autorebuild by rebuildRPM |
54 |
|
|
|
55 |
|
|
* Fri Jul 6 2001 Peter Samuel <peters@e-smith.com> |
56 |
|
|
- [1.2.0-03] |
57 |
|
|
- Changed license to GPL |
58 |
|
|
|
59 |
|
|
* Thu Feb 8 2001 Adrian Chung <adrianc@e-smith.com> |
60 |
|
|
- [1.2.0-02] |
61 |
|
|
- Rolling release number for GPG signing. |
62 |
|
|
|
63 |
|
|
* Thu Jan 25 2001 Peter Samuel <peters@e-smith.com> |
64 |
|
|
- [1.2.0-01] |
65 |
|
|
- Rolled version number to 1.2.0-01. Includes patches upto 1.1.0-01. |
66 |
|
|
|
67 |
|
|
* Tue Jan 9 2001 Peter Samuel <peters@e-smith.com> |
68 |
|
|
- [1.1.0-01] |
69 |
|
|
- Rolled version number to 1.1.0-01. Includes patches upto 0.0.1-1 |
70 |
|
|
|
71 |
|
|
* Sat Jan 6 2001 Charlie Brady <charlieb@e-smith.com> |
72 |
|
|
- initial release |
73 |
|
|
|
74 |
|
|
%description |
75 |
|
|
e-smith server dynamic DNS client module to update dyndns.com DNS data |
76 |
|
|
|
77 |
|
|
%prep |
78 |
|
|
%setup |
79 |
|
|
#%patch1 -p1 |
80 |
|
|
|
81 |
|
|
%build |
82 |
|
|
|
83 |
|
|
%install |
84 |
|
|
rm -rf $RPM_BUILD_ROOT |
85 |
|
|
(cd root ; find . -depth -print | cpio -dump $RPM_BUILD_ROOT) |
86 |
|
|
rm -f %{name}-%{version}-%{release}-filelist |
87 |
|
|
/sbin/e-smith/genfilelist $RPM_BUILD_ROOT \ |
88 |
|
|
> %{name}-%{version}-%{release}-filelist |
89 |
|
|
echo "%doc COPYING" >> %{name}-%{version}-%{release}-filelist |
90 |
|
|
|
91 |
|
|
%clean |
92 |
|
|
rm -rf $RPM_BUILD_ROOT |
93 |
|
|
|
94 |
|
|
%pre |
95 |
|
|
%preun |
96 |
|
|
%post |
97 |
|
|
%postun |
98 |
|
|
|
99 |
|
|
%files -f %{name}-%{version}-%{release}-filelist |
100 |
|
|
%defattr(-,root,root) |