mirror of
https://git.launchpad.net/~vhaudiquet/+git/flutter-artifacts-proxy
synced 2026-09-25 18:28:23 +00:00
Compare commits
3
Commits
a8baaabd46
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
522e9fc63c
|
||
|
|
4652a84c7d
|
||
|
|
9cfbd3b12b
|
@@ -56,3 +56,15 @@ parts:
|
|||||||
override-prime: |
|
override-prime: |
|
||||||
mkdir -p $CRAFT_PRIME/src/static/flutter_infra_release/flutter/4c525dac5ebe5971c5708ef73558ed8edcf4a362/
|
mkdir -p $CRAFT_PRIME/src/static/flutter_infra_release/flutter/4c525dac5ebe5971c5708ef73558ed8edcf4a362/
|
||||||
mv $CRAFT_PART_SRC/output/* $CRAFT_PRIME/src/static/flutter_infra_release/flutter/4c525dac5ebe5971c5708ef73558ed8edcf4a362/
|
mv $CRAFT_PART_SRC/output/* $CRAFT_PRIME/src/static/flutter_infra_release/flutter/4c525dac5ebe5971c5708ef73558ed8edcf4a362/
|
||||||
|
|
||||||
|
flutter-3.44.9:
|
||||||
|
plugin: nil
|
||||||
|
build-packages:
|
||||||
|
- curl
|
||||||
|
override-pull: |
|
||||||
|
curl -L -O https://code.launchpad.net/~vhaudiquet/+git/flutter/+artifact/511647/+files/flutter-artifacts-riscv64.tar.gz
|
||||||
|
override-build: |
|
||||||
|
tar -C $CRAFT_PART_SRC -xzf flutter-artifacts-riscv64.tar.gz
|
||||||
|
override-prime: |
|
||||||
|
mkdir -p $CRAFT_PRIME/src/static/flutter_infra_release/flutter/5a2a6a42cce67f965cf540fcecf616faca624aa1/
|
||||||
|
mv $CRAFT_PART_SRC/output/* $CRAFT_PRIME/src/static/flutter_infra_release/flutter/5a2a6a42cce67f965cf540fcecf616faca624aa1/
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ http {{
|
|||||||
def install() -> None:
|
def install() -> None:
|
||||||
"""Install nginx apt package."""
|
"""Install nginx apt package."""
|
||||||
apt.update()
|
apt.update()
|
||||||
apt.add_package("nginx", "1.18.0-6ubuntu14.8")
|
apt.add_package("nginx")
|
||||||
subprocess.check_output(["service", "nginx", "stop"])
|
subprocess.check_output(["service", "nginx", "stop"])
|
||||||
os.remove("/etc/nginx/nginx.conf")
|
os.remove("/etc/nginx/nginx.conf")
|
||||||
os.unlink("/etc/nginx/sites-enabled/default")
|
os.unlink("/etc/nginx/sites-enabled/default")
|
||||||
|
|||||||
@@ -52,5 +52,7 @@
|
|||||||
<p style="margin-left: 20px;"><a href="https://code.launchpad.net/~vhaudiquet/+git/flutter/+build/228022">Launchpad build</a> <a href="tool/3.38.9.patch">Tool patch</a></p>
|
<p style="margin-left: 20px;"><a href="https://code.launchpad.net/~vhaudiquet/+git/flutter/+build/228022">Launchpad build</a> <a href="tool/3.38.9.patch">Tool patch</a></p>
|
||||||
<h3>Flutter 3.44.0 - <a href="flutter_infra_release/flutter/4c525dac5ebe5971c5708ef73558ed8edcf4a362/">4c525dac5ebe5971c5708ef73558ed8edcf4a362</a></h3>
|
<h3>Flutter 3.44.0 - <a href="flutter_infra_release/flutter/4c525dac5ebe5971c5708ef73558ed8edcf4a362/">4c525dac5ebe5971c5708ef73558ed8edcf4a362</a></h3>
|
||||||
<p style="margin-left: 20px;"><a href="https://code.launchpad.net/~vhaudiquet/+git/flutter/+build/228011">Launchpad build</a>
|
<p style="margin-left: 20px;"><a href="https://code.launchpad.net/~vhaudiquet/+git/flutter/+build/228011">Launchpad build</a>
|
||||||
|
<h3>Flutter 3.44.9 - <a href="flutter_infra_release/flutter/5a2a6a42cce67f965cf540fcecf616faca624aa1/">5a2a6a42cce67f965cf540fcecf616faca624aa1</a></h3>
|
||||||
|
<p style="margin-left: 20px;"><a href="https://code.launchpad.net/~vhaudiquet/+git/flutter/+build/251644">Launchpad build</a>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@@ -416,7 +416,7 @@ index fdbfbfdca2e..ac2f5dbefb8 100644
|
|||||||
/// Whether UIScene migration is enabled.
|
/// Whether UIScene migration is enabled.
|
||||||
bool get isUISceneMigrationEnabled;
|
bool get isUISceneMigrationEnabled;
|
||||||
|
|
||||||
+ /// Wether riscv64 support is enabled.
|
+ /// Whether riscv64 support is enabled.
|
||||||
+ bool get isRiscv64SupportEnabled;
|
+ bool get isRiscv64SupportEnabled;
|
||||||
+
|
+
|
||||||
/// Whether a particular feature is enabled for the current channel.
|
/// Whether a particular feature is enabled for the current channel.
|
||||||
@@ -434,7 +434,7 @@ index fdbfbfdca2e..ac2f5dbefb8 100644
|
|||||||
stable: FeatureChannelSetting(available: true),
|
stable: FeatureChannelSetting(available: true),
|
||||||
);
|
);
|
||||||
|
|
||||||
+/// The [Feature] for building code targetting riscv64 architecture
|
+/// The [Feature] for building code targeting riscv64 architecture
|
||||||
+const riscv64 = Feature(
|
+const riscv64 = Feature(
|
||||||
+ name: 'support for riscv64 architecture',
|
+ name: 'support for riscv64 architecture',
|
||||||
+ configSetting: 'enable-riscv64',
|
+ configSetting: 'enable-riscv64',
|
||||||
|
|||||||
Reference in New Issue
Block a user