convert razor_package_get_details() and razor_package_iterator_next() to varargs
The functions for getting package details about a package were limited to a few
things, when in the future we will want to support much more about a package.
The iterator was also limited to name,version,arch when most of the time we
didn't need all this data.
1 ## Process this file with automake to produce Makefile.in
3 SUBDIRS = data docs librazor src po
5 # Creating ChangeLog from git log (taken from cairo/Makefile.am):
6 ChangeLog: $(srcdir)/ChangeLog
9 @if test -d "$(srcdir)/.git"; then \
11 ./missing --run git-log --stat) | fmt --split-only > $@.tmp \
14 echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
15 (test -f $@ || echo git-log is required to generate this file >> $@)); \
18 (echo A git checkout and git-log is required to generate ChangeLog >&2 && \
19 echo A git checkout and git-log is required to generate this file >> $@); \
22 .PHONY: ChangeLog $(srcdir)/ChangeLog