-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Save current MSRV in manifest by @alerque in #44 - Improve graph image calculation and add tests by @lusingander in #45 - Fix ci by @lusingander in #47 - Graph color config by @lusingander in #48 - Half-width graph support by @lusingander in #50 - Minor code cleanup by @lusingander in #51
- Loading branch information
Showing
3 changed files
with
1,467 additions
and
659 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,34 @@ | ||
# $NetBSD: Makefile,v 1.2 2024/09/04 09:27:58 pin Exp $ | ||
# $NetBSD: Makefile,v 1.3 2024/09/17 19:35:29 pin Exp $ | ||
|
||
DISTNAME= serie-0.3.0 | ||
CATEGORIES= devel | ||
MASTER_SITES= ${MASTER_SITE_GITHUB:=lusingander/} | ||
GITHUB_TAG= v${PKGVERSION_NOREV} | ||
DISTNAME= mise-2024.9.5 | ||
CATEGORIES= devel | ||
MASTER_SITES= ${MASTER_SITE_GITHUB:=jdx/} | ||
GITHUB_TAG= v${PKGVERSION_NOREV} | ||
|
||
MAINTAINER= pkgsrc-users@NetBSD.org | ||
HOMEPAGE= https://github.com/lusingander/serie/ | ||
COMMENT= Rich git commit graph in your terminal | ||
LICENSE= mit | ||
MAINTAINER= pkgsrc-users@NetBSD.org | ||
HOMEPAGE= https://mise.jdx.dev/ | ||
COMMENT= Polyglot tool version manager like asdf | ||
LICENSE= mit | ||
|
||
RUST_REQ= 1.76.0 | ||
USE_LANGUAGES= c | ||
USE_TOOLS+= pkg-config | ||
|
||
.include "cargo-depends.mk" | ||
|
||
RUST_REQ= 1.79.0 | ||
USE_TOOLS+= pkg-config | ||
AUTO_MKDIRS= yes | ||
|
||
RUSTFLAGS+= -C link-arg=${COMPILER_RPATH_FLAG}${BUILDLINK_PREFIX.libX11}/lib | ||
RUSTFLAGS+= -C link-arg=-L${BUILDLINK_PREFIX.libX11}/lib | ||
post-install: | ||
${TOUCH} ${DESTDIR}${PREFIX}/lib/mise/.disable-self-update | ||
${INSTALL_DATA} ${WRKSRC}/man/man1/mise.1 \ | ||
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/ | ||
${INSTALL_DATA} ${WRKSRC}/completions/mise.bash \ | ||
${DESTDIR}${PREFIX}/share/bash-completion/completions/mise | ||
${INSTALL_DATA} ${WRKSRC}/completions/mise.fish \ | ||
${DESTDIR}${PREFIX}/share/fish/vendor_completions.d/mise.fish | ||
${INSTALL_DATA} ${WRKSRC}/completions/_mise \ | ||
${DESTDIR}${PREFIX}/share/zsh/site-functions/ | ||
|
||
.include "../../lang/rust/cargo.mk" | ||
.include "../../x11/libX11/buildlink3.mk" | ||
.include "../../security/openssl/buildlink3.mk" | ||
.include "../../mk/bsd.pkg.mk" |
Oops, something went wrong.