diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2000-03-27 22:59:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2000-03-27 22:59:41 +0000 |
commit | b30fe7c420f108c4ed94ef64691a45eba0d1f29c (patch) | |
tree | c495ad4cb8e1dfd94edd4d5c12cb48f0250c9cb8 | |
parent | 3dc656d58b4359dc8c54069d83ee52582c3fccde (diff) | |
download | rpmtools-b30fe7c420f108c4ed94ef64691a45eba0d1f29c.tar rpmtools-b30fe7c420f108c4ed94ef64691a45eba0d1f29c.tar.gz rpmtools-b30fe7c420f108c4ed94ef64691a45eba0d1f29c.tar.bz2 rpmtools-b30fe7c420f108c4ed94ef64691a45eba0d1f29c.tar.xz rpmtools-b30fe7c420f108c4ed94ef64691a45eba0d1f29c.zip |
no_comment
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | hdlist2names.cc | 2 | ||||
-rw-r--r-- | rpmtools.spec | 6 |
3 files changed, 7 insertions, 3 deletions
@@ -1,7 +1,7 @@ VERSION = 1.1 NAME = rpmtools FROMC = rpm2header #rpm-find-leaves -FROMCC = gendepslist2 hdlist2names hdlist2files hdlist2prereq +FROMCC = gendepslist2 hdlist2names hdlist2files hdlist2prereq hdlist2groups FROMC_STATIC = $(FROMC:%=%_static) FROMCC_STATIC = $(FROMCC:%=%_static) ALL = $(FROMC) $(FROMCC) diff --git a/hdlist2names.cc b/hdlist2names.cc index cdb0c32..9cdb335 100644 --- a/hdlist2names.cc +++ b/hdlist2names.cc @@ -30,7 +30,7 @@ int main(int argc, char **argv) } for (int i = 1; i < argc; i++) { FD_t fd = strcmp(argv[i], "-") == 0 ? fdDup(STDIN_FILENO) : fdOpen(argv[i], O_RDONLY, 0); - if (fdFileno(fd) < 0) cerr << "rpmpackdeps: cannot open file " << argv[i] << "\n"; + if (fdFileno(fd) < 0) cerr << "hdlist2names: cannot open file " << argv[i] << "\n"; else { Header header; while ((header=headerRead(fd, HEADER_MAGIC_YES))) { diff --git a/rpmtools.spec b/rpmtools.spec index 0ca62b4..d2253b1 100644 --- a/rpmtools.spec +++ b/rpmtools.spec @@ -1,5 +1,5 @@ %define name rpmtools -%define release 12mdk +%define release 13mdk # do not modify here, see Makefile in the CVS %define version 1.1 @@ -53,9 +53,13 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root) /usr/bin/hdlist2prereq +/usr/bin/hdlist2groups /usr/bin/genhdlists %changelog +* Mon Mar 27 2000 Pixel <pixel@mandrakesoft.com> 1.1-13mdk +- add hdlist2groups + * Sun Mar 26 2000 Pixel <pixel@mandrakesoft.com> 1.1-12mdk - gendepslist2: add ability to handle files (was only hdlist.cz2's), and to output only the package dependencies for some hdlist's/packages (use of "--") |