aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenoit Verhaeghe2023-10-27 16:50:36 +0200
committerBenoit Verhaeghe2023-10-27 16:50:36 +0200
commit4a9b4e38fa79bfdbfe88a82f81c1c37e61da7c63 (patch)
tree6b723090970e3ffaaf7fcdc214754a4b475a1548
parent9634ae6976bdd14a7e019d343cf75acce15925d8 (diff)
downloadaur-4a9b4e38fa79bfdbfe88a82f81c1c37e61da7c63.tar.gz
update to use last vm pharo10
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
-rw-r--r--launcher-patch.st21
3 files changed, 6 insertions, 23 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0983e72a11b7..e60b52f570a3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = pharo-launcher
pkgdesc = Pharo Launcher helps you manage your Pharo images
pkgver = 3.0
- pkgrel = 3
+ pkgrel = 4
epoch = 1
url = http://www.pharo-project.org/
arch = x86_64
@@ -15,6 +15,6 @@ pkgbase = pharo-launcher
source = local://launcher-patch.st
md5sums = aed2ea4779afde2f01733aebb6b50170
md5sums = b2e30a17b522ee265fd57fe7c45592fc
- md5sums = ce2ea191c7b8104305adc98943df826e
+ md5sums = c74b8fc7c1e23c60b1b2030afaead26c
pkgname = pharo-launcher
diff --git a/PKGBUILD b/PKGBUILD
index ff89a6d96ace..2975fcac2e5a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,7 +5,7 @@
pkgname=pharo-launcher
epoch=1
pkgver=3.0
-pkgrel=3
+pkgrel=4
pkgdesc="Pharo Launcher helps you manage your Pharo images"
arch=(x86_64)
source=(PharoLauncher-linux-$pkgver.zip pharo.conf)
@@ -23,7 +23,7 @@ source=(
md5sums=(
'aed2ea4779afde2f01733aebb6b50170'
'b2e30a17b522ee265fd57fe7c45592fc'
- 'ce2ea191c7b8104305adc98943df826e'
+ 'c74b8fc7c1e23c60b1b2030afaead26c'
)
prepare() {
diff --git a/launcher-patch.st b/launcher-patch.st
index 01c947551729..080c8037cd4e 100644
--- a/launcher-patch.st
+++ b/launcher-patch.st
@@ -12,32 +12,15 @@ PhLVmProviderArchlinux90 compile: 'urlForStable: useStableVm
PhLVmProviderArchlinux90 compile: 'urlForPharo: pharoVersion stable: useStableVm
^ self urlTemplate'.
-PhLVmProvider subclass: #PhLVmProviderArchlinux110
- instanceVariableNames: ''
- classVariableNames: ''
- package: 'PharoLauncher-Core-Download-Arch'.
-
-PhLVmProviderArchlinux110 compile: 'urlTemplate
- ^ ''https://badetitou.github.io/files/archlinux/110-x64-Arch.zip'''.
-
-PhLVmProviderArchlinux110 compile: 'urlForStable: useStableVm
- ^ self urlTemplate'.
-
-PhLVmProviderArchlinux110 compile: 'urlForPharo: pharoVersion stable: useStableVm
- ^ self urlTemplate'.
-
PhLVmProvider class compile: 'for: aPhLVirtualMachineOrManager
| class |
class := aPhLVirtualMachineOrManager pharoVersion asInteger < 90
ifTrue: [ PhLVmProviderUntilPharo80 ]
ifFalse: [ aPhLVirtualMachineOrManager pharoVersion asInteger = 90
ifTrue: [ PhLVmProviderArchlinux90 ]
- ifFalse: [ aPhLVirtualMachineOrManager pharoVersion asInteger = 110
- ifTrue: [ PhLVmProviderArchlinux110 ]
- ifFalse: [ self ] ] ].
+ ifFalse: [ self ] ].
^ class new
vmManager: aPhLVirtualMachineOrManager;
yourself'.
-
-Smalltalk snapshot: true andQuit: true \ No newline at end of file
+Smalltalk snapshot: true andQuit: true