/[soft]/mga-gnome/trunk/mga-gnome
ViewVC logotype

Diff of /mga-gnome/trunk/mga-gnome

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2936 by ovitters, Sun Feb 12 12:23:46 2012 UTC revision 5288 by ovitters, Sat Aug 4 18:32:33 2012 UTC
# Line 1  Line 1 
1  #!/usr/bin/python  #!/usr/bin/python -u
2    
3    # A lot of the code comes from ftpadmin, see
4    #   http://git.gnome.org/browse/sysadmin-bin/tree/ftpadmin
5    # Written by Olav Vitters
6    
7    # basic modules:
8  import os  import os
9  import os.path  import os.path
10  import sys  import sys
11  import re  import re
12  import subprocess  import subprocess
13  import urllib2  
14  import urlparse  # command line parsing, error handling:
15  import argparse  import argparse
16  import errno  import errno
17    
18    # overwriting files by moving them (safer):
19    import tempfile
20    import shutil
21    
22    # version comparison:
23    import rpm
24    
25    # opening tarballs:
26    import tarfile
27    import gzip
28    import bz2
29    import lzma # pyliblzma
30    
31    # getting links from HTML document:
32  from sgmllib import SGMLParser  from sgmllib import SGMLParser
33    import urllib2
34    import urlparse
35    
36    # for checking hashes
37    import hashlib
38    
39    # for parsing ftp-release-list emails
40    import email
41    from email.mime.text import MIMEText
42    
43    # to be able to sleep for a while
44    import time
45    
46    # version freeze
47    import datetime
48    
49    # packages --sort
50    import itertools
51    
52    # check-latest
53    import requests
54    
55    SLEEP_INITIAL=180
56    SLEEP_REPEAT=30
57    SLEEP_TIMES=20
58    
59    re_majmin = re.compile(r'^([0-9]+\.[0-9]+).*')
60    re_version = re.compile(r'([-.]|\d+|[^-.\d]+)')
61    
62    def version_cmp(a, b):
63        """Compares two versions
64    
65        Returns
66          -1 if a < b
67          0  if a == b
68          1  if a > b
69        """
70    
71        return rpm.labelCompare(('1', a, '1'), ('1', b, '1'))
72    
73    def get_latest_version(versions, max_version=None):
74        """Gets the latest version number
75    
76        if max_version is specified, gets the latest version number before
77        max_version"""
78        latest = None
79        for version in versions:
80            if ( latest is None or version_cmp(version, latest) > 0 ) \
81               and ( max_version is None or version_cmp(version, max_version) < 0 ):
82                latest = version
83        return latest
84    
85    def get_safe_max_version(version):
86        if not re_majmin.match(version):
87            return None
88    
89        majmin_nr = map(long, re_majmin.sub(r'\1', version).split('.'))
90    
91        if majmin_nr[1] % 2 == 0:
92            return "%d.%d" % (majmin_nr[0], majmin_nr[1] + 1)
93        else:
94            return "%d.%d" % (majmin_nr[0], majmin_nr[1] + 2)
95    
96    def judge_version_increase(version_old, version_new):
97            """Judge quality of version increase:
98    
99            Returns a tuple containing judgement and message
100    
101            Judgement:
102            Less than 0: Error
103            0 to 4: Better not
104            5+: Ok"""
105            versions = (version_old, version_new)
106    
107            # First do a basic version comparison to ensure version_new is actually newer
108            compare = version_cmp(version_new, version_old)
109    
110            if compare == 0:
111                # 1.0.0 -> 1.0.1
112                return (-2, "Already at version %s!" % (version_old))
113    
114            if compare != 1:
115                # 1.0.1 -> 1.0.0
116                return (-3, "Version %s is older than current version %s!" % (version_new, version_old))
117    
118            # Version is newer, but we don't want to see if it follows the GNOME versioning scheme
119            majmins = [re_majmin.sub(r'\1', ver) for ver in versions if re_majmin.match(ver) is not None]
120    
121            if len(majmins) == 1:
122                return (-1, "Version number scheme changes: %s" % (", ".join(versions)))
123    
124            if len(majmins) == 0:
125                return (0, "Unsupported version numbers: %s" % (", ".join(versions)))
126    
127            # Follows GNOME versioning scheme
128            # Meaning: x.y.z
129            #          x = major
130            #          y = minor  : even if stable
131            #          z = micro
132    
133  MEDIA="Core Release Source"          # Major+minor the same? Then go ahead and upgrade!
134  URL="http://download.gnome.org/sources/"          if majmins[0] == majmins[1]:
135  PKGROOT='~/pkgs'              # Majmin of both versions are the same, looks good!
136                # 1.1.x -> 1.1.x or 1.0.x -> 1.0.x
137                return (10, None)
138    
139            # More detailed analysis needed, so figure out the numbers
140            majmin_nrs = [map(long, ver.split('.')) for ver in majmins]
141    
142            # Check/ensure major version number is the same
143            if majmin_nrs[0][0] != majmin_nrs[1][0]:
144                # 1.0.x -> 2.0.x
145                return (1, "Major version number increase")
146    
147            # Minor indicates stable/unstable
148            devstate = (majmin_nrs[0][1] % 2 == 0, majmin_nrs[1][1] % 2 == 0)
149    
150            # Upgrading to unstable is weird
151            if not devstate[1]:
152                if devstate[0]:
153                    # 1.2.x -> 1.3.x
154                    return (1, "Stable to unstable increase")
155    
156                # 1.3.x -> 1.5.x
157                return (4, "Unstable to unstable version increase")
158    
159            # Unstable => stable is always ok
160            if not devstate[0]:
161                # 1.1.x -> 1.2.x
162                return (5, "Unstable to stable")
163    
164            # Can only be increase of minors from one stable to the next
165            # 1.0.x -> 1.2.x
166            return (6, "Stable version increase")
167    
168  def line_input (file):  def line_input (file):
169      for line in file:      for line in file:
# Line 22  def line_input (file): Line 172  def line_input (file):
172          else:          else:
173              yield line              yield line
174    
175    def call_editor(filename):
176        """Return a sequence of possible editor binaries for the current platform"""
177    
178        editors = []
179    
180        for varname in 'VISUAL', 'EDITOR':
181            if varname in os.environ:
182                editors.append(os.environ[varname])
183    
184        editors.extend(('/usr/bin/editor', 'vi', 'pico', 'nano', 'joe'))
185    
186        for editor in editors:
187            try:
188                ret = subprocess.call([editor, filename])
189            except OSError, e:
190                if e.errno == 2:
191                    continue
192                raise
193    
194            if ret == 127:
195                continue
196    
197            return True
198    
199  class urllister(SGMLParser):  class urllister(SGMLParser):
200      def reset(self):      def reset(self):
201          SGMLParser.reset(self)          SGMLParser.reset(self)
# Line 32  class urllister(SGMLParser): Line 206  class urllister(SGMLParser):
206          if href:          if href:
207              self.urls.extend(href)              self.urls.extend(href)
208    
209    class XzTarFile(tarfile.TarFile):
210    
211        OPEN_METH = tarfile.TarFile.OPEN_METH.copy()
212        OPEN_METH["xz"] = "xzopen"
213    
214        @classmethod
215        def xzopen(cls, name, mode="r", fileobj=None, **kwargs):
216            """Open gzip compressed tar archive name for reading or writing.
217               Appending is not allowed.
218            """
219            if len(mode) > 1 or mode not in "rw":
220                raise ValueError("mode must be 'r' or 'w'")
221    
222            if fileobj is not None:
223                fileobj = _LMZAProxy(fileobj, mode)
224            else:
225                fileobj = lzma.LZMAFile(name, mode)
226    
227            try:
228                # lzma doesn't immediately return an error
229                # try and read a bit of data to determine if it is a valid xz file
230                fileobj.read(_LZMAProxy.blocksize)
231                fileobj.seek(0)
232                t = cls.taropen(name, mode, fileobj, **kwargs)
233            except IOError:
234                raise tarfile.ReadError("not a xz file")
235            except lzma.error:
236                raise tarfile.ReadError("not a xz file")
237            t._extfileobj = False
238            return t
239    
240    if not hasattr(tarfile.TarFile, 'xzopen'):
241        tarfile.open = XzTarFile.open
242    
243    def is_valid_hash(path, algo, hexdigest):
244        if algo not in hashlib.algorithms:
245            raise ValueError("Unknown hash algorithm: %s" % algo)
246    
247        local_hash = getattr(hashlib, algo)()
248    
249        with open(path, 'rb') as fp:
250            data = fp.read(32768)
251            while data:
252                local_hash.update(data)
253                data = fp.read(32768)
254    
255        return local_hash.hexdigest() == hexdigest
256    
257    class SpecFile(object):
258        re_update_version = re.compile(r'^(?P<pre>Version:\s*)(?P<version>.+)(?P<post>\s*)$', re.MULTILINE + re.IGNORECASE)
259        re_update_release = re.compile(r'^(?P<pre>Release:\s*)(?P<release>%mkrel \d+)(?P<post>\s*)$', re.MULTILINE + re.IGNORECASE)
260    
261        def __init__(self, path):
262            self.path = path
263            self.cwd = os.path.dirname(path)
264    
265        @property
266        def version(self):
267            return subprocess.check_output(["rpm", "--specfile", self.path, "--queryformat", "%{VERSION}\n"]).splitlines()[0]
268        @property
269        def sources(self):
270            ts = rpm.ts()
271            spec = ts.parseSpec(self.path)
272            srclist = spec.sources if isinstance(spec.sources, (list, tuple)) \
273                            else spec.sources()
274            return dict((os.path.basename(name), name) for name, no, flags in srclist)
275    
276        def update(self, version, force=False):
277            """Update specfile (increase version)"""
278            cur_version = self.version
279    
280            (judgement, msg) = judge_version_increase(cur_version, version)
281    
282            if judgement < 0:
283                print >>sys.stderr, "ERROR: %s!" % (msg)
284                return False
285    
286            if judgement < 5:
287                print "WARNING: %s!" % (msg)
288                if not force: return False
289    
290            # XXX - os.path.join is hackish
291            svn_diff_output = subprocess.check_output(["svn", "diff", os.path.join(self.path, '..')])
292            if svn_diff_output != '':
293                print svn_diff_output
294                print >>sys.stderr, "ERROR: Package has uncommitted changes!"
295                if not force:
296                    return False
297    
298                # Forcing package submission: revert changes
299                try:
300                    print >>sys.stderr, "WARNING: Force used; reverting svn changes"
301                    subprocess.check_call(["svn", "revert", "-R", os.path.join(self.path, '..')])
302                except subprocess.CalledProcessError:
303                    return False
304    
305            with open(self.path, "rw") as f:
306                data = f.read()
307    
308                if data.count("%mkrel") != 1:
309                    print >>sys.stderr, "ERROR: Multiple %mkrel found; don't know what to do!"
310                    return False
311    
312                data, nr = self.re_update_version.subn(r'\g<pre>%s\g<post>' % version, data, 1)
313                if nr != 1:
314                    print >>sys.stderr, "ERROR: Could not increase version!"
315                    return False
316    
317                data, nr = self.re_update_release.subn(r'\g<pre>%mkrel 1\g<post>', data, 1)
318                if nr != 1:
319                    print >>sys.stderr, "ERROR: Could not reset release!"
320                    return False
321    
322                # Overwrite file with new version number
323                write_file(self.path, data)
324    
325    
326            # Verify that RPM also agrees that version number has changed
327            if self.version != version:
328                print "ERROR: Increased version to %s, but RPM doesn't agree!?!" % version
329                return False
330    
331    
332            # Try to download the new tarball various times and wait between attempts
333            tries = 0
334            while tries < SLEEP_TIMES:
335                tries += 1
336                if tries > 1: time.sleep(SLEEP_REPEAT)
337                try:
338                    # Download new tarball
339                    subprocess.check_call(['mgarepo', 'sync', '-d'], cwd=self.cwd)
340                    # success, so exit loop
341                    break
342                except subprocess.CalledProcessError, e:
343                    # mgarepo sync returns 1 if the tarball cannot be downloaded
344                    if e.returncode != 1:
345                        return False
346            else:
347                return False
348    
349    
350            try:
351                # Check patches still apply
352                subprocess.check_call(['bm', '-p', '--nodeps'], cwd=self.cwd)
353            except subprocess.CalledProcessError:
354                logfile = os.path.join(os.path.dirname(self.path), 'log.%s' % os.path.splitext(os.path.basename(self.path))[0])
355                if os.path.exists(logfile):
356                    subprocess.call(['tail', '-n', '15', logfile])
357                return False
358    
359            return True
360    
361  class Patch(object):  class Patch(object):
362      """Do things with patches"""      """Do things with patches"""
363    
# Line 47  class Patch(object): Line 373  class Patch(object):
373          return self.path if self.show_path else os.path.basename(self.path)          return self.path if self.show_path else os.path.basename(self.path)
374    
375      def add_dep3(self):      def add_dep3(self):
376          pass          """Add DEP-3 headers to a patch file"""
377            if self.dep3['valid']:
378                return False
379    
380            new_headers = (
381                ('Author', self.svn_author),
382                ('Subject', ''),
383                ('Applied-Upstream', ''),
384                ('Forwarded', ''),
385                ('Bug', ''),
386            )
387    
388            with tempfile.NamedTemporaryFile(dir=os.path.dirname(self.path), delete=False) as fdst:
389                with open(self.path, "r") as fsrc:
390                    # Start with any existing DEP3 headers
391                    for i in range(self.dep3['last_nr']):
392                        fdst.write(fsrc.read())
393    
394                    # After that add the DEP3 headers
395                    add_line = False
396                    for header, data in new_headers:
397                        if header in self.dep3['headers']:
398                            continue
399    
400                        # XXX - wrap this at 80 chars
401                        add_line = True
402                        print >>fdst, "%s: %s" % (header, "" if data is None else data)
403    
404                    if add_line: print >>fdst, ""
405                    # Now copy any other data and the patch
406                    shutil.copyfileobj(fsrc, fdst)
407    
408                fdst.flush()
409                os.rename(fdst.name, self.path)
410    
411            call_editor(self.path)
412    
413      #Author: fwang      #Author: fwang
414      #Subject: Build fix: Fix glib header inclusion      #Subject: Build fix: Fix glib header inclusion
415      #Applied-Upstream: commit:30602      #Applied-Upstream: commit:30602
# Line 55  class Patch(object): Line 417  class Patch(object):
417      #Bug: http://bugzilla.abisource.com/show_bug.cgi?id=13247      #Bug: http://bugzilla.abisource.com/show_bug.cgi?id=13247
418    
419      def _read_dep3(self):      def _read_dep3(self):
420          """This will also parse git headers"""          """Read DEP-3 headers from an existing patch file
421    
422            This will also parse git headers"""
423          dep3 = {}          dep3 = {}
424            headers = {}
425    
426          last_header = None          last_header = None
427            last_nr = 0
428            nr = 0
429          try:          try:
430              with open(self.path, "r") as f:              with open(self.path, "r") as f:
431                  for line in line_input(f):                  for line in line_input(f):
432                      # Check for start of real patch                      nr += 1
433                        # stop trying to parse when real patch begins
434                      if line == '---':                      if line == '---':
435                          break                          break
436    
437                      r = self.re_dep3.match(line)                      r = self.re_dep3.match(line)
438                      if r:                      if r:
439                          info = r.groupdict()                          info = r.groupdict()
440                          dep3[info['header']] = info['data']  
441                            # Avoid matching URLS
442                            if info['data'].startswith('//') and info['header'].lower () == info['header']:
443                                continue
444    
445                            headers[info['header']] = info['data']
446                          last_header = info['header']                          last_header = info['header']
447                            last_nr = nr
448                          continue                          continue
449    
450                      r = self.re_dep3_cont.match(line)                      r = self.re_dep3_cont.match(line)
451                      if r:                      if r:
452                          info = r.groupdict()                          info = r.groupdict()
453                          if last_header:                          if last_header:
454                              dep3[last_header] = " ".join((dep3[last_header], info['data']))                              headers[last_header] = " ".join((headers[last_header], info['data']))
455                                last_nr = nr
456                          continue                          continue
457    
458                      last_header = None                      last_header = None
459          except IOError:          except IOError:
460              pass              pass
461    
462            dep3['valid'] = \
463                (('Description' in headers and headers['Description'].strip() != '')
464                    or ('Subject' in headers and headers['Subject'].strip() != '')) \
465                and (('Origin' in headers and headers['Origin'].strip() != '') \
466                    or ('Author' in headers and headers['Author'].strip() != '') \
467                    or ('From' in headers and headers['From'].strip() != ''))
468            dep3['last_nr'] = last_nr
469            dep3['headers'] = headers
470    
471          self._dep3 = dep3          self._dep3 = dep3
472    
473      @property      @property
# Line 92  class Patch(object): Line 477  class Patch(object):
477    
478          return self._dep3          return self._dep3
479    
480        @property
481        def svn_author(self):
482            if not hasattr(self, '_svn_author'):
483                try:
484                    contents = subprocess.check_output(['svn', 'log', '-q', "--", self.path], close_fds=True).strip("\n").splitlines()
485    
486  def get_upstream_names():                  for line in contents:
487      urlopen = urllib2.build_opener()                      if ' | ' not in line:
488                            continue
489    
490      good_dir = re.compile('^[-A-Za-z0-9_+.]+/$')                      fields = line.split(' | ')
491                        if len(fields) >= 3:
492                            self._svn_author = fields[1]
493                except subprocess.CalledProcessError:
494                    pass
495    
496      # Get the files          if not hasattr(self, '_svn_author'):
497      usock = urlopen.open(URL)              return None
     parser = urllister()  
     parser.feed(usock.read())  
     usock.close()  
     parser.close()  
     files = parser.urls  
498    
499      tarballs = set([filename.replace('/', '') for filename in files if good_dir.search(filename)])          return self._svn_author
500    
     return tarballs  
501    
502  def get_downstream_names():  class Upstream(object):
     re_file = re.compile(r'^(?P<module>.*?)[_-](?:(?P<oldversion>([0-9]+[\.])*[0-9]+)-)?(?P<version>([0-9]+[\.\-])*[0-9]+)\.(?P<format>(?:tar\.|diff\.)?[a-z][a-z0-9]*)$')  
503    
504      p = subprocess.Popen(['urpmf', '--files', '.', "--media", MEDIA], stdout=subprocess.PIPE, close_fds=True)      URL="http://download.gnome.org/sources/"
505      contents = p.stdout.read().strip("\n").splitlines()      limit = None
506      ecode = p.wait()      _cache_versions = {}
     if ecode != 0:  
         sys.exit(1)  
507    
508      FILES = {}      def __init__(self):
509      TARBALLS = {}          urlopen = urllib2.build_opener()
510    
511      for line in  contents:          good_dir = re.compile('^[-A-Za-z0-9_+.]+/$')
         try:  
             srpm, filename = line.split(":")  
         except ValueError:  
             print >>sys.stderr, line  
             continue  
512    
513          if '.tar' in filename:          # Get the files
514              r = re_file.match(filename)          usock = urlopen.open(self.URL)
515              if r:          parser = urllister()
516                  fileinfo = r.groupdict()          parser.feed(usock.read())
517                  module = fileinfo['module']          usock.close()
518            parser.close()
519                  if module not in TARBALLS:          files = parser.urls
                     TARBALLS[module] = set()  
                 TARBALLS[module].add(srpm)  
   
         if srpm not in FILES:  
             FILES[srpm] = set()  
         FILES[srpm].add(filename)  
520    
521      return TARBALLS, FILES          tarballs = set([filename.replace('/', '') for filename in files if good_dir.search(filename)])
522            if self.limit is not None:
523                tarballs.intersection_update(self.limit)
524    
525            self.names = tarballs
526    
527        @classmethod
528        def versions(cls, module):
529            # XXX - ugly
530            if module not in cls._cache_versions:
531                versions = None
532    
533                url = '%s%s/cache.json' % (cls.URL, module)
534                r = requests.get(url)
535                j = r.json
536                if j is not None and len(j) > 2 and module in j[2]:
537                    versions = j[2][module]
538    
539                cls._cache_versions[module] = versions
540    
541            return cls._cache_versions[module]
542    
543    class Downstream(object):
544        re_file = re.compile(r'^(?P<module>.*?)[_-](?:(?P<oldversion>([0-9]+[\.])*[0-9]+)-)?(?P<version>([0-9]+[\.\-])*[0-9]+)\.(?P<format>(?:tar\.|diff\.)?[a-z][a-z0-9]*)$')
545    
546        MEDIA="Core Release Source"
547        PKGROOT='~/pkgs'
548        DISTRO=None
549    
550        def __init__(self):
551            contents = subprocess.check_output(['urpmf', '--qf', '%name|%version|%files', '.', "--media", self.MEDIA], close_fds=True).strip("\n").splitlines()
552    
553            FILES = {}
554            TARBALLS = {}
555    
556            for line in  contents:
557                try:
558                    srpm, version, filename = line.split("|")
559                except ValueError:
560                    print >>sys.stderr, line
561                    continue
562    
563                if '.tar' in filename:
564                    r = self.re_file.match(filename)
565                    if r:
566                        fileinfo = r.groupdict()
567                        module = fileinfo['module']
568    
569                        if module not in TARBALLS:
570                            TARBALLS[module] = {}
571                        TARBALLS[module][srpm] = version
572    
573                if srpm not in FILES:
574                    FILES[srpm] = set()
575                FILES[srpm].add(filename)
576    
577            self.tarballs = TARBALLS
578            self.files = FILES
579    
580        @classmethod
581        def co(cls, package, cwd=None):
582            if cwd is None:
583                cwd = os.path.expanduser(cls.PKGROOT)
584    
585            cmd = ['mgarepo', 'co']
586            if cls.DISTRO:
587                cmd.extend(('-d', cls.DISTRO))
588            cmd.append(package)
589            return subprocess.check_call(cmd, cwd=cwd)
590    
591        def get_downstream_from_upstream(self, upstream, version):
592            if upstream not in self.tarballs:
593                raise ValueError("No packages for upstream name: %s" % upstream)
594    
595            if len(self.tarballs[upstream]) == 1:
596                return self.tarballs[upstream].keys()
597    
598            # Directories packages are located in
599            root = os.path.expanduser(self.PKGROOT)
600    
601            packages = {}
602            for package in self.tarballs[upstream].keys():
603                cwd = os.path.join(root, package)
604    
605                # Checkout package to ensure the checkout reflects the latest changes
606                try:
607                    self.co(package, cwd=root)
608                except subprocess.CalledProcessError:
609                    raise ValueError("Multiple packages found and cannot checkout %s" % package)
610    
611                # Determine version from spec file
612                try:
613                    packages[package] = SpecFile(os.path.join(cwd, "SPECS", "%s.spec" % package)).version
614                except subprocess.CalledProcessError:
615                    raise ValueError("Multiple packages found and cannot determine version of %s" % package)
616    
617            # Return all packages reflecting the current version
618            matches = [package for package in packages if packages[package] == version]
619            if len(matches):
620                return matches
621    
622            # Return all packages reflecting the version before the current version
623            latest_version = get_latest_version(packages.values(), max_version=version)
624            matches = [package for package in packages if packages[package] == latest_version]
625            if len(matches):
626                return matches
627    
628            # Give up
629            raise ValueError("Multiple packages found and cannot determine package for version %s" % version)
630    
631    def write_file(path, data):
632        with tempfile.NamedTemporaryFile(dir=os.path.dirname(path), delete=False) as fdst:
633            fdst.write(data)
634            fdst.flush()
635            os.rename(fdst.name, path)
636    
637  def cmd_co(options, parser):  def cmd_co(options, parser):
638      upstream = get_upstream_names()      for package, module, package_version, spec_version, downstream_files in sorted(join_streams()):
639      downstream, downstream_files = get_downstream_names()          print "%s => %s" % (module, package)
640            try:
641                Downstream.co(package)
642            except subprocess.CalledProcessError:
643                pass
644    
645    def join_streams(show_version=False, only_diff_version=False):
646        root = os.path.expanduser(Downstream.PKGROOT)
647    
648      cwd = os.path.expanduser(PKGROOT)      upstream = Upstream().names
649        downstream = Downstream()
650    
651      matches = upstream & set(downstream.keys())      matches = upstream & set(downstream.tarballs.keys())
652      for module in matches:      for module in matches:
653          print module, "\t".join(downstream[module])          for package in downstream.tarballs[module].keys():
654          for package in downstream[module]:              package_version = downstream.tarballs[module][package]
655              subprocess.call(['mgarepo', 'co', package], cwd=cwd)              spec_version = None
656                if show_version or only_diff_version:
657                    cwd = os.path.join(root, package)
658                    try:
659                        spec_version = SpecFile(os.path.join(cwd, "SPECS", "%s.spec" % package)).version
660                    except subprocess.CalledProcessError:
661                        spec_version = 'N/A'
662    
663  def cmd_ls(options, parser):              if only_diff_version and package_version == spec_version:
664      upstream = get_upstream_names()                  continue
     downstream, downstream_files = get_downstream_names()  
665    
666      matches = upstream & set(downstream.keys())              yield (package, module, package_version, spec_version, downstream.files[package])
667      for module in matches:  
668          print "\n".join(downstream[module])  def cmd_ls(options, parser):
669        streams = join_streams(show_version=options.show_version, only_diff_version=options.diff)
670        if options.sort:
671            SORT=dict(zip(options.sort.read().splitlines(), itertools.count()))
672    
673            streams = sorted(streams, key=lambda a: (SORT.get(a[1], 9999), a[0]))
674        else:
675            streams = sorted(streams)
676    
677        for package, module, package_version, spec_version, downstream_files in streams:
678            sys.stdout.write(package)
679            if options.upstream: sys.stdout.write("\t%s" % module)
680            if options.show_version: sys.stdout.write("\t%s\t%s" % (spec_version, package_version))
681            print
682    
683    def cmd_check_latest(options, parser):
684        streams = join_streams(show_version=True)
685    
686        for package, module, package_version, spec_version, downstream_files in streams:
687            sys.stdout.write(package)
688            sys.stdout.write("\t%s\t%s" % (spec_version, package_version))
689    
690            safe_max_version = get_safe_max_version(spec_version)
691    
692            versions = Upstream.versions(module)
693            if versions:
694                latest_version = get_latest_version(versions)
695                safe_version = get_latest_version(versions, safe_max_version)
696    
697                if version_cmp(latest_version, spec_version) < 0: latest_version = 'N/A'
698                if version_cmp(safe_version, spec_version) < 0: safe_version = 'N/A'
699    
700                sys.stdout.write("\t%s" % latest_version)
701                sys.stdout.write("\t%s" % safe_version)
702            print
703    
704  def cmd_patches(options, parser):  def cmd_patches(options, parser):
705      upstream = get_upstream_names()      root = os.path.expanduser(Downstream.PKGROOT)
     downstream, downstream_files = get_downstream_names()  
706    
707      path = os.path.expanduser(PKGROOT)      for package, module, package_version, spec_version, downstream_files in sorted(join_streams()):
708            for filename in downstream_files:
709                if '.patch' in filename or '.diff' in filename:
710    
711                    p = Patch(os.path.join(root, package, "SOURCES", filename), show_path=options.path)
712                    valid = ""
713                    forwarded = ""
714                    if p.dep3['headers']:
715                        forwarded = p.dep3['headers'].get('Forwarded', "no")
716                        if p.dep3['valid']:
717                            valid="VALID"
718                    print "\t".join((module, package, str(p), forwarded, valid))
719    
720    def cmd_dep3(options, parser):
721        p = Patch(options.patch)
722        p.add_dep3()
723    
724    def cmd_package_new_version(options, parser):
725        # Determine the package name
726        if options.upstream:
727            try:
728                package = Downstream().get_downstream_from_upstream(options.package, options.version)[0]
729            except ValueError, e:
730                print >>sys.stderr, "ERROR: %s" % e
731                sys.exit(1)
732        else:
733            package = options.package
734    
735        # Directories packages are located in
736        root = os.path.expanduser(Downstream.PKGROOT)
737        cwd = os.path.join(root, package)
738    
739      import pprint      # Checkout package to ensure the checkout reflects the latest changes
740        try:
741            Downstream.co(package, cwd=root)
742        except subprocess.CalledProcessError:
743            sys.exit(1)
744    
745        # SpecFile class handles the actual version+release change
746        s = SpecFile(os.path.join(cwd, "SPECS", "%s.spec" % package))
747        print "%s => %s" % (s.version, options.version)
748        if not s.update(options.version, force=options.force):
749            sys.exit(1)
750    
751      matches = upstream & set(downstream.keys())      # Check hash, if given
752      for module in sorted(matches):      if options.hexdigest is not None:
753          for srpm in downstream[module]:          sources = [name for name, origname in s.sources.iteritems() if '://' in origname]
754              for filename in downstream_files[srpm]:          if not len(sources):
755                  if '.patch' in filename or '.diff' in filename:              print >>sys.stderr, "ERROR: Cannot determine source file (for hash check)!"
756                      p = Patch(os.path.join(path, srpm, "SOURCES", filename), show_path=options.path)              sys.stderr(1)
757                      print "\t".join((module, srpm, str(p)))  
758                      if p.dep3:          for filename in sources:
759                          pprint.pprint(p.dep3)              path = os.path.join(cwd, "SOURCES", filename)
760                if not is_valid_hash(path, options.algo, options.hexdigest):
761                    print >>sys.stderr, "ERROR: Hash file failed check for %s!" % path
762                    print >>sys.stderr, "ERROR: Reverting changes!"
763                    subprocess.call(['svn', 'revert', '-R', cwd], cwd=cwd)
764                    sys.exit(1)
765    
766        try:
767            # If we made it this far, checkin the changes
768            subprocess.check_call(['mgarepo', 'ci', '-m', 'new version %s' % options.version], cwd=cwd)
769    
770            # Submit is optional
771            if options.submit:
772                subprocess.check_call(['mgarepo', 'submit'], cwd=cwd)
773        except subprocess.CalledProcessError:
774            sys.exit(1)
775    
776    def cmd_parse_ftp_release_list(options, parser):
777        def _send_reply_mail(contents, orig_msg, to, packages=[], error=False):
778            """Send an reply email"""
779            contents.seek(0)
780            msg = MIMEText(contents.read(), _charset='utf-8')
781    
782            if error:
783                # XXX - ugly
784                contents.seek(0)
785                lastline = contents.read().rstrip().splitlines()[-1]
786                # Remove things like "ERROR: " and so on from the last line
787                lastline = re.sub(r'^(?:[^ :]+:\s+)+', '', lastline)
788                # Remove things like "   - " (youri output from mgarepo submit)
789                lastline = re.sub(r'^\s+-\s+', '', lastline)
790                subjecterror = " (ERROR: %s)" % lastline if lastline else " (ERROR)"
791            else:
792                subjecterror = ""
793    
794            if packages:
795                subject = "%s %s%s" % (", ".join(packages), orig_msg['X-Module-Version'], subjecterror)
796            else:
797                subject = "Re: %s%s" % (orig_msg['Subject'], subjecterror)
798    
799            msg['Subject'] = subject
800            msg['To'] = to
801            msg["In-Reply-To"] = orig_msg["Message-ID"]
802            msg["References"] = orig_msg["Message-ID"]
803    
804            # Call sendmail program directly so it doesn't matter if the service is running
805            cmd = ['/usr/sbin/sendmail', '-oi', '--']
806            cmd.extend([to])
807            p = subprocess.Popen(cmd, stdin=subprocess.PIPE)
808            p.stdin.write(msg.as_string())
809            p.stdin.flush()
810            p.stdin.close()
811            p.wait()
812    
813    
814        msg = email.email.message_from_file(sys.stdin)
815    
816        if options.mail:
817            stdout = tempfile.TemporaryFile()
818            stderr = stdout
819        else:
820            stdout = sys.stdout
821            stderr = sys.stderr
822    
823        try:
824            module = msg['X-Module-Name']
825            version = msg['X-Module-Version']
826            hexdigest = msg['X-Module-SHA256-tar.xz']
827        except KeyError, e:
828            print >>stderr, "ERROR: %s" % e
829            if options.mail: _send_reply_mail(stdout, msg, options.mail, error=True)
830            sys.exit(1)
831    
832        try:
833            packages = Downstream().get_downstream_from_upstream(module, version)
834        except ValueError, e:
835            print >>stderr, "ERROR: %s" % e
836            if options.mail: _send_reply_mail(stdout, msg, options.mail, error=True)
837            sys.exit(1)
838    
839        if options.wait:
840            # maildrop aborts and will try to deliver after 5min
841            # fork to avoid this
842            if os.fork() != 0: sys.exit(0)
843            # wait SLEEP_INITIAL after the message was sent
844            secs = SLEEP_INITIAL
845            t = email.utils.parsedate_tz(msg['Date'])
846            if t is not None:
847                msg_time = email.utils.mktime_tz(t)
848                secs = SLEEP_INITIAL - (time.time() - msg_time)
849    
850            if secs > 0: time.sleep(secs)
851    
852        error = False
853        for package in packages:
854            cmd = ['mga-gnome', 'increase', '--hash', hexdigest]
855            if options.submit:
856                cmd.append('--submit')
857            if options.force:
858                cmd.append('--force')
859            cmd.extend((package, version))
860            if subprocess.call(cmd, stdout=stdout, stderr=stderr):
861                error = True
862    
863        if options.mail: _send_reply_mail(stdout, msg, options.mail, packages=packages, error=error)
864    
865  def main():  def main():
866      description = """Mageia GNOME commands."""      description = """Mageia GNOME commands."""
867      epilog="""Report bugs to Olav Vitters"""      epilog="""Report bugs to Olav Vitters"""
868      parser = argparse.ArgumentParser(description=description,epilog=epilog)      parser = argparse.ArgumentParser(description=description,epilog=epilog)
869        parser.add_argument("-l", "--limit", type=argparse.FileType('r', 0),
870                            dest="limit_upstream", metavar="FILE",
871                            help="File containing upstream names")
872        parser.add_argument("-d", "--distro", action="store", dest="distro",
873                                           help="Distribution release")
874    
875      # SUBPARSERS      # SUBPARSERS
876      subparsers = parser.add_subparsers(title='subcommands')      subparsers = parser.add_subparsers(title='subcommands')
# Line 197  def main(): Line 881  def main():
881      )      )
882    
883      subparser = subparsers.add_parser('packages', help='list all GNOME packages')      subparser = subparsers.add_parser('packages', help='list all GNOME packages')
884        subparser.add_argument("-m", "--m", action="store_true", dest="upstream",
885                                           help="Show upstream module")
886        subparser.add_argument(      "--version", action="store_true", dest="show_version",
887                                           help="Show version numbers")
888        subparser.add_argument(      "--diff", action="store_true", dest="diff",
889                                           help="Only show packages with different version")
890        subparser.add_argument(      "--sort", type=argparse.FileType('r', 0),
891                            dest="sort", metavar="FILE",
892                            help="Sort packages according to order in given FILE")
893    
894      subparser.set_defaults(      subparser.set_defaults(
895          func=cmd_ls          func=cmd_ls, upstream=False, show_version=False, diff=False
896        )
897    
898        subparser = subparsers.add_parser('check-latest', help='check for latest version of packages')
899        subparser.set_defaults(
900            func=cmd_check_latest
901      )      )
902    
903      subparser = subparsers.add_parser('patches', help='list all GNOME patches')      subparser = subparsers.add_parser('patches', help='list all GNOME patches')
904      subparser.add_argument("-p", "--path", action="store_true", dest="path",      subparser.add_argument("-p", "--path", action="store_true", dest="path",
905                                         help="Full path to patch")                                         help="Show full path to patch")
906      subparser.set_defaults(      subparser.set_defaults(
907          func=cmd_patches, path=False          func=cmd_patches, path=False
908      )      )
909    
910        subparser = subparsers.add_parser('dep3', help='Add dep3 headers')
911        subparser.add_argument("patch", help="Patch")
912        subparser.set_defaults(
913            func=cmd_dep3, path=False
914        )
915    
916        subparser = subparsers.add_parser('increase', help='Increase version number')
917        subparser.add_argument("package", help="Package name")
918        subparser.add_argument("version", help="Version number")
919        subparser.add_argument("-f", "--force", action="store_true", dest="force",
920                                           help="Override warnings, just do it")
921        subparser.add_argument("-u", "--upstream", action="store_true", dest="upstream",
922                                           help="Package name reflects the upstream name")
923        subparser.add_argument("-s", "--submit", action="store_true", dest="submit",
924                                           help="Commit changes and submit")
925        subparser.add_argument("-a", "--algorithm", choices=hashlib.algorithms, dest="algo",
926                                           help="Hash algorithm")
927        subparser.add_argument("--hash", dest="hexdigest",
928                                           help="Hexdigest of the hash")
929        subparser.set_defaults(
930            func=cmd_package_new_version, submit=True, upstream=False, hexdigest=None, algo="sha256",
931            force=False
932        )
933    
934        subparser = subparsers.add_parser('gnome-release-email', help='Submit packages based on GNOME ftp-release-list email')
935        subparser.add_argument("-m", "--mail", help="Email address to send the progress to")
936        subparser.add_argument("-w", "--wait", action="store_true",
937                                     help="Wait before trying to retrieve the new version")
938        subparser.add_argument("-s", "--submit", action="store_true", dest="submit",
939                                           help="Commit changes and submit")
940        subparser.add_argument("-f", "--force", action="store_true",
941                                     help="Force submission")
942        subparser.set_defaults(
943            func=cmd_parse_ftp_release_list, force=False, wait=False
944        )
945    
946      if len(sys.argv) == 1:      if len(sys.argv) == 1:
947          parser.print_help()          parser.print_help()
948          sys.exit(2)          sys.exit(2)
949    
950      options = parser.parse_args()      options = parser.parse_args()
951        if options.limit_upstream:
952            Upstream.limit = set(options.limit_upstream.read().strip("\n").splitlines())
953    
954        if options.distro:
955            Downstream.PKGROOT = os.path.join('~/pkgs', options.distro)
956            Downstream.MEDIA = "Core Release %s Source" % options.distro
957            Downstream.DISTRO = options.distro
958    
959      try:      try:
960          options.func(options, parser)          options.func(options, parser)
# Line 229  def main(): Line 970  def main():
970          sys.exit(0)          sys.exit(0)
971    
972  if __name__ == "__main__":  if __name__ == "__main__":
973        os.environ['PYTHONUNBUFFERED'] = '1'
974      main()      main()

Legend:
Removed from v.2936  
changed lines
  Added in v.5288

  ViewVC Help
Powered by ViewVC 1.1.30