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

Bug#862453: marked as done (jessie-pu: package fwsnort/1.6.5-2~deb8u1)



Your message dated Fri, 30 Jun 2017 18:45:53 +0300
with message-id <20170630154553.saqmw5ikukihk5d6@localhost>
and subject line Closing unwanted pu requests
has caused the Debian Bug report #862453,
regarding jessie-pu: package fwsnort/1.6.5-2~deb8u1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
862453: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=862453
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
Tags: jessie
User: release.debian.org@packages.debian.org
Usertags: pu

 changelog                             |   18 ++++++++++++++++++
 control                               |    4 ++--
 gbp.conf                              |    4 ++++
 patches/fix-dport-bracket-usage.patch |   27 +++++++++++++++++++++++++++
 patches/series                        |    1 +
 5 files changed, 52 insertions(+), 2 deletions(-)

diff -Nru fwsnort-1.6.5/debian/changelog fwsnort-1.6.5/debian/changelog
--- fwsnort-1.6.5/debian/changelog	2014-08-30 20:11:55.000000000 +0300
+++ fwsnort-1.6.5/debian/changelog	2017-05-12 23:18:55.000000000 +0300
@@ -1,3 +1,21 @@
+fwsnort (1.6.5-2~deb8u1) jessie; urgency=medium
+
+  * QA upload.
+  * Rebuild for jessie.
+
+ -- Adrian Bunk <bunk@debian.org>  Fri, 12 May 2017 23:18:30 +0300
+
+fwsnort (1.6.5-2) unstable; urgency=medium
+
+  * Orphan the package. (See #831274.)
+    + Set Maintainer to Debian QA Group.
+  * Add a debian/gbp.conf and "-b debian" to Vcs-Git to reflect the git
+    repository layout.
+  * Add patch to also remove square brackets from single port definitions.
+    (Closes: #860164)
+
+ -- Axel Beckert <abe@debian.org>  Sat, 06 May 2017 16:17:38 +0200
+
 fwsnort (1.6.5-1) unstable; urgency=low
 
   * Imported Upstream version 1.6.5
diff -Nru fwsnort-1.6.5/debian/control fwsnort-1.6.5/debian/control
--- fwsnort-1.6.5/debian/control	2014-08-30 20:11:55.000000000 +0300
+++ fwsnort-1.6.5/debian/control	2017-05-06 13:31:14.000000000 +0300
@@ -3,9 +3,9 @@
 Priority: optional
 Build-Depends: debhelper (>= 8)
 Build-Depends-Indep: po-debconf
-Maintainer: Franck Joncourt <franck@debian.org>
+Maintainer: Debian QA Group <packages@qa.debian.org>
 Standards-Version: 3.9.5
-Vcs-git: git://anonscm.debian.org/collab-maint/fwsnort.git
+Vcs-Git: git://anonscm.debian.org/collab-maint/fwsnort.git -b debian
 Vcs-Browser: https://anonscm.debian.org/gitweb/?p=collab-maint/fwsnort.git;a=summary
 Homepage: http://www.cipherdyne.org/fwsnort/
 
diff -Nru fwsnort-1.6.5/debian/gbp.conf fwsnort-1.6.5/debian/gbp.conf
--- fwsnort-1.6.5/debian/gbp.conf	1970-01-01 02:00:00.000000000 +0200
+++ fwsnort-1.6.5/debian/gbp.conf	2017-05-06 13:18:38.000000000 +0300
@@ -0,0 +1,4 @@
+# Configuration file for git-buildpackage and friends
+
+[DEFAULT]
+debian-branch = debian
diff -Nru fwsnort-1.6.5/debian/patches/fix-dport-bracket-usage.patch fwsnort-1.6.5/debian/patches/fix-dport-bracket-usage.patch
--- fwsnort-1.6.5/debian/patches/fix-dport-bracket-usage.patch	1970-01-01 02:00:00.000000000 +0200
+++ fwsnort-1.6.5/debian/patches/fix-dport-bracket-usage.patch	2017-05-06 14:22:03.000000000 +0300
@@ -0,0 +1,27 @@
+Description: Also remove square brackets from single port definitions
+Bug-Debian: https://bugs.debian.org/860164
+
+--- a/fwsnort
++++ b/fwsnort
+@@ -1137,10 +1137,10 @@
+         }
+ 
+         for my $var (qw(sport dport)) {
++            $hsh{$var} =~ s/\[//;
++            $hsh{$var} =~ s/\]//;
+             next unless $hsh{$var} =~ /,/;
+             if ($ipt_have_multiport_match) {
+-                $hsh{$var} =~ s/\[//;
+-                $hsh{$var} =~ s/\]//;
+                 my $ctr = 1;
+                 my @ports = split /\s*,\s*/, $hsh{$var};
+                 my $ports_str = '';
+@@ -1162,8 +1162,6 @@
+                     "$hsh{$var} until the $ipt_str multiport match is supported " .
+                     "at line: $line_num.");
+                 $hsh{$var} =~ s/,.*//;
+-                $hsh{$var} =~ s/\[//;
+-                $hsh{$var} =~ s/\]//;
+             }
+         }
+ 
diff -Nru fwsnort-1.6.5/debian/patches/series fwsnort-1.6.5/debian/patches/series
--- fwsnort-1.6.5/debian/patches/series	1970-01-01 02:00:00.000000000 +0200
+++ fwsnort-1.6.5/debian/patches/series	2017-05-06 14:22:03.000000000 +0300
@@ -0,0 +1 @@
+fix-dport-bracket-usage.patch

--- End Message ---
--- Begin Message ---
The release team has made it clear that pu requests are not welcome when 
they are submitted by me.

cu
Adrian

-- 

       "Is there not promise of rain?" Ling Tan asked suddenly out
        of the darkness. There had been need of rain for many days.
       "Only a promise," Lao Er said.
                                       Pearl S. Buck - Dragon Seed

--- End Message ---

Reply to: