2018-10-24 04:00:37 +02:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (C) 2018 ScyllaDB
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
|
|
|
# This file is part of Scylla.
|
|
|
|
#
|
|
|
|
# Scylla is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Scylla is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Scylla. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import io
|
|
|
|
import os
|
|
|
|
import tarfile
|
|
|
|
import pathlib
|
|
|
|
|
|
|
|
|
|
|
|
ap = argparse.ArgumentParser(description='Create a relocatable scylla package.')
|
|
|
|
ap.add_argument('dest',
|
|
|
|
help='Destination file (tar format)')
|
|
|
|
|
|
|
|
args = ap.parse_args()
|
|
|
|
|
|
|
|
output = args.dest
|
|
|
|
|
|
|
|
ar = tarfile.open(output, mode='w|gz')
|
|
|
|
pathlib.Path('build/SCYLLA-RELOCATABLE-FILE').touch()
|
|
|
|
ar.add('build/SCYLLA-RELOCATABLE-FILE', arcname='SCYLLA-RELOCATABLE-FILE')
|
|
|
|
ar.add('build/SCYLLA-RELEASE-FILE', arcname='SCYLLA-RELEASE-FILE')
|
|
|
|
ar.add('build/SCYLLA-VERSION-FILE', arcname='SCYLLA-VERSION-FILE')
|
2019-04-22 12:53:04 +02:00
|
|
|
ar.add('build/SCYLLA-PRODUCT-FILE', arcname='SCYLLA-PRODUCT-FILE')
|
2018-10-24 04:00:37 +02:00
|
|
|
ar.add('dist')
|
|
|
|
ar.add('target/scylla-jmx-1.0.jar', arcname='scylla-jmx-1.0.jar')
|
|
|
|
ar.add('scripts/scylla-jmx', arcname='scylla-jmx')
|
|
|
|
ar.add('README.md')
|
|
|
|
ar.add('NOTICE')
|