diff --git a/app-admin/1password/1password-8.10.33.ebuild b/app-admin/1password/1password-8.10.33.ebuild new file mode 100644 index 0000000..d9d1d4e --- /dev/null +++ b/app-admin/1password/1password-8.10.33.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 +# shellcheck shell=bash + +EAPI=8 + +inherit desktop xdg + +DESCRIPTION="Password Manager" +HOMEPAGE="https://1password.com" +SRC_URI=" + amd64? ( https://downloads.1password.com/linux/tar/stable/x86_64/${PN}-${PV}.x64.tar.gz -> ${P}-amd64.tar.gz ) + arm64? ( https://downloads.1password.com/linux/tar/stable/aarch64/${PN}-${PV}.arm64.tar.gz -> ${P}-arm64.tar.gz )" + +LICENSE="all-rights-reserved" +KEYWORDS="amd64 arm64" +IUSE="policykit cli" +DEPEND=" +x11-misc/xdg-utils +acct-group/onepassword +policykit? ( sys-auth/polkit ) +cli? ( app-admin/op-cli-bin ) +" +RDEPEND="${DEPEND}" +SLOT="0" + +RESTRICT="bindist mirror strip" + +QA_PREBUILT="usr/bin/${MY_PN}" + +S="${WORKDIR}" + +src_prepare() { + default + xdg_environment_reset +} + +src_install() { + mkdir -p "${D}/opt/1Password/" + cp -ar "${S}/${PN}-"**"/"* "${D}/opt/1Password/" || die "Install failed!" + + # Fill in policy kit file with a list of (the first 10) human users of + # the system. + mkdir -p "${D}/usr/share/polkit-1/actions/" + export POLICY_OWNERS + POLICY_OWNERS="$(cut -d: -f1,3 /etc/passwd | grep -E ':[0-9]{4}$' | cut -d: -f1 | head -n 10 | sed 's/^/unix-user:/' | tr '\n' ' ')" + eval "cat <"${D}/usr/share/polkit-1/actions/com.1password.1Password.policy" + chmod 644 "${D}/usr/share/polkit-1/actions/com.1password.1Password.policy" + + dosym /opt/1Password/1password /usr/bin/1password + dosym /opt/1Password/op-ssh-sign /usr/bin/op-ssh-sign + + make_desktop_entry "${PN}" "1Password" "${PN}" "Office;Utility;" + newicon "${D}/opt/1Password/resources/icons/hicolor/512x512/apps/1password.png" "${PN}.png" + + dodoc "${D}/opt/1Password/resources/custom_allowed_browsers" +} + +pkg_postinst() { + # chrome-sandbox requires the setuid bit to be specifically set. + # See https://github.com/electron/electron/issues/17972 + chmod 4755 /opt/1Password/chrome-sandbox + + # This gives no extra permissions to the binary. It only hardens it against environmental tampering. + chgrp onepassword /opt/1Password/1Password-BrowserSupport + chmod g+s /opt/1Password/1Password-BrowserSupport + + xdg_pkg_postinst +} + +pkg_postrm() { + xdg_icon_cache_update + xdg_desktop_database_update + xdg_mimeinfo_database_update +} diff --git a/app-admin/1password/Manifest b/app-admin/1password/Manifest index b266b53..8d6eca5 100644 --- a/app-admin/1password/Manifest +++ b/app-admin/1password/Manifest @@ -2,3 +2,5 @@ DIST 1password-8.10.30-amd64.tar.gz 213492492 BLAKE2B 569a2e380c5d387e88c0246125 DIST 1password-8.10.30-arm64.tar.gz 212922226 BLAKE2B 9b88908d7725ee7eaa4eef406746e4b181f575f68328c18175f64c4b22ad53f167fe2055399fad38ff50fc9686f18b181b54690a00e97c0b5b528c992f9b30a6 SHA512 5629b0d55c23ab5f1a9574e84cbd8a3c5ec653606f8bd1a98342838fd6ecc760008856a6c53191c3dda8f165129f0ccc88d0a14f6564ce6d0b5900a64535abdf DIST 1password-8.10.32-amd64.tar.gz 189228527 BLAKE2B 59b9ec0ecdb77e65d7ba77dfc5f75053c15afc52ee7a521b777dafdf44d352cd121ed7fcb71014eb94397e9e2777f2f0d49a06a63a9d551d2c9af460119b78b2 SHA512 3277295ef8fa4dbf98531526fe41a32a6d11cfa855c6e73fe5e2f4ca36a8529f9c5a71ae269662d5143e4b8a413291c8351a79bb8de3c693869dcf3f79b19382 DIST 1password-8.10.32-arm64.tar.gz 187943559 BLAKE2B 2416791f01abbb8d6a93c3f6ec4c14661616ac318fea950fe9d00f9f78f6324a2b954a135ebd27b157bac3737b3249d64ef1b1187f8bdfad0b50444e81cadd68 SHA512 3dbe2d769f081f130c58e19c4a24f1909745d199936027064bdad74891bd6f6f9eb67f883ffad1e4ae17acb8cb64ae036f2451809d853a68d0e58eb6c081d820 +DIST 1password-8.10.33-amd64.tar.gz 189241259 BLAKE2B 27a302985ec984afc33825acde8d36dcdcbdb4938e02956475db6e909e4655df448c46bdd960c20bcc74aa83b9a6709a8d466938982f55fbccf8b11d6ab9f49f SHA512 14ced4e4e03b407566fe8a4d981f50e8e935bcd89620b882a8fa2a998e9003466c2609e93abe7a4693a7c48bee677d7d36dc630222a67298d53efb2b8e2c9661 +DIST 1password-8.10.33-arm64.tar.gz 187956191 BLAKE2B 6519282a889899e120c4a6201dadd964a2d84883bb580d25acfd6b795a240059e623550b396254e2f1aac4395bd80bf2122d121ca4ba067eb82b7fcf61963c14 SHA512 02b72657bf7ca382ccaa2acb5bc283cdf65cd836cea66fcef0b90dcb3c38ecd403d6f70db6ab4bec0da821669f38939494c86736991e8cce73f3f4395520d0b7 diff --git a/app-admin/google-cloud-cli-bin/Manifest b/app-admin/google-cloud-cli-bin/Manifest index 986d898..3f18a6e 100644 --- a/app-admin/google-cloud-cli-bin/Manifest +++ b/app-admin/google-cloud-cli-bin/Manifest @@ -1,2 +1,4 @@ DIST google-cloud-cli-476.0.0-linux-arm.tar.gz 51816659 BLAKE2B 5cf40e22123d0371c5b64928f049383ac763cc88a7108491643ca3041c38087f453265503fb30b1a76e898d972062b853ec107166753cee74bce87694c0f546d SHA512 8903ea2ab8de05e9c8514686b3f92cd38ab470177b91b737603fabbf676e300f8dd49903a181b85223c5fa652b438042c9e1b1eb16bc13709a94deb5fd240366 DIST google-cloud-cli-476.0.0-linux-x86_64.tar.gz 130300566 BLAKE2B b5b8d21fb72edb6e9b22cabe9565a91df790686695f9a05d3d14f1cc94582e639e16d3ceae1df8ba556fba0cce6fe962cca258803e2b72b3a9ef33a7cd2c7234 SHA512 fb26cd6e05f8f40b3c5ab8e78a5d212a5418ace0e6914ad0ebe0c9cf91392acdd47796f208718370a6d2776706ea6c90c4ce81e1c29fa9d9a252d1d0cd7ed586 +DIST google-cloud-cli-477.0.0-linux-arm.tar.gz 51815021 BLAKE2B b44a1da3be7bbc057c21a0392e0bf11b0257c8c1c2d2279c9a2fd0c15ffa707367f3161aec14c46de9898530b941320df951fee0455cdc67712a004b6aa16ba7 SHA512 75486dddb48271096a3aec3388c138acb39a29422d082341864c2c0fcc712392ca0dd6e0557774a2c1722c79a6669450389a4688390ff979f921f55d0f1b8786 +DIST google-cloud-cli-477.0.0-linux-x86_64.tar.gz 130293486 BLAKE2B 07e1f9587f7c3af28644f548661ace6e3b3aeb8e3d688af9f9e46e4265a0608f468978f3ee969033979e59a4680d8cd8193a3c7a9ec5c05cbcd8baf5753b46c7 SHA512 dff93ace55f107bd572e8c426c0033055258f9d389b42b4af650475731216cc1b479af073f062065eb65a370efdb25169d9e64dcdce038a570e83e3fd91072e4 diff --git a/app-admin/google-cloud-cli-bin/google-cloud-cli-bin-477.0.0.ebuild b/app-admin/google-cloud-cli-bin/google-cloud-cli-bin-477.0.0.ebuild new file mode 100644 index 0000000..d348658 --- /dev/null +++ b/app-admin/google-cloud-cli-bin/google-cloud-cli-bin-477.0.0.ebuild @@ -0,0 +1,33 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Interact with the Google Cloud Platform" +HOMEPAGE="https://cloud.google.com/cli" +SITE="https://dl.google.com/dl/cloudsdk/channels/rapid/downloads" +SRC_URI=" +amd64? ( ${SITE}/google-cloud-cli-${PV}-linux-x86_64.tar.gz ) +arm64? ( ${SITE}/google-cloud-cli-${PV}-linux-arm.tar.gz ) +" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="amd64 arm64 arm" + +QA_PREBUILT=" +google-cloud-sdk/bin/anothoscli +google-cloud-sdk/bin/gcloud-crc32c +" +RESTRICT="bindist mirror" +S="${WORKDIR}" + +src_install() { + mkdir -p "${D}/opt/google-cloud-sdk" + cp -r "${S}/google-cloud-sdk/"* "${D}/opt/google-cloud-sdk" || die "Install failed!" + dosym /opt/google-cloud-sdk/bin/gcloud /usr/bin/gcloud + dosym /opt/google-cloud-sdk/bin/gsutil /usr/bin/gsutil + + chmod 4755 /opt/google-cloud-sdk/bin/gsutil + chmod 4755 /opt/google-cloud-sdk/bin/gcloud +} diff --git a/app-admin/op-cli-bin/Manifest b/app-admin/op-cli-bin/Manifest index 2318066..301980e 100644 --- a/app-admin/op-cli-bin/Manifest +++ b/app-admin/op-cli-bin/Manifest @@ -1,4 +1,8 @@ DIST op_linux_386_v2.28.0.zip 8029102 BLAKE2B 7b1abe866fc82c1fab5f40f2a1669ea0afdea01bda6de3c66a0fb2a3412471f8208b025412c863eb7d7088719b1faca660b4ae7929eb3d38e63ac1ce3a66607b SHA512 2fe09ecb56a57b9543ef819d581e2b12e8fbdae286bd66d62702d14aefc243269fa37614ad80bdf673c83b617ad2cca24999910e19b63e71152badd156ce32c7 +DIST op_linux_386_v2.29.0.zip 8038626 BLAKE2B 2907e40bcfefeddb234d193c575980e676832e5b10f1f0127ba77c3b5549b76c633f843496a2825118d57886792f7a958836025106665329d529a9549fa21995 SHA512 18e6182ef8e9a2edc0dc705ca2d91f3c121dd378eca978cecaca29ea2ede9fb3a6ad0370d35d263d19afae071bf595bd46c54e3c5c04d715ca08353f9ea913b9 DIST op_linux_amd64_v2.28.0.zip 8562424 BLAKE2B c0c20eca3498dbd44d45efd99b4211b26626888d7ac8a07c61470c2fd53b32a97cc776fe84844308a9e1241fed2de78fbd96de2098d5b1ab2d3c3617059ed8ca SHA512 cc00b3dfb0a88b9d868c8c853046121b7bb492691e032155ec741d605e2a44afb8b64cc4096173ef3c22561796a24c138434ddcf533a2fc96416ded5fc9fb962 +DIST op_linux_amd64_v2.29.0.zip 8571049 BLAKE2B 59d02221294f856a0df31fbd0295c2f013b88e0b923a31d431ac7a32b4786f8fd8eddb1e73b50a6334eb53dba584b73f83c9d3102a803da336103f581fddec17 SHA512 899bb2555ae3e65e00873aa4c27e29473b989c23e06b41c27e97c12230893e1d94ca00729daec564f916d23aea31f8bf95d29aac0832153365c0f81c92890224 DIST op_linux_arm64_v2.28.0.zip 7862033 BLAKE2B f59b6ac66cbdbbecdb1f56cbadb351bf454ad5880fd587488758b98beaad4f1c0922b43829aeb23e7d9ec74f84ba2dfb22fcbf39dd5c36874946976a01619939 SHA512 677f4ad28cb9970a05b7b0e5a9f61eb56ddc4475a8c0986f1719cf7764871542f90af3f1ea4702e9b9bca913a9f707303ffdcab99d6d49b6d5575f6ccf7b8724 +DIST op_linux_arm64_v2.29.0.zip 7873053 BLAKE2B b64d83e78cc59d3ce5bddb7be2c721f032eb7ebdb3f55884f7f399518af36eef932e9aa4888bcc6ffd4349217820b7b5150f8c49cb55d34a222b772758570953 SHA512 707e9f5959afcc826333e9313619d2ffa13de9d670375479764954031f53b6945e960a27b0ec2de07f772b68ac11b28d2bd7dab5582191cfa7712e58bd7f992e DIST op_linux_arm_v2.28.0.zip 7988551 BLAKE2B b3495e62aab0762f5eecea973ec854f294aee773aaa675a178473d7a83a62f15a9280346272073633db09524fa6430386e57361282fe23b441755b7f424959e1 SHA512 4f02af0aa0f566736de304f31066859eb1569398e70616b8e76fef8392131254da38a918b8dae46c82ebb0a65b39e5e416216f277570435ea813437fad56adff +DIST op_linux_arm_v2.29.0.zip 7997594 BLAKE2B 9b09e2c3c8e41d2538a5b72d49ce38bd5df07e3091156f950a4f47d9503ba2dfe1dc4dc300b8c5403cdc56d5be4334472b82dd9f0896220da5d767dd33fc7abc SHA512 5c584a23bdd703ad07cf6bc2e7b5360c5a7833031ac0652ce2fc9ce06a50d93b5bf566366dcc73998534471aeb2d208b06c78377868286a3ab409eb4b8c2d096 diff --git a/app-admin/op-cli-bin/op-cli-bin-2.29.0.ebuild b/app-admin/op-cli-bin/op-cli-bin-2.29.0.ebuild new file mode 100644 index 0000000..13cbaee --- /dev/null +++ b/app-admin/op-cli-bin/op-cli-bin-2.29.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 2020-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="command line interface for the 1password password manager" +HOMEPAGE="https://1password.com/downloads/command-line/" +SITE="https://cache.agilebits.com/dist/1P/op2/pkg/v${PV}" +SRC_URI=" +amd64? ( ${SITE}/op_linux_amd64_v${PV}.zip ) +arm? ( ${SITE}/op_linux_arm_v${PV}.zip ) +arm64? ( ${SITE}/op_linux_arm64_v${PV}.zip ) +x86? ( ${SITE}/op_linux_386_v${PV}.zip ) +" + +LICENSE="all-rights-reserved" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" + +BDEPEND="app-arch/unzip" +RDEPEND="acct-group/onepassword-cli" + +QA_PREBUILT="usr/bin/op" +RESTRICT="bindist mirror" +S="${WORKDIR}" + +src_install() { + dobin op +} + +pkg_postinst() { + chgrp onepassword-cli /usr/bin/op + chmod g+s /usr/bin/op +} diff --git a/dev-util/mise/Manifest b/dev-util/mise/Manifest index eefeee2..9fa2c5c 100644 --- a/dev-util/mise/Manifest +++ b/dev-util/mise/Manifest @@ -353,6 +353,7 @@ DIST v2024.5.16.tar.gz 2907862 BLAKE2B 14ce546e67666e2457f859023934f86a836c667e4 DIST v2024.5.17.tar.gz 2910168 BLAKE2B d279122f9030a41b345ec9b9611fe0da35fc5d6d1a56445b0216d817f34cba7acce58a097201f52eb9099bb7bd6925582c1e3e9b8e0f0b5a9870a757331aa31a SHA512 d27586dc950d3e4ffcd9228ab65d6e3174b2df0c96b86188cb2b66847a2b79cfb25b35e784618feca96bc51f416a1859e0a1a702e19e025bc451044235bb76b8 DIST v2024.5.18.tar.gz 2928974 BLAKE2B 3cf79dd22ad1de112e458051220d3931d436f550cc0f9329672526078556aa421c64a8288ebe74d4513d8bb387e80cd65ebb1875de504ff8cd0215c894e7aa1c SHA512 e0a3bc99b3b7f7e25f3b8ac273405febea1615919d77d9a04956d362a5ac62792f40ad4ab9de03892e079a60b369db00e8c6f5399f93afcab8e575350e852abd DIST v2024.5.19.tar.gz 2929167 BLAKE2B 0f28f40146052de54582050fb4a0616600b72b5fe03c922aa307b925aaa1a16d84936092be39632ab9fee2bcd91dca5a4f87a77ef670601edec6aa2398b93805 SHA512 7c8cf98f6a9e17feb901ac54e42d5ee430fc1720d933360dd9fc923f392c861ae2c5cc38eaf4e99370243a1021a1d7ad26d285715a102bcbfe8cd5a0d9a2dc67 +DIST v2024.5.20.tar.gz 2929451 BLAKE2B 5947bb69611aaa86597a2acd8a763ba855b11a3b978b276e1249124e3d8fbcc570b8f262272f729ded0118481e59de3ba8b918abe8162af9cb1577e469fe3d86 SHA512 c82a0ef8315f8393b2ccda6e8e433d696641a9b25699eb39a5a8bf4027b39cc972cef6a5536ac57012ace9ba541352207f931cab954fb7eb216c67fd63e999c8 DIST valuable-0.1.0.crate 27718 BLAKE2B ef5ded994c9a6dd302bed27f0d757447b0c86dfefa499c1ef0d25c3a6745ce61cfa2c926826534c9f605f9b89b4a19f91f06f94ae7c03f1ddc4c58fab3ae58bb SHA512 a97f65db1f1c5049a276dbb0e45e25c6fc6ce9d27ac1fcd77c945324cd8216ef60344065c79799ca04e338455e4f7422c44078eea32d5fc359dd0211ee7eb387 DIST vcpkg-0.2.15.crate 228735 BLAKE2B 6b6bacd9a7fa38919241f45a97f58cae957e58d3aac99df208a26aa718e4f1644f4ccefa31b09151e5c1952288e0e5837c363918b98c7f55079a948a952c1c50 SHA512 7322a21e8811b2fe4e79e09dc321458068ecdf1953f05d36233f3278ecc0b1dfc64194db7010dd46fcf692285f42475beb090c6c6cac0c8f9fe0eb5c770e3172 DIST version_check-0.9.4.crate 14895 BLAKE2B fa1fa4008af165bfc1fdbe560488afd9d232cfafee94104fbcc4cbc52f234849bff9ddfa88109a1ac682f6d9c1d86b0459893d223f64e65adc08966aaf93dc89 SHA512 b172dc9a3759a4a683ffc39b9a40b03b9974b626a088217de87090466cef695226557c226cf3e469b2b25ee7297b7eb0d7719878cab42457f80146a81943c0c8 diff --git a/dev-util/mise/mise-2024.5.20.ebuild b/dev-util/mise/mise-2024.5.20.ebuild new file mode 100644 index 0000000..c1f3a37 --- /dev/null +++ b/dev-util/mise/mise-2024.5.20.ebuild @@ -0,0 +1,413 @@ +# Copyright 2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Autogenerated by pycargoebuild 0.13.2 + +EAPI=8 + +CRATES=" + addr2line@0.21.0 + adler@1.0.2 + aho-corasick@1.1.3 + android-tzdata@0.1.1 + android_system_properties@0.1.5 + ansi-str@0.8.0 + ansitok@0.2.0 + anstream@0.6.14 + anstyle-parse@0.2.4 + anstyle-query@1.0.3 + anstyle-wincon@3.0.3 + anstyle@1.0.7 + arbitrary@1.3.2 + arrayvec@0.5.2 + assert_cmd@2.0.14 + async-compression@0.4.10 + autocfg@1.3.0 + backtrace@0.3.71 + base64@0.21.7 + base64@0.22.1 + base64ct@1.6.0 + bitflags@1.3.2 + bitflags@2.5.0 + block-buffer@0.10.4 + bstr@1.9.1 + built@0.7.2 + bumpalo@3.16.0 + bytecount@0.6.8 + byteorder@1.5.0 + bytes@1.6.0 + calm_io@0.1.1 + calmio_filters@0.1.0 + cc@1.0.98 + cfg-if@1.0.0 + chrono@0.4.38 + ci_info@0.14.14 + clap@4.5.4 + clap_builder@4.5.2 + clap_derive@4.5.4 + clap_lex@0.7.0 + clap_mangen@0.2.20 + color-eyre@0.6.3 + color-print-proc-macro@0.3.6 + color-print@0.3.6 + color-spantrace@0.2.1 + colorchoice@1.0.1 + confique-macro@0.0.9 + confique@0.2.5 + console@0.15.8 + const-oid@0.9.6 + contracts@0.6.3 + core-foundation-sys@0.8.6 + core-foundation@0.9.4 + cpufeatures@0.2.12 + crc32fast@1.4.2 + crossbeam-deque@0.8.5 + crossbeam-epoch@0.9.18 + crossbeam-utils@0.8.20 + crypto-common@0.1.6 + ctor@0.2.8 + curve25519-dalek-derive@0.1.1 + curve25519-dalek@4.1.2 + demand@1.2.2 + der@0.7.9 + deranged@0.3.11 + derive_arbitrary@1.3.2 + diff@0.1.13 + difflib@0.4.0 + digest@0.10.7 + displaydoc@0.2.4 + doc-comment@0.3.3 + dotenvy@0.15.7 + duct@0.13.7 + dunce@1.0.4 + ed25519-dalek@2.1.1 + ed25519@2.2.3 + either@1.12.0 + encode_unicode@0.3.6 + encoding_rs@0.8.34 + env_filter@0.1.0 + env_logger@0.11.3 + envmnt@0.10.4 + equivalent@1.0.1 + errno-dragonfly@0.1.2 + errno@0.2.8 + errno@0.3.9 + exec@0.3.1 + eyre@0.6.12 + fastrand@1.9.0 + fastrand@2.1.0 + fiat-crypto@0.2.9 + filetime@0.2.23 + fixedbitset@0.4.2 + flate2@1.0.30 + float-cmp@0.9.0 + fnv@1.0.7 + foreign-types-shared@0.1.1 + foreign-types@0.3.2 + form_urlencoded@1.2.1 + fsio@0.4.0 + fslock@0.2.1 + futures-channel@0.3.30 + futures-core@0.3.30 + futures-executor@0.3.30 + futures-io@0.3.30 + futures-macro@0.3.30 + futures-sink@0.3.30 + futures-task@0.3.30 + futures-util@0.3.30 + futures@0.3.30 + generic-array@0.14.7 + getrandom@0.2.15 + gimli@0.28.1 + git2@0.18.3 + globset@0.4.14 + globwalk@0.8.1 + globwalk@0.9.1 + h2@0.3.26 + hashbrown@0.12.3 + hashbrown@0.14.5 + heck@0.3.3 + heck@0.4.1 + heck@0.5.0 + hermit-abi@0.3.9 + home@0.5.9 + homedir@0.2.1 + http-body@0.4.6 + http@0.2.12 + httparse@1.8.0 + httpdate@1.0.3 + humantime@2.1.0 + hyper-rustls@0.24.2 + hyper-tls@0.5.0 + hyper@0.14.28 + iana-time-zone-haiku@0.1.2 + iana-time-zone@0.1.60 + idna@0.5.0 + ignore@0.4.22 + indenter@0.3.3 + indexmap@1.9.3 + indexmap@2.2.6 + indicatif@0.17.8 + indoc@2.0.5 + insta@1.39.0 + instant@0.1.13 + ipnet@2.9.0 + is_terminal_polyfill@1.70.0 + itertools@0.12.1 + itoa@1.0.11 + jobserver@0.1.31 + js-sys@0.3.69 + kdl@4.6.0 + lazy_static@1.4.0 + libc@0.2.155 + libgit2-sys@0.16.2+1.7.2 + libssh2-sys@0.3.0 + libz-sys@1.1.16 + linked-hash-map@0.5.6 + linux-raw-sys@0.4.14 + log@0.4.21 + matchers@0.1.0 + memchr@2.7.2 + memoffset@0.7.1 + miette-derive@5.10.0 + miette@5.10.0 + mime@0.3.17 + minimal-lexical@0.2.1 + miniz_oxide@0.7.3 + mio@0.8.11 + native-tls@0.2.11 + nix@0.26.4 + nom@7.1.3 + normalize-line-endings@0.3.0 + nu-ansi-term@0.46.0 + num-conv@0.1.0 + num-traits@0.2.19 + num_cpus@1.16.0 + num_threads@0.1.7 + number_prefix@0.4.0 + object@0.32.2 + once_cell@1.19.0 + openssl-macros@0.1.1 + openssl-probe@0.1.5 + openssl-sys@0.9.102 + openssl@0.10.64 + os_pipe@1.1.5 + overload@0.1.1 + owo-colors@3.5.0 + papergrid@0.11.0 + paste@1.0.15 + path-absolutize@3.1.1 + path-dedot@3.1.1 + percent-encoding@2.3.1 + pest@2.7.10 + pest_derive@2.7.10 + pest_generator@2.7.10 + pest_meta@2.7.10 + petgraph@0.6.5 + pin-project-lite@0.2.14 + pin-utils@0.1.0 + pkcs8@0.10.2 + pkg-config@0.3.30 + platforms@3.4.0 + portable-atomic@1.6.0 + powerfmt@0.2.0 + ppv-lite86@0.2.17 + predicates-core@1.0.6 + predicates-tree@1.0.9 + predicates@3.1.0 + pretty_assertions@1.4.0 + proc-macro-error-attr@1.0.4 + proc-macro-error@1.0.4 + proc-macro2@1.0.83 + quick-xml@0.23.1 + quote@1.0.36 + rand@0.8.5 + rand_chacha@0.3.1 + rand_core@0.6.4 + rayon-core@1.12.1 + rayon@1.10.0 + redox_syscall@0.4.1 + regex-automata@0.1.10 + regex-automata@0.4.6 + regex-syntax@0.6.29 + regex-syntax@0.8.3 + regex@1.10.4 + reqwest@0.11.27 + ring@0.17.8 + rmp-serde@1.3.0 + rmp@0.8.14 + roff@0.2.1 + rustc-demangle@0.1.24 + rustc_version@0.4.0 + rustix@0.38.34 + rustls-native-certs@0.6.3 + rustls-pemfile@1.0.4 + rustls-webpki@0.101.7 + rustls@0.21.12 + rustversion@1.0.17 + ryu@1.0.18 + same-file@1.0.6 + schannel@0.1.23 + sct@0.7.1 + security-framework-sys@2.11.0 + security-framework@2.11.0 + self-replace@1.3.7 + self_update@0.39.0 + semver@1.0.23 + serde@1.0.202 + serde_derive@1.0.202 + serde_json@1.0.117 + serde_spanned@0.6.6 + serde_urlencoded@0.7.1 + sha2@0.10.8 + sharded-slab@0.1.7 + shared_child@1.0.0 + shell-escape@0.1.5 + shell-words@1.1.0 + signal-hook-registry@1.4.2 + signal-hook@0.3.17 + signature@2.2.0 + similar@2.5.0 + simplelog@0.12.2 + slab@0.4.9 + socket2@0.5.7 + spin@0.9.8 + spki@0.7.3 + strsim@0.11.1 + strum@0.26.2 + strum_macros@0.26.2 + subtle@2.5.0 + syn@1.0.109 + syn@2.0.65 + sync_wrapper@0.1.2 + sys-info@0.9.1 + system-configuration-sys@0.5.0 + system-configuration@0.5.1 + tabled@0.15.0 + tabled_derive@0.7.0 + tar@0.4.40 + tempfile@3.10.1 + tera@1.19.1 + termcolor@1.4.1 + terminal_size@0.3.0 + termtree@0.4.1 + test-case-core@3.3.1 + test-case-macros@3.3.1 + test-case@3.3.1 + test-log-macros@0.2.16 + test-log@0.2.16 + thiserror-impl@1.0.61 + thiserror@1.0.61 + thread_local@1.1.8 + time-core@0.1.2 + time-macros@0.2.18 + time@0.3.36 + tinyvec@1.6.0 + tinyvec_macros@0.1.1 + tokio-native-tls@0.3.1 + tokio-rustls@0.24.1 + tokio-util@0.7.11 + tokio@1.37.0 + toml@0.8.13 + toml_datetime@0.6.6 + toml_edit@0.22.13 + tower-service@0.3.2 + tracing-core@0.1.32 + tracing-error@0.2.0 + tracing-log@0.2.0 + tracing-subscriber@0.3.18 + tracing@0.1.40 + try-lock@0.2.5 + typenum@1.17.0 + ucd-trie@0.1.6 + unic-char-property@0.9.0 + unic-char-range@0.9.0 + unic-common@0.9.0 + unic-segment@0.9.0 + unic-ucd-segment@0.9.0 + unic-ucd-version@0.9.0 + unicode-bidi@0.3.15 + unicode-ident@1.0.12 + unicode-normalization@0.1.23 + unicode-segmentation@1.11.0 + unicode-width@0.1.12 + untrusted@0.9.0 + url@2.5.0 + urlencoding@2.1.3 + usage-lib@0.2.0 + utf8parse@0.2.1 + valuable@0.1.0 + vcpkg@0.2.15 + version_check@0.9.4 + versions@6.2.0 + vte@0.10.1 + vte_generate_state_changes@0.1.1 + wait-timeout@0.2.0 + walkdir@2.5.0 + want@0.3.1 + wasi@0.11.0+wasi-snapshot-preview1 + wasm-bindgen-backend@0.2.92 + wasm-bindgen-futures@0.4.42 + wasm-bindgen-macro-support@0.2.92 + wasm-bindgen-macro@0.2.92 + wasm-bindgen-shared@0.2.92 + wasm-bindgen@0.2.92 + web-sys@0.3.69 + webpki-roots@0.25.4 + which@6.0.1 + widestring@1.1.0 + winapi-i686-pc-windows-gnu@0.4.0 + winapi-util@0.1.8 + winapi-x86_64-pc-windows-gnu@0.4.0 + winapi@0.3.9 + windows-core@0.52.0 + windows-implement@0.52.0 + windows-interface@0.52.0 + windows-sys@0.48.0 + windows-sys@0.52.0 + windows-targets@0.48.5 + windows-targets@0.52.5 + windows@0.52.0 + windows_aarch64_gnullvm@0.48.5 + windows_aarch64_gnullvm@0.52.5 + windows_aarch64_msvc@0.48.5 + windows_aarch64_msvc@0.52.5 + windows_i686_gnu@0.48.5 + windows_i686_gnu@0.52.5 + windows_i686_gnullvm@0.52.5 + windows_i686_msvc@0.48.5 + windows_i686_msvc@0.52.5 + windows_x86_64_gnu@0.48.5 + windows_x86_64_gnu@0.52.5 + windows_x86_64_gnullvm@0.48.5 + windows_x86_64_gnullvm@0.52.5 + windows_x86_64_msvc@0.48.5 + windows_x86_64_msvc@0.52.5 + winnow@0.6.8 + winreg@0.50.0 + winsafe@0.0.19 + wmi@0.13.3 + xattr@1.3.1 + xx@0.5.1 + xx@1.1.1 + yansi@0.5.1 + zeroize@1.7.0 + zip@1.3.0 + zipsign-api@0.1.1 +" + +inherit cargo + +DESCRIPTION="The front-end to your dev env" +HOMEPAGE="https://mise.jdx.dev" +SRC_URI="https://github.com/jdx/mise/archive/refs/tags/v${PV}.tar.gz +${CARGO_CRATE_URIS}" + +LICENSE="MIT" +# Dependent crate licenses +LICENSE+=" + Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD ISC MIT MPL-2.0 + Unicode-DFS-2016 +" +SLOT="0" +KEYWORDS="amd64 arm64 x86" diff --git a/net-vpn/tailscale/Manifest b/net-vpn/tailscale/Manifest index fa464b9..97a5c9b 100644 --- a/net-vpn/tailscale/Manifest +++ b/net-vpn/tailscale/Manifest @@ -1,3 +1,4 @@ -DIST deps.tar.xz 394973200 BLAKE2B a10ea3b364eac25fc65393b84c7e8188336830259ebbb89409b993f0da81f360e8d443f56355196b9943893c382185a68e66d65ead9cd1099e470862b999bbbc SHA512 c751ce7e64e490e0c246b658a3f83f1300836f22042aba54a9c8ca35a14c652a4637e05319e34955afce53768cdc737c04daab1a5e20fbaf11dde4e55d4b2137 +DIST deps.tar.xz 395282764 BLAKE2B ce730c19a71ac4ea6528d5c71c8ef7271da9b2c668ea878e717d7d6e2e11d1fc371c50ab8bab68a6a841e8596f9f8a5a3eec1f94f17e7f21d1d6f2c475cca9e4 SHA512 8670dd91268f1254834a0c6ddd945015da7c21f5f2228366fafb667861f7670ac2523119e004e39d65eacce2dfef4518fb35cd93451eddbf5b062da619eca2a3 DIST tailscale-1.66.1.tar.gz 2634211 BLAKE2B cbf90ee36545fa8ba302f872948dc92e735bfe690451428540bee10399d1db1cdbf050949a5f3dbc69a77596b6a6d94724eb43bf9a4ee78a5cee9ada03889a3e SHA512 46e226c651abd5dee248e49fcf40a0cea9de72fe9e330015299acd9ec1fc83e1f192948c26b803f0fe3404558471b374391f3cf9155ecb2257a2563f79f3278b DIST tailscale-1.66.3.tar.gz 2637720 BLAKE2B cdab81ed3a243cc4065ff414126b59b92bb439c82bf35ce371ccda7f81143fd714afa98d5e3148da21d95aa3f8dfbf33cb85b70d733dba6dfa98dadb4d1605fd SHA512 886650d48c4615f60db66d39783cc222b597c7fcb9db980a017e0aefba1f0f61854fa52771591667c4f9e707e82f998273c949f9ade85d01bc913777491c2890 +DIST tailscale-1.66.4.tar.gz 2636998 BLAKE2B 617cd97d7536faac53d46167fdf48acd430bc453cef6f5157df1c8f6bd98973c8b17c0687a7d931501979b70da3b1268fde77a3f9653b1143eb363d09b5e719f SHA512 6c114508964f86984cdbcd2f3e81c4939f4c5a0ed20363b4463642fc8ca235d5b220e46e5b55c655e435f20be24295391b0070db3a78d45210ac9c27f5e7bbab diff --git a/net-vpn/tailscale/tailscale-1.66.4.ebuild b/net-vpn/tailscale/tailscale-1.66.4.ebuild new file mode 100644 index 0000000..c762aa3 --- /dev/null +++ b/net-vpn/tailscale/tailscale-1.66.4.ebuild @@ -0,0 +1,60 @@ +# Copyright 2020-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit go-module systemd tmpfiles + +# These settings are obtained by running ./build_dist.sh shellvars in +# the upstream repo. +VERSION_MINOR="66" +VERSION_SHORT="1.66.4" +VERSION_LONG="1.66.4-te64efe4f7" +VERSION_GIT_HASH="e64efe4f777cb5b4d9efd603ad1360a509006cd1" + +DESCRIPTION="Tailscale vpn client" +HOMEPAGE="https://tailscale.com" +SRC_URI="https://github.com/tailscale/tailscale/archive/v${PV}.tar.gz -> ${P}.tar.gz" +SRC_URI+=" https://gentoo.rgst.io/updater_artifacts/${CATEGORY}/${PN}/${PV}/deps.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm arm64 ~riscv ~x86" + +RDEPEND="net-firewall/iptables" +BDEPEND=">=dev-lang/go-1.22" + +RESTRICT="test" + +# This translates the build command from upstream's build_dist.sh to an +# ebuild equivalent. +build_dist() { + ego build -tags xversion -ldflags " + -X tailscale.com/version.Long=${VERSION_LONG} + -X tailscale.com/version.Short=${VERSION_SHORT} + -X tailscale.com/version.GitCommit=${VERSION_GIT_HASH}" "$@" +} + +src_compile() { + build_dist ./cmd/tailscale + build_dist ./cmd/tailscaled +} + +src_install() { + dosbin tailscaled + dobin tailscale + + systemd_dounit cmd/tailscaled/tailscaled.service + insinto /etc/default + newins cmd/tailscaled/tailscaled.defaults tailscaled + keepdir /var/lib/${PN} + fperms 0750 /var/lib/${PN} + + newtmpfiles "${FILESDIR}/${PN}.tmpfiles" ${PN}.conf + + newinitd "${FILESDIR}/${PN}d.initd" ${PN} + newconfd "${FILESDIR}/${PN}d.confd" ${PN} +} + +pkg_postinst() { + tmpfiles_process ${PN}.conf +}