• Bug#249274: NMU patch (1/2)

    From Adeodato =?iso-8859-1?Q?Sim=F3?=@1:229/2 to All on Tue Aug 17 01:10:12 2004
    From: [email protected]

    attached a NMU patch for this bug, in case somebody wants to upload
    it.

    --
    Adeodato Sim�
    EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621

    Every program has at least one bug and can be shortened by at least one instruction -- from which, by induction, one can deduce that every
    program can be reduced to one instruction which doesn't work.

    diff -u -r debpartial-0+20030508/debian/changelog debpartial-0+20030508.1/debian/changelog
    --- debpartial-0+20030508/debian/changelog 2003-05-08 12:02:09.000000000 +0200
    +++ debpartial-0+20030508.1/debian/changelog 2004-08-17 00:44:38.000000000 +0200
    @@ -1,3 +1,12 @@
    +debpartial (0+20030508.1) unstable; urgency=low
    +
    + * NMU.
    + * Make it run with ruby1.8 (Debian's default as of today):
    + + debpartial: fix Zlib::GzipWriter.open() usage. (Closes: #249274)
    + + debpartial, debcopy: remove spaces before argument parentheses.
    +
    + -- Adeodato Sim� <[email protected]> Tue, 17 Aug 2004 00:41:20 +0200
    +
    debpartial (0+20030508) unstable; urgency=low

    * Added --dirprefix and --dirsrcprefix options.
    diff -u -r debpartial-0+20030508/debcopy debpartial-0+20030508.1/debcopy
    --- debpartial-0+20030508/debcopy 2002-01-18 07:43:50.000000000 +0100
    +++ debpartial-0+20030508.1/debcopy 2004-08-17 00:38:05.000000000 +0200
    @@ -41,7 +41,7 @@
    end

    def each (file, &block)
    - fin = GzipReader.open(file)
    + fin = Zlib::GzipReader.open(file)
    fin.each do |line|
    yield line
    end
    @@ -