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..60dc3a19 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..1111daf4 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..c64948db 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..70432ad9 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..5cef4a9e --- /dev/null +++ b/repo/dists/focal/InRelease @@ -0,0 +1,36 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +Codename: focal +Date: Mon, 19 Feb 2024 01:35:38 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/s7Pb1ZUGRLLojcNrR7gFAmXSsGoACgkQRLLojcNr +R7iILQ//Ybmdu1WA3hK/8R02aisYHZnvjjuvIti18MFmrChxrMdkCJ852QXh0W51 +tQTl+LAteseCmEB+8ftFzZDQ/JPkRrlOuY72ydAD0I8n2B50WaZ0xQcjp57Xoy0O +9yi8znXFiKwnknPdYzs5O+7INTwr/JEaprJMo9oI923JbevGdcVgFreX/WMYn7Dj +q1SwSjXOpLKJLVsf0hotTS0JUymKER1mSa9BAgtglV/lOeKIjJ2XMRHzO4zUO+WD +AptnZoe35emhm6Y2kFSVLB/9nl7numKxPLHY58ZswOI0uRfWOUvZfPjkKtJlV/9T +W/gKkE9cMLNzgooO0cH6w7YQkflHr3v0wnVoTb6K1FFV6JJ+Ft0Rjh5qG7RFfpJ9 +7AsJzFdNr669kBp6XQlpehvnRPDSk+LB2RK6rrDuSR9DtyytZYiHPlIWuMqdGV3t +yy4giU2fNb/XE7Yy7sxUJ736ohv2PE1iYO8Y/fMqw3at9f7kPEyAKiWWqJHA6Mkr +Q4aZUe6L9XSVKbgZ7xtykJivXoSXaX0t74FKp7MMbjhkWw4cmbOFUi46w+AfSuHl +8vFyl+KWD8Sqijglw5FBfZ8vgoeIh9H7JoVccSotMT9jjU2NVvVW3VPowJ5X1R2D +Ln7WOppuXlE0F/evKEraLOT0midxHSmNBmX1OLzMJPFCbGZ4+mQ= +=i2Uz +-----END PGP SIGNATURE----- diff --git a/repo/dists/focal/Release b/repo/dists/focal/Release new file mode 100644 index 00000000..6569fa87 --- /dev/null +++ b/repo/dists/focal/Release @@ -0,0 +1,17 @@ +Codename: focal +Date: Mon, 19 Feb 2024 01:35:38 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..dc95e018 --- /dev/null +++ b/repo/dists/focal/Release.gpg @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmXSsGoACgkQRLLojcNr +R7g2uQ//dwNlZUrQ//2OgUhIj59QIMgVQ3iCfMOkBjneor/euhy2+m3iSJB0xrme +443x8JLPOSWwkViS/BByp20GYhT9TSFxHr2EhpIc+0jjICmJb+o8FO5URwl6nzcu +FHN4M5KrJq9fC//X4+gauOm+WS6BZ7NtUaz7no4RKJGmAbPYZlc3VfF8++zgO6Le +HytySVwg18Tgh6DRpQzKxcFV1N1oa88sXn+Hy+AASuCpiZW11e79iHGOnzHGHxe2 +V37GbZgaoThsYn0ww9Ckc6obX7grhQcYvALcr4z6Q4ht0CicJ4HpMdbMhes8B3OW +JV1zerYnimSRqQzxFG9Dxa9U5uI54DFFh9yE0SInMSO76LtbAjLfNwXtjQmJuJjP +EnwcqWNrwhSSwl0wI3yOqKNitGY+gM1o+3jk2/Jql0krzLoPCq98+fzLZCcJWBus +iumouQ3oKmuP1zIROKKGx69eDYnq8L9Z1vmm8AzOw8/7YYP0+URyWnA9KJ5vzp1Z +nu9B9YZvEeaDsbOCWCnYNLX7erWFp4ylCpGxfXAt4s6c2QpOs96syBXTlbyStObc +MT8Ziz21zzSJx7NbTR8h0DTnhJ8ZBAAfZhzUH2wOQIDrTT7fULfR+5ztSwuHmwkp +1CSyLs/NcYUE8EVmur7gDyd7ozMYjFgoPxWe4nMAApdzxf+s5/A= +=l0I3 +-----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..c1bc63c0 --- /dev/null +++ b/repo/dists/jammy/InRelease @@ -0,0 +1,36 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +Codename: jammy +Date: Mon, 19 Feb 2024 01:35:37 UTC +Architectures: amd64 +Components: main +Description: Pivot-Studio/apt-repo +MD5Sum: + cd61c56ffa8551254728328ef73cac47 480 main/binary-amd64/Packages + c435aae37133409058d9353baeceafc2 365 main/binary-amd64/Packages.gz + 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release +SHA1: + 5c3c2efe5c3e784e2d14710ea75abb8a51ac6b56 480 main/binary-amd64/Packages + 1dc71c363924d65966b4ba7d874e5ba700046a97 365 main/binary-amd64/Packages.gz + 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release +SHA256: + 75d2c53953ed6b5a3776c4661095a7cd373ced4f058df70a698723e0dd2f6c50 480 main/binary-amd64/Packages + 7f01b0f01786a546e28f87a4623f6a92eea32e214fac2adcc787cb28bef6e1b0 365 main/binary-amd64/Packages.gz + 3967193c3fbf544e052a066375dacb46d53cbeebe306ba8b043bc5daf5b74a0c 71 main/binary-amd64/Release +-----BEGIN PGP SIGNATURE----- + +iQIzBAEBCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmXSsGkACgkQRLLojcNr +R7jUlw//eUUJWCF427ybyqL/GWzu4RCaMqvaBJAgr/XE5YeJGJVdwMxQdG4xiQ/L +q4AnaVtgsZTor+OpETsIOsv0qX9ZYn5USsJuedmODX5N3F8ezwKwYZaezqqXiU/j +/865pJm5+SdZACFmtR4m9vrzJYuerlu7FXNNY9SlfCAbV+wtijtwxGUo/ow7Tj9L +1YzOUZ/I/cl0XZAhDmQOHLYTXhwODZhL4jTT9HPIm2bpvXoRLFi2L1gio5rP9LYM +gwNCsHD7qdeEv4qEKuoZbyWCt7VKV9nGZ7Yl/854Ur4gw6FvdIIzjo71zUOEQVLn +RnXMBrAAqF+8N6/i0ZOhPXB9bafAv4MrTQYL65yVmkXOGX8Ufzf/Fa21QA4/7HxF +rKMdUoTjaDhl94zXx0s3FrxAaqUyO4Aa9SsF9UGZplF8Xjs1QjX9LceVo6cTrf/G +hH/n1icNghQGDKVwYbYdb1Y4VgqCST4iQUSJlbwOII7tJCkmb81gkMVqLo00RA/B +NXXOCqlEUqhNQblLQ645L3aZkv7+iufB6p0rXwdzeNVAOCc8IiFmoWPWsSDNgUtX +v4iy0Cj1DOJgh51a5Xq29upQAbj9V4ZBbahFXW5DKIyEN8G4KIGfVz/qJjPHORr3 +ztR4SisljJIEA90ODw1zPuY/eMUe8NqVTsHsh3kSIyZvnRAQvS0= +=iZyt +-----END PGP SIGNATURE----- diff --git a/repo/dists/jammy/Release b/repo/dists/jammy/Release new file mode 100644 index 00000000..7c4a7b98 --- /dev/null +++ b/repo/dists/jammy/Release @@ -0,0 +1,17 @@ +Codename: jammy +Date: Mon, 19 Feb 2024 01:35:37 UTC +Architectures: amd64 +Components: main +Description: Pivot-Studio/apt-repo +MD5Sum: + cd61c56ffa8551254728328ef73cac47 480 main/binary-amd64/Packages + c435aae37133409058d9353baeceafc2 365 main/binary-amd64/Packages.gz + 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release +SHA1: + 5c3c2efe5c3e784e2d14710ea75abb8a51ac6b56 480 main/binary-amd64/Packages + 1dc71c363924d65966b4ba7d874e5ba700046a97 365 main/binary-amd64/Packages.gz + 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release +SHA256: + 75d2c53953ed6b5a3776c4661095a7cd373ced4f058df70a698723e0dd2f6c50 480 main/binary-amd64/Packages + 7f01b0f01786a546e28f87a4623f6a92eea32e214fac2adcc787cb28bef6e1b0 365 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..c057f2ee --- /dev/null +++ b/repo/dists/jammy/Release.gpg @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmXSsGkACgkQRLLojcNr +R7j3EBAApnYhaDMoa7B6W8Ap3m6h625Z90NraVRZd+pwSvznI9mWZRJgA1B7zpWj +XO+vMLR7CPteqxEuPG+sfn5j+qXv87ibMrJaHitLfxjauoc6wpfz7Rt9VTorwiPR +cb3oXvYBA89wSk6HGfdeGxd3AfmJCn+d1cod0qEpC2tEiES6l6Kb9qKNEYiyLMN7 +Av4oqKVjfinlhVurWM9y6cHjaGBFLSFfh5wC4+F7RcSgt3qveLOh0epDWAVXlJPx +TChdpwEySjnXMT/phcjD4H+iJJL+Bsr+mQLhJaUXvmgxjS/Yd4zpo8SOJ1JVJD69 +ryy/zDhEygANhPsYYyVpWKID1VDXjwwpPRe8e+XrweLztXnBGtoUP2CrBS5EqXmY +Dh4TkDf5xmrtynA9T9xS1Nsg1g0vDchK9jRj9z8hfdGIOyY5CMooE1aIgO20D9Oy +iMq8FJZOMzprA7LB4hCJNFJ5VivzhA9IWq9JQhb/w89MiWeGVWFWrrTJ3qP1nFFd +xkvkvrc8Wt0u/QBjCMXS+vJ49yyJvlnE/r55i8kFuUCfLuh/OQDTceZxPwAT7wMU +V9HsfPyvZ2GPaOubDgzDsKmAhhQepJWW3gHB6mHhLQSdCM7N8wOM+U7Kfhtk3cnT +9EQqQlP0i+8onKqy3m7dG5DwcQPCGJ1oZGjosO98lBldCstHWGQ= +=sWlq +-----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..abc969bb --- /dev/null +++ b/repo/dists/jammy/main/binary-amd64/Packages @@ -0,0 +1,15 @@ +Package: pivot-lang +Version: 0.1.430 +Installed-Size: 139700 +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.430_amd64.deb +Size: 40826050 +SHA256: ff107c68a635b85d5e8839869299ec988f440746871d4bbf859cc13d991cfcd3 +SHA1: 6bfba9f61d4bab9d60ae7fb06b5512b33cc79191 +MD5sum: 5a9b3c5f592e1a49b19f0f1a3c678aa2 +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..5973b480 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.430_amd64.deb b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.430_amd64.deb new file mode 100644 index 00000000..815f4f71 Binary files /dev/null and b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.430_amd64.deb differ