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

5.19.1: signify aware #2

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Process this file with autoconf to produce a configure script.
AC_INIT
AC_CONFIG_SRCDIR([src/prtget.cpp])
AM_INIT_AUTOMAKE(prt-get,5.19)
AM_INIT_AUTOMAKE(prt-get,5.19.1)


dnl Determine default prefix
Expand Down
8 changes: 8 additions & 0 deletions doc/prt-get.8
Original file line number Diff line number Diff line change
Expand Up @@ -414,6 +414,14 @@ Update md5sum, implies 'pkgmk -um'; same as --margs=-um
.B -im
Ignore md5sum, implies 'pkgmk -im'; same as --margs=-im

.TP
.B -us
Update signature, implies 'pkgmk -us'; same as --margs=-us

.TP
.B -is
Ignore signature, implies 'pkgmk -is'; same as --margs=-is

.TP
.B -uf
Update footprint, implies 'pkgmk -uf'; same as --margs=-uf
Expand Down
6 changes: 5 additions & 1 deletion src/argparser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,11 @@ bool ArgParser::parse()
m_pkgmkArgs += " " + s;
} else if ( s == "-um" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-kw" ) {
} else if ( s == "-is" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-us" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-kw" ) {
m_pkgmkArgs += " " + s;
} else if ( s == "-ns" ) {
m_pkgmkArgs += " " + s;
Expand Down
2 changes: 2 additions & 0 deletions src/prtget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ void PrtGet::printUsage()
cout << " -if ignore footprint" << endl;
cout << " -um update md5sum" << endl;
cout << " -im ignore md5sum" << endl;
cout << " -us update signature" << endl;
cout << " -is ignore signature" << endl;
cout << " --margs=<string> pass 'string' to pkgmk"
<< endl;
cout << " --aargs=<string> pass 'string' to pkgadd"
Expand Down