summaryrefslogtreecommitdiff
path: root/wrappers
diff options
context:
space:
mode:
Diffstat (limited to 'wrappers')
-rw-r--r--wrappers/java-android/Makefile2
-rwxr-xr-xwrappers/python/setup.py2
-rw-r--r--wrappers/swift/Package.swift3
3 files changed, 4 insertions, 3 deletions
diff --git a/wrappers/java-android/Makefile b/wrappers/java-android/Makefile
index 1082aed..9d9ca79 100644
--- a/wrappers/java-android/Makefile
+++ b/wrappers/java-android/Makefile
@@ -10,6 +10,8 @@ endif
build:
./gradlew $(GRADLE_FLAGS) assembleRelease
+pack: build
+
# Unit tests use library for desktop OS platform, so we still need .try-build-lib for this
# The unit tests find this library through the library path set in common.mk
unit-test: .try-build-lib
diff --git a/wrappers/python/setup.py b/wrappers/python/setup.py
index 9e7bde4..a1ce1ee 100755
--- a/wrappers/python/setup.py
+++ b/wrappers/python/setup.py
@@ -76,7 +76,7 @@ class bdist_wheel(_bdist_wheel):
print(f"Building wheel for platform {self.plat_name}")
# setuptools will only use paths inside the package for package_data, so we copy the library
- tmp_lib = shutil.copy2(f"{self.exports_lib_path}/{libpath}", "eduvpncommon/lib/")
+ tmp_lib = shutil.copy(f"{self.exports_lib_path}/{libpath}", "eduvpncommon/lib/")
_bdist_wheel.run(self)
os.remove(tmp_lib)
diff --git a/wrappers/swift/Package.swift b/wrappers/swift/Package.swift
index bb6f8e9..5b675ac 100644
--- a/wrappers/swift/Package.swift
+++ b/wrappers/swift/Package.swift
@@ -1,5 +1,4 @@
-// swift-tools-version:5.1
-//TODO ^ find out minimal version
+// swift-tools-version:5.0
import PackageDescription