Skip to content

Commit

Permalink
prepare 0.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Henri Wahl committed May 17, 2017
1 parent aedcf11 commit e08bcd9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
6 changes: 3 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
dhcpy6d (0.4.99-6) UNRELEASED; urgency=medium
dhcpy6d (0.5-1) unstable; urgency=medium

* New upstream release
+ Reply CONFIRM requests with NotOnLink to force clients to get new address
+ Added --prefix option to be used for dynamic prefixes
+ Allow using PostgreSQL database for volatile and config storage
+ Added category 'dns' for DNS-based IP-address retrieval
+ System integration
+ Systemd integration

-- Henri Wahl <[email protected]> Tue, 09 May 2017 15:30:00 +0200
-- Henri Wahl <[email protected]> Wed, 17 May 2017 12:30:00 +0200

dhcpy6d (0.4.3-1) unstable; urgency=medium

Expand Down
14 changes: 6 additions & 8 deletions redhat/dhcpy6d.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}

Name: dhcpy6d
Version: 0.4.99
Release: 6%{?dist}
Version: 0.5
Release: 1%{?dist}
Summary: DHCPv6 server daemon

%if 0%{?suse_version}
Expand Down Expand Up @@ -47,12 +47,7 @@ Requires(preun): coreutils, /usr/sbin/userdel, /usr/sbin/groupdel
Requires: logrotate

%description
Dhcpy6d delivers IPv6 addresses for DHCPv6 clients, which can be identified
by DUID, hostname or MAC address as in the good old IPv4 days. It allows
easy dualstack transition, addresses may be generated randomly, by range,
by arbitrary ID or MAC address. Clients can get more than one address,
leases and client configuration can be stored in databases and DNS can be
updated dynamically.
Dhcpy6d delivers IPv6 addresses for DHCPv6 clients, which can be identified by DUID, hostname or MAC address as in the good old IPv4 days. It allows easy dualstack transition, addresses may be generated randomly, by range, by DNS, by arbitrary ID or MAC address. Clients can get more than one address, leases and client configuration can be stored in databases and DNS can be updated dynamically.

%prep
%setup -q
Expand Down Expand Up @@ -129,6 +124,9 @@ fi
%config(noreplace) %attr(0644,%{dhcpy6d_uid},%{dhcpy6d_gid}) %{_localstatedir}/lib/%{name}/volatile.sqlite

%changelog
* Wed May 17 2017 Henri Wahl <[email protected]> - 0.5-1
- New upstream release

* Sat Dec 26 2015 Henri Wahl <[email protected]> - 0.4.3-1
- New upstream release

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,14 @@
scripts_custom = ''
data_files_custom.append(('/usr/sbin', ['dhcpy6d']))
data_files_custom.append(('/etc/logrotate.d', ['etc/logrotate.d/dhcpy6d']))
###data_files_custom.append(('/etc/init.d', ['redhat/init.d/dhcpy6d']))
else:
scripts_custom = ['dhcpy6d']

setup(name = 'dhcpy6d',
version = '0.4.99',
version = '0.5',
license = 'GNU GPL v2',
description = 'DHCPv6 server daemon',
long_description = 'Dhcpy6d delivers IPv6 addresses for DHCPv6 clients, which can be identified by DUID, hostname or MAC address as in the good old IPv4 days. It allows easy dualstack transition, addresses may be generated randomly, by range, by arbitrary ID or MAC address. Clients can get more than one address, leases and client configuration can be stored in databases and DNS can be updated dynamically.',
long_description = 'Dhcpy6d delivers IPv6 addresses for DHCPv6 clients, which can be identified by DUID, hostname or MAC address as in the good old IPv4 days. It allows easy dualstack transition, addresses may be generated randomly, by range, by DNS, by arbitrary ID or MAC address. Clients can get more than one address, leases and client configuration can be stored in databases and DNS can be updated dynamically.',
classifiers = CLASSIFIERS,
author = 'Henri Wahl',
author_email = '[email protected]',
Expand Down

0 comments on commit e08bcd9

Please sign in to comment.