diff options
| author | root <root@alpha.trunkmasters.com> | 2026-09-18 03:04:41 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-09-18 03:04:41 -0500 |
| commit | 513c58743da6976af328ba073f40bf8632bc84f3 (patch) | |
| tree | f9aa836729d8fd8517f3e35edbc8aad1f53b943f /dev-vcs | |
| parent | 79477d9c98f30c3ebedd8b75721260b257822d65 (diff) | |
| download | baldeagleos-repo-513c58743da6976af328ba073f40bf8632bc84f3.tar.gz baldeagleos-repo-513c58743da6976af328ba073f40bf8632bc84f3.tar.xz baldeagleos-repo-513c58743da6976af328ba073f40bf8632bc84f3.zip | |
Adding metadata
Diffstat (limited to 'dev-vcs')
| -rw-r--r-- | dev-vcs/git-lfs/Manifest | 1 | ||||
| -rw-r--r-- | dev-vcs/git-lfs/git-lfs-3.8.0.ebuild | 100 | ||||
| -rw-r--r-- | dev-vcs/git-lfs/git-lfs-9999.ebuild | 16 |
3 files changed, 105 insertions, 12 deletions
diff --git a/dev-vcs/git-lfs/Manifest b/dev-vcs/git-lfs/Manifest index 0f9af4be3a28..8263b37ae6be 100644 --- a/dev-vcs/git-lfs/Manifest +++ b/dev-vcs/git-lfs/Manifest @@ -1,2 +1,3 @@ DIST git-lfs-3.7.1-deps.tar.xz 21418188 BLAKE2B f26ffa8956af522131384e9ad435c456e275394c47aa10770fe416e140d69393a8a7ae20d9264e4b4678b6029e87fc623a5de599535ad2598c849dbb44dff10e SHA512 9e93072ad1dfe9a8fd28f5417de6c35c2720d393fabf07d32d8e1bb63b91a5feb8163d74479db7333253d4615dafb503e2540ef3d51a9b4262709a1150336b73 DIST git-lfs-3.7.1.tar.gz 713503 BLAKE2B 94bc626888c824f30638c23d7cfe852128505e17880a8fb45499350abd3d84e75389c38638b80c5b306def8778c2cb0fd1b9f352aac06db8209848b251d325d3 SHA512 5bbf7847737a80e44295070a95e5de9f24186c9fbf58e7bda91e938af2542bcaae2ae9197b77384861d9ef6cd5ed868e9388836925ff7ab5d50157df39fc174b +DIST git-lfs-3.8.0.tar.gz 3598783 BLAKE2B 11e947f22c66cad62875d7a436152611c81fa34c161336618b8f686cbd3b3de6c50cc7698e7f76e8cfd2cba96c9377c725ccd92fff15711fdd28a0a3b4f218d8 SHA512 f541a6f728ea4f6889cc5a05184599b582927918bf871e0d609fc9e41bf8416ff820abe3d49c041008d2abea1b3a2d0ad42fe0a925ceecf7293512a2c9fe5d90 diff --git a/dev-vcs/git-lfs/git-lfs-3.8.0.ebuild b/dev-vcs/git-lfs/git-lfs-3.8.0.ebuild new file mode 100644 index 000000000000..e91ed1b4e766 --- /dev/null +++ b/dev-vcs/git-lfs/git-lfs-3.8.0.ebuild @@ -0,0 +1,100 @@ +# Copyright 2017-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +EGO_PN=github.com/git-lfs/git-lfs +# Update the ID as it's included in each build. +COMMIT_ID="aece9221f8c09221a14395d964806b956289bc07" + +inherit edo go-module shell-completion + +DESCRIPTION="Command line extension and specification for managing large files with git" +HOMEPAGE=" + https://git-lfs.com + https://github.com/git-lfs/git-lfs +" + +if [[ "${PV}" = 9999* ]]; then + EGIT_REPO_URI="https://${EGO_PN}" + inherit git-r3 +else + SRC_URI="https://${EGO_PN}/releases/download/v${PV}/${PN}-vendor-v${PV}.tar.gz -> ${P}.tar.gz" +fi + +LICENSE="Apache-2.0 BSD BSD-2 BSD-4 ISC MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" +IUSE="doc test" + +BDEPEND=" + >=dev-lang/go-1.25.0 + doc? ( dev-ruby/asciidoctor ) +" +RDEPEND="dev-vcs/git" + +RESTRICT+=" !test? ( test )" +# The golang compiler already strips. +QA_PRESTRIPPED="/usr/bin/git-lfs" + +DOCS=( + CHANGELOG.md + CODE-OF-CONDUCT.md + CONTRIBUTING.md + README.md + SECURITY.md +) + +src_compile() { + export CGO_ENABLED=0 + + # Flags -w, -s: Omit debugging information to reduce binary size, + # see https://golang.org/cmd/link/. + local mygobuildargs=( + -ldflags="-X ${EGO_PN}/config.GitCommit=${COMMIT_ID} -s -w" + -gcflags=" " + -trimpath + -v -work -x + ) + ego build "${mygobuildargs[@]}" -o git-lfs git-lfs.go + + if use doc; then + for doc in docs/man/*adoc; + do + edo asciidoctor -b manpage "${doc}" + done + fi + + # Generate auto-completion scripts. + # bug 914542 + ./git-lfs completion bash > "${PN}.bash" || die + ./git-lfs completion fish > "${PN}.fish" || die + ./git-lfs completion zsh > "${PN}.zsh" || die +} + +src_install() { + dobin git-lfs + einstalldocs + + # Install auto-completion scripts generated earlier. + # bug 914542 + newbashcomp "${PN}.bash" "${PN}" + dofishcomp "${PN}.fish" + newzshcomp "${PN}.zsh" "_${PN}" + + use doc && doman docs/man/*.1 +} + +src_test() { + local mygotestargs=( + -ldflags="-X ${EGO_PN}/config.GitCommit=${COMMIT_ID}" + ) + ego test "${mygotestargs[@]}" ./... +} + +pkg_postinst () { + if [[ -z "${REPLACING_VERSIONS}" ]]; then + elog "" + elog "Run 'git lfs install' once for each user account manually." + elog "For more details see https://bugs.gentoo.org/show_bug.cgi?id=733372." + fi +} diff --git a/dev-vcs/git-lfs/git-lfs-9999.ebuild b/dev-vcs/git-lfs/git-lfs-9999.ebuild index 98f790e69530..b1cd812be661 100644 --- a/dev-vcs/git-lfs/git-lfs-9999.ebuild +++ b/dev-vcs/git-lfs/git-lfs-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 2017-2025 Gentoo Authors +# Copyright 2017-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -18,25 +18,17 @@ if [[ "${PV}" = 9999* ]]; then EGIT_REPO_URI="https://${EGO_PN}" inherit git-r3 else - SRC_URI="https://${EGO_PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz" - # Add the manually vendored tarball. - # 1) Create a tar archive optimized to reproduced by other users or devs. - # 2) Compress the archive using XZ limiting decompression memory for - # pretty constraint systems. - # Use something like: - # GOMODCACHE="${PWD}"/go-mod go mod download -modcacherw - # tar cf "${P}-deps.tar" go-mod \ - # --mtime="1970-01-01" --sort=name --owner=portage --group=portage - # xz -k -9eT0 --memlimit-decompress=256M "${P}-deps.tar" - SRC_URI+=" https://files.holgersson.xyz/gentoo/distfiles/golang-pkg-deps/${P}-deps.tar.xz" + SRC_URI="https://${EGO_PN}/releases/download/v${PV}/${PN}-vendor-v${PV}.tar.gz -> ${P}.tar.gz" fi LICENSE="Apache-2.0 BSD BSD-2 BSD-4 ISC MIT" SLOT="0" # KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86" + IUSE="doc test" BDEPEND=" + >=dev-lang/go-1.25.0 doc? ( dev-ruby/asciidoctor ) " RDEPEND="dev-vcs/git" |
