-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
592 additions
and
579 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,6 +1,6 @@ | ||
fn main() { | ||
if let Ok(v) = std::env::var("GRM_RELEASE_VERSION") { | ||
println!("cargo:rustc-env=CARGO_PKG_VERSION={}", v); | ||
println!("cargo:rustc-env=CARGO_PKG_VERSION={v}"); | ||
} | ||
println!("cargo:rerun-if-env-changed=GRM_RELEASE_VERSION"); | ||
} |
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
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,7 +1,7 @@ | ||
# Maintainer: Hannes Körber <[email protected]> | ||
pkgname='grm-git' | ||
pkgver=0.7.15.r6.gea7299a | ||
pkgrel=2 | ||
pkgver=0.7.21.r1.gfcd315b | ||
pkgrel=1 | ||
pkgdesc='Manage git repos, worktrees and integrate with GitHub and GitLab' | ||
arch=('x86_64') | ||
url='https://github.com/hakoerber/git-repo-manager' | ||
|
@@ -12,6 +12,8 @@ provides=('grm') | |
conflicts=('grm') | ||
source=("${pkgname}::git+https://github.com/hakoerber/git-repo-manager#branch=develop") | ||
sha256sums=('SKIP') | ||
# https://gitlab.archlinux.org/archlinux/packaging/packages/pacman/-/issues/20 | ||
options=(!lto !debug) | ||
|
||
pkgver() { | ||
cd "${pkgname}" | ||
|
@@ -29,8 +31,6 @@ build() { | |
export RUSTUP_TOOLCHAIN=stable | ||
export CARGO_TARGET_DIR=target | ||
export GRM_RELEASE_VERSION="${pkgver}" | ||
# https://gitlab.archlinux.org/archlinux/packaging/packages/pacman/-/issues/20 | ||
export CFLAGS+=' -ffat-lto-objects' | ||
cargo build --frozen --release | ||
} | ||
|
||
|
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
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
Oops, something went wrong.