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..ac37937c 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..cddb2a08 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..b54fe66e 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..397c4daf 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..259c74b5 --- /dev/null +++ b/repo/dists/focal/InRelease @@ -0,0 +1,36 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +Codename: focal +Date: Fri, 14 Jun 2024 08:46:23 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/s7Pb1ZUGRLLojcNrR7gFAmZsA18ACgkQRLLojcNr +R7gGghAAgPgTZO8zJnjbqMBvbvYViJd6N0CfsjPpvlVaQJi7NIqmv9/kTL285UUX +uYjozZ+dDp+wDg4jjVkgy6iKQd8AJR68zkoKeKk8bjjtgu8Rh9ARBge2cAkvxCKm +QiMZeG5x3yN+lHoXi7USmzjZzIGGYEwp9X74GcldsrBPtcmljV+XrYyS5+RXUao1 +uxgOqSrf3dNKJla0gZM4XVxx6Y1zmflaweYF2t6GbVRbg15yNq7GfOD7i3TVglKm +sb+P6O42iYHehUDOu5QbxJIFwwQR6OWM+AiyQIIXo8yODzsQYjgD8ghbvAJZJ5PZ +RxBpwDWBDYxCjDiIrb5i1898qb8WclZ1oWTxv0GFotB0hD/uo+K3/agdjCBzViU+ +KYAd/GJWMo6KhsIyqbHTkH7Cq1Hvcu4Goa8OJC8HOpw9awozkV1D7ZSTEIHsjzyB +cPntoEpH67isdEAPwYu23dLUer96d+2g8VAPWZJcGJuG44yVFJCvfwt/vbgCBscr +Z+Ndo8eUi7pKvV3DAxK2T+t+84k+/RfFp/eWDUtDcwJL/LZTtYTzh6tgJsrm2cuc +71yoM+da3FWDigrBU/9y4q/6nnaURrZG3slTuaK7GQjJ3EjCPJjVdnTUjvNy2wKz +Wuct5gHMvSy3XaJrE+v5nZbG+TqkJeB1MSlkO5eXsh6pigiYcxw= +=K4yR +-----END PGP SIGNATURE----- diff --git a/repo/dists/focal/Release b/repo/dists/focal/Release new file mode 100644 index 00000000..b1368970 --- /dev/null +++ b/repo/dists/focal/Release @@ -0,0 +1,17 @@ +Codename: focal +Date: Fri, 14 Jun 2024 08:46:23 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..f9a90d09 --- /dev/null +++ b/repo/dists/focal/Release.gpg @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmZsA18ACgkQRLLojcNr +R7jOqhAAm57rcEArdCpum1MwvJiiGeMC84Hi8iPj+LsOH89cu9+AosuevWeAHhR7 +F9R3LvFcnixurwlsonD1fcPxTuQxiaEDQA8pu6qI4MwjK0VkuJzGCT+U4nN3yCij +MWVi5LBuLW2ko5l1DwALrmerRkSCoQT3+RMAWjAA8y22mlj0P6x34rm4hCsM0HV7 +ciunpAb2sFSPBF18w1M5Yn+9QRM7pFPUowTgs1BP3Cm0FfgsNWyExUNIhiz7L+PP +lfNbi21ljwqtOK6DzC3r+UnNtrtvsoSjF3wOYX4Wa+6nZUBan+ZX1tAfRMzCS+6r +Xmp1CsteibqhX1dMZG57Oiecnm8TBxfFVPcgv155eBLmU5Fezpcv++V1baG46rtk +Z3bXI4ijos8j6dO/jtNfjtF87j74nI9lfWmNK0MM7LrR7YCq3VqLRcfB0aZIxIqr +pVVgTjo8dZoCCXKgiUpR1W4DHWC7Z72bocRlIGSXkSD11u5ut3Dd2Y9FBH2dq5xj +TD08TyKQiq1kbPA78CcdEG4bus1S6Q96Yh+8r/72bC/Gs0nGSPMK/ALTx44D0lYP +aY6ujXRUSFV/wvZZRZDjnjTbvh1ZdARBaoZmt44AjgocqnFxCIF5GIhZpZrRBUl1 +ejGWxr466kLlANR9j8mWsaQeHGuEwWhza0hZu6GMBSj7HkkpQ4g= +=NZRH +-----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..4351949b --- /dev/null +++ b/repo/dists/jammy/InRelease @@ -0,0 +1,36 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA512 + +Codename: jammy +Date: Fri, 14 Jun 2024 08:46:22 UTC +Architectures: amd64 +Components: main +Description: Pivot-Studio/apt-repo +MD5Sum: + a3546297e6381f9c4d1afc3c668dffe2 480 main/binary-amd64/Packages + 58609a3e2140ff9b0576bd98e35a785c 363 main/binary-amd64/Packages.gz + 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release +SHA1: + c4fd4407e15c35f91b652ffebf39bfc8e2ae21b0 480 main/binary-amd64/Packages + e8e98d251949080925ff9fb49059fb9623e73259 363 main/binary-amd64/Packages.gz + 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release +SHA256: + 495f5e91ccaf4c36f6102401ca6611727c69dc4c395fc70e4d7cd9f84e896a53 480 main/binary-amd64/Packages + 4d8dbe7a1609054203b1496d2bace390c1fcb1d4314753fb9b7ee2c76d77532f 363 main/binary-amd64/Packages.gz + 3967193c3fbf544e052a066375dacb46d53cbeebe306ba8b043bc5daf5b74a0c 71 main/binary-amd64/Release +-----BEGIN PGP SIGNATURE----- + +iQIzBAEBCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmZsA14ACgkQRLLojcNr +R7jcdRAAm//JPlvr6ktk5zJKHcZovDkQyWu4SgynLKgQGfWrfzTeFhfOK428/WjQ +xndCPNKiT0xb2cI3VAYGxfJIl8t5xkYPdj214edzRZnrfGlqJ5chXS6M3JuaTsxJ +STz37QFVN8GNHZbFmiSU8RKebE1hLafijDcBy7nvvR36+BsZt9J7uR2/4xxtpRa+ +sG9E3CI+QoxOtQrKZ7zxGMFvzsM4mKx5gE9kOFLn/L2BPAHzHX1pxyKmkcVVy2np +g6NQzRL5TsDlVGLQMF/TYgLe+npjvlYmRECW2rnmVbwHx5WBFII8P7QtUNEDVhWZ +NxjsBp5U5QFoxC2WBMR2sHQg0y31E6QlZei6lQ2u/lLe8FweEbUJNLLpoUG3m0Cc +jjOIgJCubevKyXVbLwouzh3OgPrR519Cgo0Io/NRpPyB50xdY9aR/8glukUjd0GQ +NJinXEcPIyio6MXZqtEowbVPfBG2e2t7oeo/wIGBMgv5u4EKkx7gp+OyjA6Co+Pi +aOQMMRzBaZS4MuAaex57udBWX5FqOKU7+e62xdbNLWoBvL1WwchOvFtX/KsGCtq2 +f9niSHHbwyhkjlt+x4nkdEwY8mGl6Qtz6QCouVx63IfPHyRmOjxPEcHW+hRjv+Mn +rZhqx0iko1snd+V9EJKawWN4LostlYvrfYRZL7/ia0ICye7ckGU= +=dAWE +-----END PGP SIGNATURE----- diff --git a/repo/dists/jammy/Release b/repo/dists/jammy/Release new file mode 100644 index 00000000..70aca150 --- /dev/null +++ b/repo/dists/jammy/Release @@ -0,0 +1,17 @@ +Codename: jammy +Date: Fri, 14 Jun 2024 08:46:22 UTC +Architectures: amd64 +Components: main +Description: Pivot-Studio/apt-repo +MD5Sum: + a3546297e6381f9c4d1afc3c668dffe2 480 main/binary-amd64/Packages + 58609a3e2140ff9b0576bd98e35a785c 363 main/binary-amd64/Packages.gz + 98784b674b6015062d3ab04da0389e3a 71 main/binary-amd64/Release +SHA1: + c4fd4407e15c35f91b652ffebf39bfc8e2ae21b0 480 main/binary-amd64/Packages + e8e98d251949080925ff9fb49059fb9623e73259 363 main/binary-amd64/Packages.gz + 38ba2c905b5309dde6be09bcbfd3c6b464a05946 71 main/binary-amd64/Release +SHA256: + 495f5e91ccaf4c36f6102401ca6611727c69dc4c395fc70e4d7cd9f84e896a53 480 main/binary-amd64/Packages + 4d8dbe7a1609054203b1496d2bace390c1fcb1d4314753fb9b7ee2c76d77532f 363 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..55e237ae --- /dev/null +++ b/repo/dists/jammy/Release.gpg @@ -0,0 +1,16 @@ +-----BEGIN PGP SIGNATURE----- + +iQIzBAABCgAdFiEE2w4J9Gm/s7Pb1ZUGRLLojcNrR7gFAmZsA14ACgkQRLLojcNr +R7i1sg//SRTor2Fuipk2WKsZuUihBjqx35qPA19FpqXqeNkt5qZeJ2c82GyWaAyU +8H2cavH3VcgZCd0ricS0/JBpPM6AtAOHm0TrDaWtqUO0Iw7i+FgoNDo2WTCOcnJl +kKCbt7Lgqkl5pcuMrdcyTGB5t1GNZlfyuRcTsdUmsb1qanq80urNo2DyCZFru+08 +xTUe3IFX3k31ea77BLdpfANpQ3BDejQzw2xz38Ks3h/G9DBlZHDp6NsEhqhTzSXr +jk1ayCdfIN9m6/XqJFBTp5l1QTIqP+hBKiXtFunp53bRtm6rungerI+HjxA7pTVh +shPCuFOaLUIyYziARI3ogXWUbAU4HI+/Pvj+HvFTMjQUpfMuSs8f1KM7fIliiSWb +98EqaQgVVNqu48v9OEpgvn2RgyNiUBM/E4IMHuRWE0w6i6fsh7B+yyOTLw09iust ++FMvXjo/SmW8RlZbxBhPn9BIwwD4xF511P0jZcByHwIBNqyzRcOfbxIas2GqhyVD +FbQuy/9w4Hrn4MGtvPKyX8p204+fgVsI/WhG48vys9J7424N1HH+T2a9qgcE1RH0 +UBP6JhHztePVAjfZe/fAtogGA+nYsz+RL1BfcbohA4poZSTW1jgLEReXmA0Y10Lh +LgDicoeDHr0mmYRoxEp/9g7Y8SpAizHkDLQdVkyGYtdfSD9CFX8= +=g++k +-----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..38103c0c --- /dev/null +++ b/repo/dists/jammy/main/binary-amd64/Packages @@ -0,0 +1,15 @@ +Package: pivot-lang +Version: 0.1.458 +Installed-Size: 234662 +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.458_amd64.deb +Size: 66978200 +SHA256: 653b3b61ca41622f9e60f5bf22c9b9e6bad688a7eabd6db0fff9fc019c66e67c +SHA1: 439fc03095a2e5674a735513e9df2f357eb165bc +MD5sum: 559a046255267ebba82b7f48cea8c46e +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..ae14bdd8 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.458_amd64.deb b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.458_amd64.deb new file mode 100644 index 00000000..51d8f078 Binary files /dev/null and b/repo/pool/main/p/pivot-lang/pivot-lang_0.1.458_amd64.deb differ