~anvil-dev/anvil/master

« back to all changes in this revision

Viewing changes to tools/explode_envra

  • Committer: Joshua Harlow
  • Date: 2016-12-20 18:49:06 UTC
  • Revision ID: git-v1:649ab1fb3fcde2613af5a71fdc7a696a04989fde
Retire anvil

Removes all project contents (and places a README.rst
for future benefit).

Kolla is a good replacement, people should likely switch
to that instead.

http://docs.openstack.org/developer/kolla/

Change-Id: I5e2bf5842af7a67949186ab41814e55ce03deb5f

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/python
2
 
 
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU Library General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
 
# Copyright 2005 Duke University
17
 
# Parts Copyright 2007 Red Hat, Inc
18
 
 
19
 
from rpmUtils import miscutils
20
 
 
21
 
import os
22
 
import sys
23
 
 
24
 
try:
25
 
    import simplejson as json
26
 
except ImportError:
27
 
    import json
28
 
 
29
 
 
30
 
def main():
31
 
    if len(sys.argv) <= 1:
32
 
        print("%s filename ..." % os.path.basename(sys.argv[0]))
33
 
        return 1
34
 
    for filename in sys.argv[1:]:
35
 
        (name, ver, rel, epoch, arch) = miscutils.splitFilename(filename)
36
 
        holder = {
37
 
            'name': name,
38
 
            'version': ver,
39
 
            'release': rel,
40
 
            'epoch': epoch,
41
 
            'arch': arch,
42
 
        }
43
 
        print(json.dumps(holder))
44
 
    return 0
45
 
 
46
 
 
47
 
if __name__ == '__main__':
48
 
    sys.exit(main())