[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#770355: pre-approval: apt-dater/0.9.0-8



Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Hello,

as I have asked some days ago I have to upload a new apt-dater release
directly to jessie to avoid later problems in the archive.
I have finished my work and the excepted changelog, diff etc would be:

changelog:
apt-dater (0.9.0-8) testing; urgency=low

  * Drop binary package apt-dater-host. It is superseded by the new
    src:apt-dater-host package.
    - Drop obsolete patch 04-wheezy-kernel.
    - Drop debconf templates.

 -- Patrick Matthäi <pmatthaei@debian.org>  Thu, 13 Nov 2014 23:35:09 +0100

diffstat:
 diff -Naur tags/0.9.0-7/ branches/jessie/ --exclude=.svn|diffstat
 apt-dater-host.config         |   28 -------------------
 apt-dater-host.install        |    1 
 apt-dater-host.manpages       |    1 
 apt-dater-host.postinst       |   40 ----------------------------
 apt-dater-host.postrm         |    7 ----
 apt-dater-host.templates      |    9 ------
 changelog                     |    9 ++++++
 control                       |   20 --------------
 patches/04-wheezy-kernel.diff |   18 ------------
 patches/series                |    1 
 po/POTFILES.in                |    1 
 po/cs.po                      |   36 -------------------------
 po/da.po                      |   37 --------------------------
 po/de.po                      |   39 ---------------------------
 po/es.po                      |   59 ------------------------------------------
 po/fr.po                      |   40 ----------------------------
 po/it.po                      |   39 ---------------------------
 po/ja.po                      |   36 -------------------------
 po/nl.po                      |   38 ---------------------------
 po/pt.po                      |   37 --------------------------
 po/pt_BR.po                   |   38 ---------------------------
 po/ru.po                      |   41 -----------------------------
 po/sv.po                      |   40 ----------------------------
 po/templates.pot              |   33 -----------------------
 po/vi.po                      |   38 ---------------------------
 rules                         |    5 ---
 sudo/apt-dater-host           |   11 -------
 27 files changed, 9 insertions(+), 693 deletions(-)

full diff (OK I have excluded po/, since it is just removed and I do not want to spam):


diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/apt-dater-host.config branches/jessie/debian/apt-dater-host.config
--- tags/0.9.0-7/debian/apt-dater-host.config   2014-02-13 19:43:24.116063923 +0100
+++ branches/jessie/debian/apt-dater-host.config        1970-01-01 01:00:00.000000000 +0100
@@ -1,28 +0,0 @@
-#!/bin/sh
-
-set -e
-
-. /usr/share/debconf/confmodule
-
-# Default value is true (enabled).
-ASSUME_YES="true"
-
-if [ -f "/etc/apt-dater-host.conf" ] ; then
-       # Get the current setted value.
-       CURRENT_VALUE=$(grep '^$ASSUMEYES' "/etc/apt-dater-host.conf"|cut -d'=' -f2-|sed 's/;//g'|tr -d "\n")
-
-       if [ "$CURRENT_VALUE" = "0" ]; then
-               # Overwrite default value, if it is not enabled.
-               ASSUME_YES="false"
-       fi
-fi
-
-db_set apt-dater-host/assume_yes $ASSUME_YES
-
-db_input medium apt-dater-host/assume_yes || true
-
-db_go
-
-#DEBHELPER#
-
-exit 0
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/apt-dater-host.install branches/jessie/debian/apt-dater-host.install
--- tags/0.9.0-7/debian/apt-dater-host.install  2014-02-13 19:43:24.116063923 +0100
+++ branches/jessie/debian/apt-dater-host.install       1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-debian/sudo/apt-dater-host etc/sudoers.d/
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/apt-dater-host.manpages branches/jessie/debian/apt-dater-host.manpages
--- tags/0.9.0-7/debian/apt-dater-host.manpages 2014-02-13 19:43:24.080064509 +0100
+++ branches/jessie/debian/apt-dater-host.manpages      1970-01-01 01:00:00.000000000 +0100
@@ -1 +0,0 @@
-man/apt-dater-host.1
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/apt-dater-host.postinst branches/jessie/debian/apt-dater-host.postinst
--- tags/0.9.0-7/debian/apt-dater-host.postinst 2014-02-13 19:43:24.348060150 +0100
+++ branches/jessie/debian/apt-dater-host.postinst      1970-01-01 01:00:00.000000000 +0100
@@ -1,40 +0,0 @@
-#!/bin/sh
-
-set -e
-
-. /usr/share/debconf/confmodule
-
-
-do_hostconfig() {
-       db_get apt-dater-host/assume_yes
-
-       case "${RET}" in
-               true)
-                       ASSUME_YES="1"
-                       ;;
-               false)
-                       ASSUME_YES="0"
-                       ;;
-       esac
-
-       sed "s/^\$ASSUMEYES=.*/\$ASSUMEYES=${ASSUME_YES};/" -i "/etc/apt-dater-host.conf"
-}
-
-
-case "$1" in
-       configure)
-               do_hostconfig;
-       ;;
-
-       abort-upgrade|abort-remove|abort-deconfigure)
-       ;;
-
-       *)
-               echo "postinst called with unknown argument \`$1'" >&2
-               exit 1
-       ;;
-esac
-
-#DEBHELPER#
-
-exit 0
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/apt-dater-host.postrm branches/jessie/debian/apt-dater-host.postrm
--- tags/0.9.0-7/debian/apt-dater-host.postrm   2014-02-13 19:43:24.348060150 +0100
+++ branches/jessie/debian/apt-dater-host.postrm        1970-01-01 01:00:00.000000000 +0100
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-set -e
-
-#DEBHELPER#
-
-exit 0
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/apt-dater-host.templates branches/jessie/debian/apt-dater-host.templates
--- tags/0.9.0-7/debian/apt-dater-host.templates        2014-02-13 19:43:24.112063988 +0100
+++ branches/jessie/debian/apt-dater-host.templates     1970-01-01 01:00:00.000000000 +0100
@@ -1,9 +0,0 @@
-Template: apt-dater-host/assume_yes
-Type: boolean
-Default: true
-_Description: Enable automatic upgrades?
- If you disable this option, you have to acknowledge every upgrade
- process for all hosts. The pro of it would be, that you will be
- aware of every action apt wants to do. The con is, that you have to
- attach every host on multiple upgrades and acknowledge every single
- host.
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/changelog branches/jessie/debian/changelog
--- tags/0.9.0-7/debian/changelog       2014-02-13 19:43:24.080064509 +0100
+++ branches/jessie/debian/changelog    2014-11-20 18:27:24.419472993 +0100
@@ -1,3 +1,12 @@
+apt-dater (0.9.0-8) testing; urgency=low
+
+  * Drop binary package apt-dater-host. It is superseded by the new
+    src:apt-dater-host package.
+    - Drop obsolete patch 04-wheezy-kernel.
+    - Drop debconf templates.
+
+ -- Patrick Matthäi <pmatthaei@debian.org>  Thu, 13 Nov 2014 23:35:09 +0100
+
 apt-dater (0.9.0-7) unstable; urgency=low
 
   * Replace my old e-mail address in debian/copyright.
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/control branches/jessie/debian/control
--- tags/0.9.0-7/debian/control 2014-02-13 19:43:24.080064509 +0100
+++ branches/jessie/debian/control      2014-11-13 23:38:37.757079954 +0100
@@ -8,7 +8,6 @@
  libncursesw5-dev,
  tcl8.5-dev,
  libxml2-dev,
- po-debconf,
  autotools-dev,
  hardening-wrapper
 Homepage: http://www.ibh.de/apt-dater
@@ -42,22 +41,3 @@
  systems.
  .
  This package contains the debugging symbols for the apt-dater package.
-
-Package: apt-dater-host
-Architecture: all
-Depends: ${perl:Depends},
- ${misc:Depends},
- openssh-server,
- lsb-release,
- libimvirt-perl,
- libapt-pkg-perl
-Recommends: imvirt,
- sudo
-Description: host helper application for apt-dater
- apt-dater provides an easy to use ncurses frontend for managing package
- updates on a large number of remote hosts using SSH.
- It supports Debian-based managed hosts as well as OpenSUSE and CentOS based
- systems.
- .
- This package provides the helper application for apt-dater.
- It has to be installed on every apt-dater managed host.
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/patches/04-wheezy-kernel.diff branches/jessie/debian/patches/04-wheezy-kernel.diff
--- tags/0.9.0-7/debian/patches/04-wheezy-kernel.diff   2014-02-13 19:43:24.096064249 +0100
+++ branches/jessie/debian/patches/04-wheezy-kernel.diff        1970-01-01 01:00:00.000000000 +0100
@@ -1,18 +0,0 @@
-# Upstream patch to fix detection of the Wheezy 3.2 Linux Kernel. It was
-# missdetected as selfbuilt variant.
-# Closes: #697330
-
-diff -Naur apt-dater-0.9.0.orig/clients/debian/apt-dater-host apt-dater-0.9.0/clients/debian/apt-dater-host
---- apt-dater-0.9.0.orig/clients/debian/apt-dater-host 2012-05-29 14:18:43.000000000 +0200
-+++ apt-dater-0.9.0/clients/debian/apt-dater-host      2013-01-08 19:32:09.520617548 +0100
-@@ -337,7 +337,9 @@
-       return;
-     }
- 
--    unless(`cat /proc/version` =~ /^\S+ \S+ \S+ \(Debian ([^\)]+)\)/) {
-+      my $vstr = `cat $verfile`;
-+      unless($vstr =~ /^\S+ \S+ \S+ \(Debian ([^\)]+)\)/ ||
-+      $vstr =~ /^\S+ \S+ \S+ \(debian-kernel\@lists\.debian\.org\) .+ Debian (\S+)$/) {
-       print "$infostr 2 $version\n";
-       return;
-     }
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/patches/series branches/jessie/debian/patches/series
--- tags/0.9.0-7/debian/patches/series  2014-02-13 19:43:24.104064118 +0100
+++ branches/jessie/debian/patches/series       2014-11-13 23:36:49.843142014 +0100
@@ -1,4 +1,3 @@
 01-ld-flags-non-linux.diff
 02-refresh-ssh-flags.diff
 03-patch-hostname-plus-sign.diff
-04-wheezy-kernel.diff
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/rules branches/jessie/debian/rules
--- tags/0.9.0-7/debian/rules   2014-02-13 19:43:24.112063988 +0100
+++ branches/jessie/debian/rules        2014-11-13 23:39:16.928332202 +0100
@@ -24,11 +24,6 @@
        (cd src && $(MAKE) DESTDIR=$(CURDIR)/debian/apt-dater install)
        (cd lib && $(MAKE) DESTDIR=$(CURDIR)/debian/apt-dater install)
        (cd po && $(MAKE) DESTDIR=$(CURDIR)/debian/apt-dater install)
-       (cd clients/debian && $(MAKE) DESTDIR=$(CURDIR)/debian/apt-dater-host install)
-
-override_dh_auto_clean:
-       dh_clean
-       debconf-updatepo
 
 override_dh_strip:
        dh_strip --dbg-package=apt-dater-dbg
diff -Naur '--exclude=.svn' '--exclude=po' tags/0.9.0-7/debian/sudo/apt-dater-host branches/jessie/debian/sudo/apt-dater-host
--- tags/0.9.0-7/debian/sudo/apt-dater-host     2014-02-13 19:43:24.120063859 +0100
+++ branches/jessie/debian/sudo/apt-dater-host  1970-01-01 01:00:00.000000000 +0100
@@ -1,11 +0,0 @@
-# apt-dater-host sudoers.d config file
-# ------------------------------------
-#
-# Please consider a look at /etc/sudoers.d/README howto enable this file.
-#
-
-# Keep apt-dater's MAINTAINER environment variable
-#Defaults       env_keep += MAINTAINER
-
-# Allow members of group apt-dater to execute the apt-get command
-#%adm           ALL=NOPASSWD: /usr/bin/apt-get



-- System Information:
Debian Release: 7.7
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


Reply to: