Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forked over 2 years ago #141

Open
wants to merge 33 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
8e1a352
Fork packer
oshazard Sep 29, 2013
1e0231a
apacman version 0.5
oshazard Sep 29, 2013
b4e1bca
Add GPL license
oshazard Sep 29, 2013
0f08758
Update apacman with new features and manpage
oshazard Nov 8, 2013
b32d328
Fix markdown
oshazard Nov 8, 2013
b80b495
More markdown fixes
oshazard Nov 8, 2013
17564e7
Merge packer updates and add root workaround
oshazard Jan 2, 2015
356e29e
Add post install file
oshazard Jan 2, 2015
e7d96b1
Fix package prefix name bug
oshazard Jan 7, 2015
cc8c6ea
Update .install
oshazard Jan 7, 2015
163f230
Version 0.8 - ABS support, --noaur flag, --warn flag
oshazard Jan 9, 2015
caa3cbe
Version 0.9 - list installed packages by size with -L option
oshazard Jan 10, 2015
e78d4d0
Version 1.0 - Config file support, --config, --verbose, update manpages
oshazard Jan 10, 2015
bd6459e
Add default conf file
oshazard Jan 10, 2015
768d12e
Version 1.1 - minor bug fixes
oshazard Jan 11, 2015
3ea7d1a
Version 1.2 - Install checkdepends, --purgebuild to remove makedeps, …
oshazard Jan 15, 2015
669407d
Add check for new flags to verbose
oshazard Jan 15, 2015
23020ac
Version 1.3 - Bug fixes, --buildonly, --nofail, build status, EDITOR
oshazard Feb 8, 2015
d596ad5
Version 1.4 - Bug fixes for cached AUR pkgs and --cachevcs
oshazard Feb 9, 2015
25132f1
Minor fix for status
oshazard Feb 14, 2015
344849b
Version 1.5 - Add experimental --nosource option (WIP)
oshazard Feb 14, 2015
c72bd99
Version 1.6 - Add installed to search, AUR link to info and emerge-st…
oshazard May 19, 2015
a657d90
Version 1.7 - Add support for PGP signed packages (WIP)
oshazard May 20, 2015
64f248a
Fix for PGP check
oshazard May 20, 2015
7537663
Another fix for non-PGP packages
oshazard May 20, 2015
5efa269
Version 1.8 - Bug fixes for aurbuild PGP sigs, color and noconfirm
oshazard May 20, 2015
39f66df
Another minor scope bugfix
oshazard May 20, 2015
d1f3c07
fixing Issue #18 (https://github.com/oshazard/apacman/issues/18)
johnnybubonic Jul 7, 2015
c376b07
Merge pull request #20 from bts368/master
oshazard Jul 8, 2015
562bfa3
Update README
oshazard Jul 8, 2015
a381dcb
Ver 1.9 - Better AUR4 support and --legacy flag for AUR3 backwards co…
oshazard Jul 8, 2015
aa86d59
v2.0 - Improved AUR4 and split package support
oshazard Aug 10, 2015
022c404
Ver 2.1 - fixes for PGP, piping and prompt
oshazard Sep 6, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Minor fix for status
  • Loading branch information
oshazard committed Feb 14, 2015
commit 25132f142cd4d3977245a08472b090a0fd08329b
4 changes: 2 additions & 2 deletions apacman
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,8 @@ buildstatus() {
fi

echo -ne "${COLOR5} ->${ENDCOLOR} ${COLOR1}Status${ENDCOLOR}"
[[ $success ]] && echo -ne "\t${COLOR4}built (${#success[@]}):${ENDCOLOR} $success"
[[ $failure ]] && echo -ne "\t${COLOR7}failed (${#failure[@]}):${ENDCOLOR} $failure"
[[ $success ]] && echo -ne "\t${COLOR4}built (${#success[@]}):${ENDCOLOR} ${success[@]}"
[[ $failure ]] && echo -ne "\t${COLOR7}failed (${#failure[@]}):${ENDCOLOR} ${failure[@]}"
echo ""

[[ $nofail = 1 && $1 != 0 ]] && exit 1
Expand Down