Debian release 2.6.2-1

This commit is contained in:
Arnaud Quette 2011-09-30 22:37:48 +02:00
parent e75060ac30
commit e69a4460bb
6 changed files with 28 additions and 5 deletions

6
debian/changelog vendored
View file

@ -1,4 +1,4 @@
nut (2.6.2-1) UNRELEASED; urgency=low nut (2.6.2-1) unstable; urgency=low
* New upstream release (Closes: #594989) * New upstream release (Closes: #594989)
* debian/control: * debian/control:
@ -9,6 +9,10 @@ nut (2.6.2-1) UNRELEASED; urgency=low
* debian/nut-server.init: * debian/nut-server.init:
- add udev as Required-Start/Stop (Closes: #642412) - add udev as Required-Start/Stop (Closes: #642412)
- remove legacy support for /etc/default/nut (Closes: #638021) - remove legacy support for /etc/default/nut (Closes: #638021)
* debian/patches/0003-libupsclient-version.patch: added to fix the missing
libupsclient version info bump
* debian/libupsclient1-dev.links: update link name
* debian/libupsclient1.symbols: add with upscli_tryconnect
* debian/nut.TODO.Debian: update and complete the TODO list * debian/nut.TODO.Debian: update and complete the TODO list
-- Arnaud Quette <aquette@debian.org> Thu, 29 Sep 2011 18:39:16 +0200 -- Arnaud Quette <aquette@debian.org> Thu, 29 Sep 2011 18:39:16 +0200

View file

@ -1 +1 @@
/lib/libupsclient.so.1.0.0 /usr/lib/libupsclient.so /lib/libupsclient.so.1.1.0 /usr/lib/libupsclient.so

View file

@ -22,3 +22,4 @@ libupsclient.so.1 libupsclient1 #MINVER#
upscli_sslcert@Base 2.4.1 upscli_sslcert@Base 2.4.1
upscli_strerror@Base 2.4.1 upscli_strerror@Base 2.4.1
upscli_upserror@Base 2.4.1 upscli_upserror@Base 2.4.1
upscli_tryconnect@Base 2.6.2

View file

@ -0,0 +1,20 @@
--- a/clients/Makefile.am
+++ b/clients/Makefile.am
@@ -50,4 +50,4 @@
if WITH_SSL
libupsclient_la_LIBADD += $(LIBSSL_LIBS)
endif
-libupsclient_la_LDFLAGS = -version-info 1:0:0
+libupsclient_la_LDFLAGS = -version-info 2:0:1
diff -ru nut-2.6.2.orig/clients/Makefile.in nut-2.6.2/clients/Makefile.in
--- a/clients/Makefile.in
+++ b/clients/Makefile.in
@@ -384,7 +384,7 @@
# not LDADD.
libupsclient_la_SOURCES = upsclient.c upsclient.h
libupsclient_la_LIBADD = ../common/libparseconf.la $(am__append_4)
-libupsclient_la_LDFLAGS = -version-info 1:0:0
+libupsclient_la_LDFLAGS = -version-info 2:0:1
all: all-am
.SUFFIXES:

View file

@ -1,2 +1,3 @@
0001-fix_spelling_and_typo.patch 0001-fix_spelling_and_typo.patch
0002-nut-monitor-paths.patch 0002-nut-monitor-paths.patch
0003-libupsclient-version.patch

3
debian/rules vendored
View file

@ -1,8 +1,5 @@
#!/usr/bin/make -f #!/usr/bin/make -f
DEB_AUTO_UPDATE_ACLOCAL := 1.11
DEB_AUTO_UPDATE_LIBTOOL := pre
include /usr/share/cdbs/1/rules/autoreconf.mk
include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/autotools.mk include /usr/share/cdbs/1/class/autotools.mk
include /usr/share/cdbs/1/class/python-module.mk include /usr/share/cdbs/1/class/python-module.mk