diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..70e63fff
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,2 @@
+# Set default behavior to automatically normalize line endings.
+* text=auto
diff --git a/.github/workflows/upload.yaml b/.github/workflows/upload.yaml
new file mode 100644
index 00000000..28cb1b8c
--- /dev/null
+++ b/.github/workflows/upload.yaml
@@ -0,0 +1,39 @@
+name: publish
+on:
+ push:
+ branches:
+ - master
+ - release/*
+
+concurrency:
+ group: ${{ github.workflow }}-${{ github.ref }}
+ cancel-in-progress: true
+
+jobs:
+ build_vue:
+ runs-on: ubuntu-latest
+ name: publish
+ steps:
+ - uses: actions/checkout@v2
+ - uses: Pivot-Studio/action-qiniu-upload@master
+ with:
+ # Your qiniu access key, required.
+ access_key: ${{ secrets.QINIU_ACCESS_KEY }}
+
+ # Your qiniu secret key, required.
+ secret_key: ${{ secrets.QINIU_SECRET_KEY }}
+
+ # Bucket name, required.
+ bucket: ${{ secrets.QINIU_BUCKET }}
+
+ # The local directory (or file) you want to upload to bucket.
+ # Default: './'
+ source_dir: './'
+
+ # The directory inside of the bucket you want to upload to, namely key prefix prepended to dest file key.
+ # Default: '/'
+ dest_dir: '/apt'
+
+ # Whether to ignore source maps.
+ # Default: true
+ ignore_source_map: true
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..abb7999a
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,19 @@
+target
+*.plb
+*.piv
+.VSCodeCounter
+*.ll
+*.out
+*.ilk
+*.exe
+*.pdb
+
+test.cpp
+*.bc
+.idea
+*.o
+*.plist
+out.*
+*.asm
+*out
+*.dSYM
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..b3425012
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2022 The pivot-lang Authors
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..49f33c5e
--- /dev/null
+++ b/README.md
@@ -0,0 +1,8 @@
+
Pivot Studio apt repository
+
+
+```bash
+sudo add-apt-repository "deb [arch=amd64] https://lang.pivotstudio.cn/apt/repo focal main"
+sudo add-apt-repository "deb [arch=amd64] https://lang.pivotstudio.cn/apt/repo jammy main"
+```
+
diff --git a/deb/DEBIAN/postinst b/deb/DEBIAN/postinst
new file mode 100644
index 00000000..91db7881
--- /dev/null
+++ b/deb/DEBIAN/postinst
@@ -0,0 +1,20 @@
+GREEN='\033[0;32m'
+NC='\033[0m'
+RED='\033[0;31m'
+
+if [ "$1" = configure ]; then
+ if [[ -z "${KAGARI_LIB_ROOT}" ]]; then
+ echo "export KAGARI_LIB_ROOT=/pl/planglib" >> ~/.bashrc
+ echo "export PL_ROOT=/pl" >> ~/.bashrc
+ fi
+ echo "${GREEN}"
+ echo "-------------------------------------------------------------------"
+ echo "Successfully installed pivot-lang compiler with JIT feature!"
+ echo "the pivot-lang compiler is now available as 'plc' command"
+ echo "${RED}**jit feature does not support debug**"
+ echo "you may need to restart your shell to load environment variables"
+ echo "to install aot feature, please install clang-14 manually"
+ echo "see https://apt.llvm.org/ for more details"
+ echo "-------------------------------------------------------------------"
+ echo "${NC}"
+fi
\ No newline at end of file
diff --git a/deb/apt.yaml b/deb/apt.yaml
new file mode 100644
index 00000000..2b33c620
--- /dev/null
+++ b/deb/apt.yaml
@@ -0,0 +1,93 @@
+apiVersion: v1
+kind: Service
+metadata:
+ labels:
+ app: apt-repo
+ name: apt-repo
+ namespace: lang
+spec:
+ ports:
+ - name: "8110"
+ port: 8110
+ targetPort: 8110
+ selector:
+ app: apt-repo
+status:
+ loadBalancer: {}
+
+---
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ labels:
+ app: apt-repo
+ name: apt-repo
+ namespace: lang
+spec:
+ replicas: 1
+ selector:
+ matchLabels:
+ app: apt-repo
+ strategy:
+ type: RollingUpdate
+ template:
+ metadata:
+ labels:
+ app: apt-repo
+ spec:
+ priorityClassName: high-priority
+ containers:
+ - image: registry.cn-hangzhou.aliyuncs.com/pivotstudio/lang-apt:{{.build_tag}}
+ name: apt-repo
+ ports:
+ - containerPort: 8110
+ resources:
+ limits:
+ cpu: 100m
+ memory: 100Mi
+ requests:
+ cpu: 100m
+ memory: 50Mi
+ restartPolicy: Always
+status: {}
+---
+apiVersion: networking.k8s.io/v1
+kind: Ingress
+metadata:
+ name: apt-repo
+ namespace: lang
+ annotations:
+ kubernetes.io/ingress.class: "nginx"
+ # 开启use-regex,启用path的正则匹配
+ nginx.ingress.kubernetes.io/use-regex: "true"
+ kubernetes.io/tls-acme: "true"
+ cert-manager.io/cluster-issuer: "letsencrypt-prod"
+ # ratelimit
+ nginx.ingress.kubernetes.io/limit-connections: "60"
+ nginx.ingress.kubernetes.io/limit-rps: "60"
+ nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
+ nginx.ingress.kubernetes.io/backend-protocol: HTTP
+ nginx.ingress.kubernetes.io/configuration-snippet: |
+ proxy_set_header X-Real-IP $remote_addr;
+ proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
+ proxy_set_header X-Forwarded-Proto https;
+ proxy_ssl_server_name on;
+ proxy_ssl_name $host;
+spec:
+ rules:
+ - host: apt.lang.pivotstudio.cn
+ http:
+ paths:
+ # 不同path转发到不同端口
+ - path: /
+ pathType: Prefix
+ backend:
+ service:
+ name: apt-repo
+ port:
+ number: 8110
+ tls:
+ - secretName: pivot-tls-cert
+ hosts:
+ - apt.lang.pivotstudio.cn
+
diff --git a/index.html b/index.html
new file mode 100644
index 00000000..bcc46520
--- /dev/null
+++ b/index.html
@@ -0,0 +1,375 @@
+
+
+
+README.md
+
+
+
+
+
+
+
+
+
+
+
+
+ Pivot Studio apt repository
+
sudo add-apt-repository "deb [arch=amd64] https://lang.pivotstudio.cn/apt focal main"
+sudo add-apt-repository "deb [arch=amd64] https://lang.pivotstudio.cn/apt jammy main"
+
+
+
+
+
diff --git a/public.key b/public.key
new file mode 100644
index 00000000..fe612946
--- /dev/null
+++ b/public.key
@@ -0,0 +1,29 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+
+mQINBGNsjVABEAC+UgG6s2LlJ6cZt6LfVHNFoptEyovX19l8mkIOSv2PBGAyj7w1
+8f2KyYng1wmGkMymnkPjqT4xCxaVALetAplq5kPTH8UFlSDcTNuoK8oiIUBnTsrY
+OGJ+pyjexb5aMkL2hO14Tu/HDAEk5g85jABE9kmhGkfm2q9laotH/Oa5U6kREreE
+XevVQuh9o6x/WHXU1aXIhe/r6cHwxPInJNr6zrJ7RL/AuXM0AwOknXXkmZBxsjW9
+Zq6ga/JLd2HxoYNDZjwPKFjm8SbGtbolYdhC/KCIY0VpOfu2rIph5MzQrnFQKIYn
+CEomqZnHVki9Wl4PXGcNOkw2hpvfg6fX6qxYGcNJXw/b6Rah4Z4CGlvInMfZX7wx
+j1KbYk7J2zyasChu4e0FcIU1kLwQ9vNv50WLB2Cgy77Y3s01qJ8h4otOxtEUeHWj
+kFgPJVbCR8mCQVaXqrjEuImXh9X1+PhzjzOR/BhJS4jBgtnEd4bbDd5HgTElLyO1
+bH19UHPzfKLew7uy87ohZemT8GJoO0sLPbHNCuv2PDoGUC21YX7MlEJvMIrqK9sk
+jjt55pUI13mffGL/l36bKH3yepIkGi82D6aLjCOWpxPGJoZsaSKu5P9lo8T6nAav
+WSqSysiCxxe7eI3t0SkoXOwQh1TKLyjVqv+VPjABTtRqlpPm7sq6yFPA+wARAQAB
+tBtjaHJvbm9zIDwxNzY5NzEyNjU1QHFxLmNvbT6JAlQEEwEKAD4WIQTbDgn0ab+z
+s9vVlQZEsuiNw2tHuAUCY2yNUAIbAwUJA8JnAAULCQgHAgYVCgkICwIEFgIDAQIe
+AQIXgAAKCRBEsuiNw2tHuG1lEACRTw5ZLkjQxY8uUtEd7v/B6cDxWqelWsXmTDl3
+nMYrNcoaaOxjzlsSMzOatezeRg3elvJjWL/WF1FwlItqruhakz6Qhm4EvF5kUCzt
+PTvg+k6kFWCUuROMIS9AkquPnpoP43e3+nT4FeuelLpMD1NokEMoZcYqh/Og1Axu
+9gFtJeWKEZjytzsQFuuwWGTQUIpmY9k5HgbosZ1hyPHFZccNIRXVdSnU3RF7+LV5
+j7laRuE8byWbQZIB9zfxSivcjlHVQteQLMspOrZJ0KrNDJA/e0HH/s6AAOViv5n/
+kJLuzQh4FOQlehYDeW7gmXKExPy7A+zx1Ibrffm2YVWyEsl0DgRisPSnjepmeIUD
+Phr61vrkYNajZEkroeSHxVmlVfN0usGYj3jJV8VC3feuettlhW20hz8WC+NGJpcf
+klvu+nEPNcZpWKdHW6n8pipam1juzJdPNSWHcLLvpuPWjKy5nW5YbELxgBKMMjL7
+ZFOrSYBejTZeAZPXZboggJZVnqq8C7FXqqAdnYmfWB147XzDsgAPHLm4z6wi87UJ
+KCiWONRDmtLR25Sg/6hZr9BETb2KZDOL2WIaYIXayJLyFK+P2gWkxy7PGXpW4IqA
+PpCaznctggMqFiDdorjEGfvrpiJ+RAFXWuV8EPp7zpMr07SrjgbMxOR4YQ0dbeXb
+960nng==
+=eQV4
+-----END PGP PUBLIC KEY BLOCK-----
\ No newline at end of file
diff --git a/repo/conf/distributions b/repo/conf/distributions
new file mode 100644
index 00000000..3e397eb4
--- /dev/null
+++ b/repo/conf/distributions
@@ -0,0 +1,14 @@
+Description: Pivot-Studio/apt-repo
+Codename: jammy
+Architectures: amd64
+Components: main
+SignWith: DB0E09F469BFB3B3DBD5950644B2E88DC36B47B8
+
+
+Description: Pivot-Studio/apt-repo
+Codename: focal
+Architectures: amd64
+Components: main
+SignWith: DB0E09F469BFB3B3DBD5950644B2E88DC36B47B8
+
+
diff --git a/repo/db/checksums.db b/repo/db/checksums.db
new file mode 100644
index 00000000..79c99730
Binary files /dev/null and b/repo/db/checksums.db differ
diff --git a/repo/db/contents.cache.db b/repo/db/contents.cache.db
new file mode 100644
index 00000000..7c2fff42
Binary files /dev/null and b/repo/db/contents.cache.db differ
diff --git a/repo/db/packages.db b/repo/db/packages.db
new file mode 100644
index 00000000..69390c54
Binary files /dev/null and b/repo/db/packages.db differ
diff --git a/repo/db/references.db b/repo/db/references.db
new file mode 100644
index 00000000..0acd4c77
Binary files /dev/null and b/repo/db/references.db differ
diff --git a/repo/db/release.caches.db b/repo/db/release.caches.db
new file mode 100644
index 00000000..8a774e0d
Binary files /dev/null and b/repo/db/release.caches.db differ
diff --git a/repo/db/version b/repo/db/version
new file mode 100644
index 00000000..facb8c65
--- /dev/null
+++ b/repo/db/version
@@ -0,0 +1,4 @@
+5.1.1
+3.3.0
+bdb5.3.28
+bdb5.3.0
diff --git a/repo/dists/focal/InRelease b/repo/dists/focal/InRelease
new file mode 100644
index 00000000..83a1722a
--- /dev/null
+++ b/repo/dists/focal/InRelease
@@ -0,0 +1,36 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA512
+
+Codename: focal
+Date: Mon, 18 Dec 2023 02:04:52 UTC
+Architectures: amd64
+Components: main
+Description: Pivot-Studio/apt-repo
+MD5Sum:
+ 908f0bbf84e8434910535b77cec97ba1 480 main/binary-amd64/Packages
+ 927aed8306b6baded3095f45a354fa8f 363 main/binary-amd64/Packages.gz
+ 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release
+SHA1:
+ c7b12253de0fa091f9017c3520309f5d23325a39 480 main/binary-amd64/Packages
+ 3588eca9af5885711f405ad8f252c3c923d4c87a 363 main/binary-amd64/Packages.gz
+ 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release
+SHA256:
+ 78247249eb3a57ba4d9d4ac5a546a013289b81325542c10adf711891353ef582 480 main/binary-amd64/Packages
+ 054e7a4762d7f5887e1a43517d8d07eec5c98bf1a37f9111e240efd814b2aaaf 363 main/binary-amd64/Packages.gz
+ 3967193c3fbf544e052a066375dacb46d53cbeebe306ba8b043bc5daf5b74a0c 71 main/binary-amd64/Release
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAEBCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmV/qMQACgkQRLLojcNr
+R7gOWA/9G8cUiP6Lvnv8DO/3nPH1irLbIotbAVb7dn/pt2+wm8r9VhNqfefDzHSt
+t8krt6la04o7GCJNyxjhIuL189gwd2anKSawMNUKs4nPwT1oBVJklQVa1fXM/LA5
+lhJRplrjROESoyh5PMhLE/opj8Icx8uUs3WHD9hFTnjFUD6F41V2kkX0htaJK9UB
+rqF2oFohLAyBgGEKLIXp7i/7LppXcpc6iQkNAnIzmhZfXILKav9JHBAinDJTj9WW
+nWijOmNHCzruMO9OBPSZr3n8X+6szaNI58ihK/cqqb7GX+N+gbekCv4chZCijtDu
+ncvpDsVE4LLgamEHfPoTq2rl1kKfd7S+r45x3mdXBe1ZQNsiiegdpI7awW1iWmHI
+p52l2CqSBj9lfdbR4WrielAplN73YxNaorGck7fCOrctpsPsV8+6LlhbuyaC6oPv
+Ng6ntrQZZGQ9vo9I2FrDTtmQFAMN5wc1N+Ua447M7BwjiUK82qTYeJQTIB702qkM
+syBiNde6fi++xB6cxjGH20BpWAapmKVlNyT8dmKkk+LdU3qX4VwhipkX1lku7krg
+WOlobOAQx28hM5kwv5fQIKy62natG3DkU2HH/jul734dewVZLFhVknhDJEqHW00E
+4JRfD+DbKQOW1wuGx+Z10HBuCeUt5u75KbvHyfEjEB+hrn9IfOs=
+=bq9h
+-----END PGP SIGNATURE-----
diff --git a/repo/dists/focal/Release b/repo/dists/focal/Release
new file mode 100644
index 00000000..7c77f864
--- /dev/null
+++ b/repo/dists/focal/Release
@@ -0,0 +1,17 @@
+Codename: focal
+Date: Mon, 18 Dec 2023 02:04:52 UTC
+Architectures: amd64
+Components: main
+Description: Pivot-Studio/apt-repo
+MD5Sum:
+ 908f0bbf84e8434910535b77cec97ba1 480 main/binary-amd64/Packages
+ 927aed8306b6baded3095f45a354fa8f 363 main/binary-amd64/Packages.gz
+ 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release
+SHA1:
+ c7b12253de0fa091f9017c3520309f5d23325a39 480 main/binary-amd64/Packages
+ 3588eca9af5885711f405ad8f252c3c923d4c87a 363 main/binary-amd64/Packages.gz
+ 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release
+SHA256:
+ 78247249eb3a57ba4d9d4ac5a546a013289b81325542c10adf711891353ef582 480 main/binary-amd64/Packages
+ 054e7a4762d7f5887e1a43517d8d07eec5c98bf1a37f9111e240efd814b2aaaf 363 main/binary-amd64/Packages.gz
+ 3967193c3fbf544e052a066375dacb46d53cbeebe306ba8b043bc5daf5b74a0c 71 main/binary-amd64/Release
diff --git a/repo/dists/focal/Release.gpg b/repo/dists/focal/Release.gpg
new file mode 100644
index 00000000..147400cf
--- /dev/null
+++ b/repo/dists/focal/Release.gpg
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmV/qMQACgkQRLLojcNr
+R7gJMxAAk7PAk2cHuYTY19FSRK5Cs7wr1FZzOBBilv8HLww/Va5MWR14iVr+XTmI
+chR68cvxuExsRve2j4qblLFRY5Gh9eSo1DgKBgg8lTaWLNGT15LEDbh2PfOVSFQ5
+UAkzy1xZjwz/kJZkAK9lRtBdkX23FoakzYaUuazLyYUZUwfkKoDMOFCrGbIpyqUs
+Hr2ACBOehRpjG8GPreWDOXrhktjHG5grk+PigHAS1elfR0+oD0R6GsEZ5pQUrB1F
+GPUEvJtQWUjrSCZTLVq3cGW5AADm7nT69O9Ebc4CfWXNeSAhOp0YD30NYCbf5jHr
+yxC+n6w5gDXKAduVr/f7X1Zng244XILhSQP15sXyA06+ldZ2CL/k+okYAh7lPvBD
+9nbIiGxFXT2GHp1oLoxtfesFyEsEMU6OA4/6DCxFTU0K6zE9m5Zzzh94XZtzY61w
+qtPJITlBgrMrNv4HkyGcYr7sPvnVNUCh+pjr+kGP4E30aifn+FTNlOQ+sDohQoqj
+gcA8LoWtZhMMII6M/1HDDOAFDi7rykghnXUdE7JfbO3e2AWc6/tJLagdQwMhmfW8
+M+Rc5GtYEkQ1qy50zUcdEABDm8MZ7fAfdogZTmk4BLicPOBQrOcjXXOIYz4GSYUE
+ZSMyGpliQVOQfYUUxxV/gs+JyKiR8PjudVFZvS+Rkwg/OUJr6C8=
+=tDOf
+-----END PGP SIGNATURE-----
diff --git a/repo/dists/focal/main/binary-amd64/Packages b/repo/dists/focal/main/binary-amd64/Packages
new file mode 100644
index 00000000..048a552b
--- /dev/null
+++ b/repo/dists/focal/main/binary-amd64/Packages
@@ -0,0 +1,15 @@
+Package: pivot-lang
+Version: 0.1.274
+Installed-Size: 154451
+Architecture: amd64
+Maintainer: Chronos <1769712655@qq.com>
+Depends: build-essential, git, libunwind-dev, libxml2
+Priority: standard
+Section: devel
+Filename: pool/main/p/pivot-lang/pivot-lang_0.1.274_amd64.deb
+Size: 47103722
+SHA256: 1e5ba04b0b814246162941210b4f248f22491c39287c8d372f5ca0cc53a0dc90
+SHA1: 234ec694ffa5222bae5dd38f961334af34091a2e
+MD5sum: 6b1870fff37126f6b684f7288fc7d2f5
+Description: pivot-lang compiler
+
diff --git a/repo/dists/focal/main/binary-amd64/Packages.gz b/repo/dists/focal/main/binary-amd64/Packages.gz
new file mode 100644
index 00000000..2458e62e
Binary files /dev/null and b/repo/dists/focal/main/binary-amd64/Packages.gz differ
diff --git a/repo/dists/focal/main/binary-amd64/Release b/repo/dists/focal/main/binary-amd64/Release
new file mode 100644
index 00000000..d34f0c6e
--- /dev/null
+++ b/repo/dists/focal/main/binary-amd64/Release
@@ -0,0 +1,3 @@
+Component: main
+Architecture: amd64
+Description: Pivot-Studio/apt-repo
diff --git a/repo/dists/jammy/InRelease b/repo/dists/jammy/InRelease
new file mode 100644
index 00000000..c3a15d0d
--- /dev/null
+++ b/repo/dists/jammy/InRelease
@@ -0,0 +1,36 @@
+-----BEGIN PGP SIGNED MESSAGE-----
+Hash: SHA512
+
+Codename: jammy
+Date: Mon, 18 Dec 2023 02:04:51 UTC
+Architectures: amd64
+Components: main
+Description: Pivot-Studio/apt-repo
+MD5Sum:
+ 2956f984e41172f73fdd68f804b55eee 480 main/binary-amd64/Packages
+ a87001bbc243960a7d3e890de04a9359 360 main/binary-amd64/Packages.gz
+ 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release
+SHA1:
+ 498a0620f5a57d494da126a7eea491ca550e9239 480 main/binary-amd64/Packages
+ 02cd9efe3a44483afcbf9d9448f76626d6dff2b0 360 main/binary-amd64/Packages.gz
+ 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release
+SHA256:
+ cd656bee859a79eb26a992c430969b91f7c962d0ef38107a3e5ed0fc1367c6a7 480 main/binary-amd64/Packages
+ 3c918e6417c9f23b580746d92b1f5ef7528d6062b29e8220a31085283e4f881d 360 main/binary-amd64/Packages.gz
+ 3967193c3fbf544e052a066375dacb46d53cbeebe306ba8b043bc5daf5b74a0c 71 main/binary-amd64/Release
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAEBCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmV/qMMACgkQRLLojcNr
+R7i82A/9Esuoaah5licZUnzvomrA60SBi2KvlEtGsVLvOmDgP9W5ZISe1wuiywqr
+ptFXEnc1O5cTaPY76Hm/4Ue0O/xcgl1ZsYAQiUbKol4UzxPwXp+pGBgkY0gKpU77
+I1wWAYCjkRHYvIRBpM8unsrVkK6cFk6jfEKJ7XdsTpImKf16w7pxYkCiOU+9706z
+P/CUchDSnSFVYbRKSm5kn/BxR3EMQHnPxiStrWNeUYsbBITucNcMSlRzll0Demuj
+Hz4KDa0UJZwfqeT7mR88Kpa4ujhDEgDwYH1TSc0P7HR+Hj3qKkNLQhDYbomENoN3
+fBmxQ4U+KO3WMzlOLb8b9Te+Y5b0WgISQSwdtIrWbql/3KG1YLkF4jP1DhElrsKw
+dROS12GdQLuAND5VAPNGUGV5wvoONyKJBIEV6JozPoPjXednPm4i7eWv1tqVgHFE
+C/AKgu6FXhRseaDUAnIjn28m3fLeBylPXj3Zn/s18R5+AvCmJpxOyi9JY7sSEXe6
+f2Bt4fYj0XBeuU+NA7lmzHiT6DkZwUanRGRr+4waJ6nU1PR2Xc28tj550sBkYvTA
+vfpSkDkvn8FmdEH9a8v3OSCPwSGJ9eEvyUWjnQ4DKXIqLdtoNDc+/2rgc1Ot9WQG
+NP2LkDootIDFk+aLFZqwcY9dQGjUMb3o4oEurZI0W8VhPR1hEFs=
+=LTYL
+-----END PGP SIGNATURE-----
diff --git a/repo/dists/jammy/Release b/repo/dists/jammy/Release
new file mode 100644
index 00000000..a517381e
--- /dev/null
+++ b/repo/dists/jammy/Release
@@ -0,0 +1,17 @@
+Codename: jammy
+Date: Mon, 18 Dec 2023 02:04:51 UTC
+Architectures: amd64
+Components: main
+Description: Pivot-Studio/apt-repo
+MD5Sum:
+ 2956f984e41172f73fdd68f804b55eee 480 main/binary-amd64/Packages
+ a87001bbc243960a7d3e890de04a9359 360 main/binary-amd64/Packages.gz
+ 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release
+SHA1:
+ 498a0620f5a57d494da126a7eea491ca550e9239 480 main/binary-amd64/Packages
+ 02cd9efe3a44483afcbf9d9448f76626d6dff2b0 360 main/binary-amd64/Packages.gz
+ 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release
+SHA256:
+ cd656bee859a79eb26a992c430969b91f7c962d0ef38107a3e5ed0fc1367c6a7 480 main/binary-amd64/Packages
+ 3c918e6417c9f23b580746d92b1f5ef7528d6062b29e8220a31085283e4f881d 360 main/binary-amd64/Packages.gz
+ 3967193c3fbf544e052a066375dacb46d53cbeebe306ba8b043bc5daf5b74a0c 71 main/binary-amd64/Release
diff --git a/repo/dists/jammy/Release.gpg b/repo/dists/jammy/Release.gpg
new file mode 100644
index 00000000..6aff8f94
--- /dev/null
+++ b/repo/dists/jammy/Release.gpg
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmV/qMMACgkQRLLojcNr
+R7h3/A//QRVyUr7mBVujjV1VMtLKbm9vZ238QE1tY7Q5qaAIESqo+CNOyDzyJsLv
+ulf7vY8UYfh3tGCHS7tEiPh6fgBDKtW5MjrMfEDelYoFylnrV6AgoZHrf1JjtXLl
+/omWEATNf0BLUeN8pC7zAh4hYBMy+E45mwo4H2OH2vC+RWmjUsGbIW1MTHgsRnq3
+eKPYmxWamOrj18uF4bQlsgWdu4I+5v4lL9jXXXO9KXXr5rFdR5NMpuP+m5acSsPD
+21EmCq3roQv+TCy4OZTzcp4wuFtL4JoMhioKcHVKMqnxrNKGefYYYnLZR1Dg3sZX
+sHaEOi6wEouybG6S6b1djctajtLu65GdWe900c5uMn/y7DLo/tAwlkARUg5J9+YS
+mOlEQZr1Z9BtgKhQCtxc0rjI0+DAXi1iyTzx2Odw/quRskselthc98kIeuJnOpEH
+8hfqvRb9SliRk4gFMGNNiFPI3lLnh/dWqK2DllOaXKwl9B/vwVfoaD7xktBmvEX1
+VKfrMn6a8/Ng4zzcTHjUCIzn8VVTuTZA3MljDsgaz3sEOve7WhWKvAvPLVWxF/U7
+9LZwd/yCO8nr+hnzJiCcpjFS3f1Vg3qmWQ76c+6XZt7sWZU2S64HYItzDA9+ojD3
+lc9Wl89A2Kwt1wXPurUsMxxh3f8yVbZ6VgnBFxLEUFSRvaQZLfc=
+=RJCm
+-----END PGP SIGNATURE-----
diff --git a/repo/dists/jammy/main/binary-amd64/Packages b/repo/dists/jammy/main/binary-amd64/Packages
new file mode 100644
index 00000000..05f1676d
--- /dev/null
+++ b/repo/dists/jammy/main/binary-amd64/Packages
@@ -0,0 +1,15 @@
+Package: pivot-lang
+Version: 0.1.408
+Installed-Size: 162046
+Architecture: amd64
+Maintainer: Chronos <1769712655@qq.com>
+Depends: build-essential, git, libunwind-dev, libxml2
+Priority: standard
+Section: devel
+Filename: pool/main/p/pivot-lang/pivot-lang_0.1.408_amd64.deb
+Size: 47362738
+SHA256: 47dc26577a106154596f5de803863240ef72278dc45422adb5bb5c400ff0b674
+SHA1: 873efe185d7b4b9c93edbb9a443ae147d6d56bb5
+MD5sum: d2cc79d065786ec0e094a6059ead2877
+Description: pivot-lang compiler
+
diff --git a/repo/dists/jammy/main/binary-amd64/Packages.gz b/repo/dists/jammy/main/binary-amd64/Packages.gz
new file mode 100644
index 00000000..5d239780
Binary files /dev/null and b/repo/dists/jammy/main/binary-amd64/Packages.gz differ
diff --git a/repo/dists/jammy/main/binary-amd64/Release b/repo/dists/jammy/main/binary-amd64/Release
new file mode 100644
index 00000000..d34f0c6e
--- /dev/null
+++ b/repo/dists/jammy/main/binary-amd64/Release
@@ -0,0 +1,3 @@
+Component: main
+Architecture: amd64
+Description: Pivot-Studio/apt-repo
diff --git a/repo/pool/main/p/pivot-lang/pivot-lang_0.1.274_amd64.deb b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.274_amd64.deb
new file mode 100644
index 00000000..b80e39f7
Binary files /dev/null and b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.274_amd64.deb differ
diff --git a/repo/pool/main/p/pivot-lang/pivot-lang_0.1.408_amd64.deb b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.408_amd64.deb
new file mode 100644
index 00000000..d232b180
Binary files /dev/null and b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.408_amd64.deb differ