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..31eedf2a 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..5719336c 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..8bd36582 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..c9843505 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..062856f9 --- /dev/null +++ b/repo/dists/focal/InRelease @@ -0,0 +1,36 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +Codename: focal +Date: Tue, 30 Apr 2024 13:15:02 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/s7Pb1ZUGRLLojcNrR7gFAmYw7tYACgkQRLLojcNr +R7gWWA//U1yLixLFqdAcwKmOHbExr+xgFT96X+p1eVJaSaBRotIXMN3OlREDxHbC +fh/et5FjPY9hIhXUaZ4u+G+2jMAjkF2OVj/1jfTHySOEIKrT51I41CKqleRaf4Et +Y8GSg/ZuvdZGyREweXa/wxfzdTMUAt8ewJbkb0aWLMEyQi+iOnUVXh6jdF/0yYhd +p6HMkh+U+AJ4P74XJtzljH0soaBR/JWyPAwA4cpvU/NpRN226ekFrgogCHdZME/f +nYrg7xLC1hTcza1QK54v1SnbYT/37ri8+yfp2ohTp56CNB0fbSaDLlGvqJ5avLtV +XugPaoovFGyRMYkjF5kroqGXKIWqA0khuWWJq+jcYHUqrm99JfhhCjRjmc0K9BAl +p5jeb7d0/l5V0EUhOjUojTH8vy8N5mf7s4jbsy339dSMv3lA9x/zwrsikysrOA23 +LKpkUrm6mlYwIJIVNbI+X9N8vByDY1OyOBaSfY7su6WZqPRe/qiF+wokK4N5lvyW +iJQbF+VySpoLxFCOwKGWBqqj8utKINLqVaSy2WE9CT95AtjfPP+uPlOWhboDJtgy +Lo0QoTqrrJkch9KeZKoXOVl8jfD68dOBMgJP/z35pnDJJeHTP1qrURyujX4UQ0QR +D+rraXB6Pgqd4yo3CNdIXZaSrfOS9AAhAmgF6dQWKv0wyyqiSms= +=ALnN +-----END PGP SIGNATURE----- diff --git a/repo/dists/focal/Release b/repo/dists/focal/Release new file mode 100644 index 00000000..f91342ca --- /dev/null +++ b/repo/dists/focal/Release @@ -0,0 +1,17 @@ +Codename: focal +Date: Tue, 30 Apr 2024 13:15:02 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..bfa011e7 --- /dev/null +++ b/repo/dists/focal/Release.gpg @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmYw7tYACgkQRLLojcNr +R7jnrRAApJOMR6ii8qu19C4j2SJxBfsSdtegAUMgSDuNPK8TyXCIvhJ5IqX+i3Jk +3RN26w+Tx16DuWj8d+zgXSmyrrVwgPuslHHIaFdkN5cA+DfW4dBHBG9QzTiWbi1O +3B+JM6QB11n7bbkeESC5Ri+9CwN5J/IEa2RLnKqw6qw0w4VWZTjRu0C0qavoyOAT +L7bg4tx0cKpKAmPep+Yb75Ft6mQ+Km8dFeBQBQVF5trjEFKsjyQXks05jyyi8hUq +8+57M/0auidqVhm69ho3nfOMV1cVN+1ZsqNKcksc0yStt3EFHv7LwsY4vHeWdHA7 +DOvepjF2Gu2q5nQPXG2Wfrwa7ZLG80PxjZ7DiZ9u5p+mYwjDIdWfoSeDH8iCcvLW +eot3Vm5NlCLBlPZ/6ouMzlIcjiJWMqZe7YXkys7Vszx3hoMjcLXxvYCCfY8Sy2Rp +cch+Jfp3dD1Eg9yt+Bz4oRoa7UwMWCDjc+Zs8KWEUHQNe0H+5Ha3tsG3moWuV+AP +Wfut76uHfRKkpWEp3XuzO0nbaaq+/ZKu5i38LIZ14ZRMpYAhZcHit48B5INqMJq0 +8Tceh2qVCj1xIiIPmZAs9wThrPJjsq3+aLEXFwUjFzt4yN+7N1/CFdsDuoUrCSxB +ZKPypZ+lHhAqA1K8ipmO9hT4CY+YBetrRrmDiOABeB/8EoWCiUQ= +=wmyQ +-----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..2791ed2d --- /dev/null +++ b/repo/dists/jammy/InRelease @@ -0,0 +1,36 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +Codename: jammy +Date: Tue, 30 Apr 2024 13:15:01 UTC +Architectures: amd64 +Components: main +Description: Pivot-Studio/apt-repo +MD5Sum: + 9dbb8005f5a30c41c94dce2a2c195eba 480 main/binary-amd64/Packages + 5bfe398fb7a9d793675ce8e8990ffd34 359 main/binary-amd64/Packages.gz + 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release +SHA1: + 2af5d25cd442496f2731583b0b42d7a731cc4d96 480 main/binary-amd64/Packages + 77682d01ed1e3690950a16762405a787fc7e98bb 359 main/binary-amd64/Packages.gz + 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release +SHA256: + 59872ff5f2e88279f6d37ab246aaf278b3153eca81eaa1fb7d63745d78aac37d 480 main/binary-amd64/Packages + e3815fe6019f340ce5c4756ecd657e576dd7e0a46a41a4b32d83eed7dab81204 359 main/binary-amd64/Packages.gz + 3967193c3fbf544e052a066375dacb46d53cbeebe306ba8b043bc5daf5b74a0c 71 main/binary-amd64/Release +-----BEGIN PGP SIGNATURE----- + +iQIzBAEBCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmYw7tYACgkQRLLojcNr +R7gt9w//RSEEI8dEg2dyHkVh1RCGD+2Sg1fbk0qnKIQnHDqLwsY4FP/WWkpCH4uc +2b1523+rcplkypgotLHKimINBqTDUwkdNHReb1W1nh5IJrEgYc5HZ6wvTzqe/L+a +HuIU+QFd4cSi9sdN8cm6r1U/LM8N7F0ZAxbNBRwAeV+bdqhV1rYypFL2enaTD+eD +svNBx2WFm0IeDtpToBDYDP1KhvX5BkGA/kczXTGmL46y1qk9FSOu7ebFah40QMET +lXdGvNOPPn6rQWIAzGtYxn4EGLTYIWAjJ191DRSrn8p+0xXXXrFO3JqcgluhIbeN +xceRcu3mPa+dTBDebK2RYkG5zNisyko+xPjjnRjG+OV2zhWnQT5MPdBVtFkU4tjh +tqOHLAQM99dDP0F2VoosE1kWK808QyTIgH4KOtgRvN6oHUiArsmmb8NyriPj6des +MmDk5t75SJGPdcF0ZndkwaSxYzVdfaIj+cRwvUzRYsvk0mB/YtpguPD4HqGe8tvd +LSzkWqFYfWyWkTA1FqDcIwuPFNmPVnZiIDXKnw4NihUOasz+74K6TyrRttto5mQc +K8i3yvFhyvZR04pQTzMtLPaZF9KloASdl5B/M1Q2MEXRdBrc+xHD8PxvUCdics96 +f2b5huHP8wnrfEhJy5RZBLxdFIeFkeZ23mlzMiv0WUxLCtksloo= +=RNfe +-----END PGP SIGNATURE----- diff --git a/repo/dists/jammy/Release b/repo/dists/jammy/Release new file mode 100644 index 00000000..241d07d6 --- /dev/null +++ b/repo/dists/jammy/Release @@ -0,0 +1,17 @@ +Codename: jammy +Date: Tue, 30 Apr 2024 13:15:01 UTC +Architectures: amd64 +Components: main +Description: Pivot-Studio/apt-repo +MD5Sum: + 9dbb8005f5a30c41c94dce2a2c195eba 480 main/binary-amd64/Packages + 5bfe398fb7a9d793675ce8e8990ffd34 359 main/binary-amd64/Packages.gz + 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release +SHA1: + 2af5d25cd442496f2731583b0b42d7a731cc4d96 480 main/binary-amd64/Packages + 77682d01ed1e3690950a16762405a787fc7e98bb 359 main/binary-amd64/Packages.gz + 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release +SHA256: + 59872ff5f2e88279f6d37ab246aaf278b3153eca81eaa1fb7d63745d78aac37d 480 main/binary-amd64/Packages + e3815fe6019f340ce5c4756ecd657e576dd7e0a46a41a4b32d83eed7dab81204 359 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..f98a87d9 --- /dev/null +++ b/repo/dists/jammy/Release.gpg @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmYw7tUACgkQRLLojcNr +R7hedRAAowKSqtVVdD9TXA02iOt5PsNny+ql6LIrZoDAbR+C/rrgPuZPttNQBslS +lK19o7zfCbUZ+nzvQRzLOemnU/Y3S5TuGnpwOsgawW3euwLFZoYpjpSuVeKu2ekS +hBQE183pOhQE/Oq39W82FMJdpxnXa5C6idui1ST0y+bzeR+p1nAACq3FfbUU9BwZ +BPMjedt8VrpR5pxhyBM/aBTx+eSZ21XmltOlViu6VMjXEMfoJlgihP9+ZkBDNDdK +o2mcjAlCGZWvv9TZpFjgDLsqSpxi/5zhh+d3dTLyLlQB/aK053Jk8Cs6+MQd9JRv +uo4UowHouUigysrI9UTJf6aAcrD+QociQYt6+th/PUJIIOCe0gl/3OV6taj/T2zt +pT7tpgNJZjTKFAySmMWY4jOKwiP4EbWCVcnS4zpz/R5ERUZQ0Xvc+XpzSeZUaUzB +E4VTYFPw2720Knj5CAlGEefK+9fQEiNvDxaSUNBYUGA2UxaP4B6kaDfd/i1xM4P4 +4xap+911cIrt1dwwbHuz/yuiSe7u+iB0oFdYJt9k/oWuSqR9R5rOWAFe/tBVXDLd +aVZr32qvanQY4Aas/WmwfHXs3B7cW6m8Ee/UncYa7aSIDP1QJaJE8G5efh6Yf7+n +GtmXLQohdrHJhKjbReBp2CFs7VoUql4ciSM6q62c938lxRnLzuo= +=mwMy +-----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..030754fe --- /dev/null +++ b/repo/dists/jammy/main/binary-amd64/Packages @@ -0,0 +1,15 @@ +Package: pivot-lang +Version: 0.1.448 +Installed-Size: 236348 +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.448_amd64.deb +Size: 67163678 +SHA256: 230ca4a39d4f38ba2290808ee94bbf41421a722ddbaf94b07f5ab0cddd99beef +SHA1: 434f09544621935fb2c521b67bcc23f71ecf04f5 +MD5sum: ec6762664f376eae6805e092b3d4791b +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..504694dc 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.448_amd64.deb b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.448_amd64.deb new file mode 100644 index 00000000..bd344834 Binary files /dev/null and b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.448_amd64.deb differ