Do not generate the pom file in kiwix-build. (#362)
Do not generate the pom file in kiwix-build.
This commit is contained in:
commit
a1ae713457
|
@ -45,7 +45,7 @@ class KiwixlibApp(Dependency):
|
||||||
|
|
||||||
class Builder(GradleBuilder):
|
class Builder(GradleBuilder):
|
||||||
dependencies = ["kiwix-lib"]
|
dependencies = ["kiwix-lib"]
|
||||||
gradle_target = "assembleRelease"
|
gradle_target = "assembleRelease writePom"
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_dependencies(cls, platformInfo, allDeps):
|
def get_dependencies(cls, platformInfo, allDeps):
|
||||||
|
|
|
@ -1,47 +1,11 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import requests
|
|
||||||
from requests.auth import HTTPBasicAuth
|
|
||||||
import os, sys
|
import os, sys
|
||||||
import json
|
import json
|
||||||
|
import requests
|
||||||
|
|
||||||
bintray_auth = (os.environ['BINTRAY_USER'], os.environ['BINTRAY_PASS'])
|
bintray_auth = (os.environ['BINTRAY_USER'], os.environ['BINTRAY_PASS'])
|
||||||
|
|
||||||
|
|
||||||
def generate_pom_file(version):
|
|
||||||
template = """<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>org.kiwix.kiwixlib</groupId>
|
|
||||||
<artifactId>kiwixlib</artifactId>
|
|
||||||
<version>{version}</version>
|
|
||||||
<packaging>aar</packaging>
|
|
||||||
<name>kiwixlib</name>
|
|
||||||
<description>kiwixlib</description>
|
|
||||||
<url>https://github.com/kiwix/kiwix-lib</url>
|
|
||||||
<licenses>
|
|
||||||
<license>
|
|
||||||
<name>GPLv3</name>
|
|
||||||
<url>https://www.gnu.org/licenses/gpl-3.0.en.html</url>
|
|
||||||
</license>
|
|
||||||
</licenses>
|
|
||||||
<developers>
|
|
||||||
<developer>
|
|
||||||
<id>kiwix</id>
|
|
||||||
<name>kiwix</name>
|
|
||||||
<email>contact@kiwix.org</email>
|
|
||||||
</developer>
|
|
||||||
</developers>
|
|
||||||
<scm>
|
|
||||||
<connection>https://github.com/kiwix/kiwix-lib.git</connection>
|
|
||||||
<developerConnection>https://github.com/kiwix/kiwix-lib.git</developerConnection>
|
|
||||||
<url>https://github.com/kiwix/kiwix-lib</url>
|
|
||||||
</scm>
|
|
||||||
</project>"""
|
|
||||||
return template.format(version=version)
|
|
||||||
|
|
||||||
|
|
||||||
def create_version(version):
|
def create_version(version):
|
||||||
url = "https://api.bintray.com/packages/kiwix/kiwix/kiwixlib/versions"
|
url = "https://api.bintray.com/packages/kiwix/kiwix/kiwixlib/versions"
|
||||||
payload = {
|
payload = {
|
||||||
|
@ -68,7 +32,7 @@ def create_version(version):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
def upload_archive(version, filename, artefact):
|
def upload(version, filepath, artefact):
|
||||||
url_template = "https://api.bintray.com/content/kiwix/kiwix/kiwixlib/{version}/org/kiwix/kiwixlib/kiwixlib/{version}/{artefact}"
|
url_template = "https://api.bintray.com/content/kiwix/kiwix/kiwixlib/{version}/org/kiwix/kiwixlib/kiwixlib/{version}/{artefact}"
|
||||||
parameters = {
|
parameters = {
|
||||||
'publish': 1,
|
'publish': 1,
|
||||||
|
@ -77,7 +41,7 @@ def upload_archive(version, filename, artefact):
|
||||||
|
|
||||||
# Upload the main artefact
|
# Upload the main artefact
|
||||||
url = url_template.format(version=version, artefact=artefact)
|
url = url_template.format(version=version, artefact=artefact)
|
||||||
with open(filename, 'rb') as f:
|
with open(filepath, 'rb') as f:
|
||||||
r = requests.put(url, data=f, auth=bintray_auth, params=parameters)
|
r = requests.put(url, data=f, auth=bintray_auth, params=parameters)
|
||||||
|
|
||||||
rcode = r.status_code
|
rcode = r.status_code
|
||||||
|
@ -86,36 +50,26 @@ def upload_archive(version, filename, artefact):
|
||||||
print("ERROR: Fail to upload artefact")
|
print("ERROR: Fail to upload artefact")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Upload the pom file
|
|
||||||
pom_artefact = os.path.splitext(artefact)[0] + ".pom"
|
|
||||||
url = url_template.format(version=version, artefact=pom_artefact)
|
|
||||||
data = generate_pom_file(version)
|
|
||||||
r = requests.put(url, data=data, auth=bintray_auth, params=parameters)
|
|
||||||
|
|
||||||
rcode = r.status_code
|
|
||||||
rcode_family = rcode // 100
|
|
||||||
if rcode_family not in (2, 3):
|
|
||||||
print("ERROR: Fail to upload pom artefact")
|
|
||||||
return False
|
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
try:
|
try:
|
||||||
info_file = sys.argv[1]
|
info_file = sys.argv[1]
|
||||||
except IndexError:
|
except IndexError:
|
||||||
print("Usage {} infofile".format(sys.argv[0]))
|
print("Usage {} infofile".format(sys.argv[0]))
|
||||||
sys.exit(-1)
|
sys.exit(-1)
|
||||||
|
|
||||||
print("Use info file {}".format(info_file))
|
print("Use info file {}".format(info_file))
|
||||||
with open(info_file) as f:
|
with open(info_file) as f:
|
||||||
options = json.load(f)
|
options = json.load(f)
|
||||||
|
|
||||||
if not create_version(options['version']):
|
if not create_version(options['version']):
|
||||||
sys.exit("Cannot create version")
|
sys.exit("Cannot create version")
|
||||||
|
|
||||||
filepath = os.path.join(os.path.dirname(sys.argv[1]), options['filename'])
|
basedir = os.path.dirname(sys.argv[1])
|
||||||
if not upload_archive(options['version'], filepath, options['artefact']):
|
for file_ in options['files']:
|
||||||
sys.exit("Cannot upload artefact")
|
path = os.path.join(basedir, file_)
|
||||||
|
if not upload(options['version'], path, file_):
|
||||||
|
sys.exit("Cannot upload file {}".format(file_))
|
||||||
|
|
|
@ -484,17 +484,19 @@ elif PLATFORM == 'android' and 'kiwix-lib-app' in TARGETS:
|
||||||
if extra_postfix:
|
if extra_postfix:
|
||||||
postfix = "{}-{}".format(postfix, extra_postfix)
|
postfix = "{}-{}".format(postfix, extra_postfix)
|
||||||
|
|
||||||
arr_name = "kiwixlib-{}.aar".format(postfix)
|
basename = "kiwixlib-{}".format(postfix)
|
||||||
|
|
||||||
source_release_dir = HOME/'BUILD_android'/'kiwix-lib-app'/'kiwixLibAndroid'/'build'/'outputs'/'aar'
|
output_release_dir = HOME/'BUILD_android'/'kiwix-lib-app'/'kiwixLibAndroid'/'build'/'outputs'
|
||||||
shutil.copy(str(source_release_dir/'kiwixLibAndroid-release.aar'),
|
shutil.copy(str(output_release_dir/'aar'/'kiwixLibAndroid-release.aar'),
|
||||||
str(BINTRAY_ARCHIVES_DIR/arr_name))
|
str(BINTRAY_ARCHIVES_DIR/basename+'.aar'))
|
||||||
|
shutil.copy(str(output_release_dir/'pom.xml'),
|
||||||
|
str(BINTRAY_ARCHIVES_DIR/basename+'.pom'))
|
||||||
|
|
||||||
json_filename = '{}_bintray_info.json'.format(arr_name)
|
|
||||||
|
json_filename = '{}_bintray_info.json'.format(basename)
|
||||||
data = {
|
data = {
|
||||||
'version': postfix,
|
'version': postfix,
|
||||||
'filename': arr_name,
|
'files': [basename+ext for ext in ('.aar', '.pom')]
|
||||||
'artefact': arr_name
|
|
||||||
}
|
}
|
||||||
with open(str(BINTRAY_ARCHIVES_DIR/json_filename), 'w') as f:
|
with open(str(BINTRAY_ARCHIVES_DIR/json_filename), 'w') as f:
|
||||||
json.dump(data, f)
|
json.dump(data, f)
|
||||||
|
|
Loading…
Reference in New Issue