forked from vmware/tdnf
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add quiet option. singleton load global resources
Change-Id: Id11c299f16fc3c6297f2678b1d62940d81f9528a
- Loading branch information
Priyesh Padmavilasom
committed
Nov 4, 2016
1 parent
c675a4d
commit 3977aad
Showing
16 changed files
with
270 additions
and
54 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,10 +1,19 @@ | ||
ACLOCAL_AMFLAGS = -I m4 | ||
|
||
CLEANFILES = | ||
EXTRA_DIST = | ||
conf_DATA = tdnf.conf | ||
pkginclude_HEADERS = include/tdnfclient.h include/tdnferror.h include/tdnftypes.h | ||
pkgconfigdir = $(libdir)/pkgconfig | ||
|
||
SUBDIRS = \ | ||
common \ | ||
client \ | ||
tests \ | ||
tools | ||
|
||
pkgconfig_DATA = tdnf.pc | ||
tdnf.pc: $(top_srcdir)/tdnf.pc.in | ||
./config.status --file=${subdir}/tdnf.pc:${subdir}/tdnf.pc.in | ||
CLEANFILES += tdnf.pc | ||
EXTRA_DIST += tdnf.pc.in |
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
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 |
---|---|---|
|
@@ -810,3 +810,7 @@ uint32_t | |
TDNFValidateCmdArgs( | ||
PTDNF pTdnf | ||
); | ||
|
||
uint32_t | ||
TDNFIsInitialized( | ||
); |
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
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
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,4 +1,4 @@ | ||
AC_INIT(tdnf, 1.0.9) | ||
AC_INIT(tdnf, 1.1.0) | ||
AC_MSG_NOTICE([tdnf configuration]) | ||
|
||
AC_CANONICAL_SYSTEM | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
libdir=@libdir@ | ||
includedir=@includedir@/tdnf | ||
|
||
Name: tdnf | ||
Description: tiny dandified yum | ||
Version: @VERSION@ | ||
Requires:hawkey librepo rpm | ||
Libs: -L${libdir} -ltdnfclient | ||
Cflags: -I${includedir} |
Oops, something went wrong.