Your message dated Fri, 25 Apr 2008 23:53:30 +0100
with message-id <[EMAIL PROTECTED]>
and subject line linda has been removed from Debian, closing #323229
has caused the Debian Bug report #323229,
regarding linda: should warn about non-Debian installation instructions in 
README
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 [EMAIL PROTECTED]
immediately.)


-- 
323229: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=323229
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linda
Version: 0.3.16
Severity: wishlist
Tags: patch

Many /usr/share/doc/<package>/README files contain installation
instructions that are not appropriate for Debian, i.e.
./configure && make && make install.  The attached test warns
about "./configure" in the README{,.gz} file.
import gzip
import re
from linda import libchecks, checks

class ReadmeCheck(libchecks.LindaChecker):
    'Checks the upstream README file'
    def check_binary_2(self):
        self.parse_readme()

    def parse_readme(self):
        k = None
        readme = os.path.join(self.information['dir'],
            'unpacked/usr/share/doc', self.pkg_name, 'README')
        readmegz = os.path.join(self.information['dir'],
            'unpacked/usr/share/doc', self.pkg_name, 'README.gz')
        if os.path.exists(readme):
            f = open(readme)
        elif os.path.exists(readmegz):
            f = gzip.open(readmegz)
        k = f.read()
        f.close()
        if k:
            configure = re.compile(r'\./configure')
            if not self.pkg_name.endswith('-dev') \
                and re.search(configure, k):
                self.signal_error('readme-contains-make-instructions')
            del k

checks.register(ReadmeCheck)
Tag: readme-contains-make-instructions
Type: Warning

--- End Message ---
--- Begin Message ---
Version: 0.3.26+rm

The linda package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.

For more information about this package's removal, read
http://bugs.debian.org/469039 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.

--
Marco Rodrigues
http://Marco.Tondela.org


--- End Message ---

Reply via email to