Hi, Title says all. We should fix the devtools package as the missing communityco is a problem. I don't know why nobody noticed it before. In my case, I had installed communityco manually. The devtools package is currently orphaned. Allan: did you forget to adopt it when switching to the any arch?
Eric
From 2a5e2f14412d90ab1a04fbe27108a48e0ae56712 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eric=20B=E9langer?= <[email protected]> Date: Sun, 13 Sep 2009 23:32:36 -0400 Subject: [PATCH 2/2] Fixed Makefile to install/uninstall communityco, commitpkg2any and rebuildpkgs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Eric Bélanger <[email protected]> --- Makefile | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index f29082a..59eb589 100644 --- a/Makefile +++ b/Makefile @@ -5,12 +5,14 @@ install: mkdir -p $(DESTDIR)/usr/bin install -m 755 checkpkg $(DESTDIR)/usr/bin install -m 755 commitpkg $(DESTDIR)/usr/bin + install -m 755 commitpkg2any $(DESTDIR)/usr/bin ln -sf commitpkg $(DESTDIR)/usr/bin/extrapkg ln -sf commitpkg $(DESTDIR)/usr/bin/corepkg ln -sf commitpkg $(DESTDIR)/usr/bin/testingpkg ln -sf commitpkg $(DESTDIR)/usr/bin/communitypkg # arch{co,release,rm} install -m 755 archco $(DESTDIR)/usr/bin + install -m 755 communityco $(DESTDIR)/usr/bin install -m 755 archrelease $(DESTDIR)/usr/bin install -m 755 archrm $(DESTDIR)/usr/bin # new chroot tools, only usable by root @@ -20,6 +22,7 @@ install: #Additional packaging helper scripts install -m 755 lddd $(DESTDIR)/usr/bin install -m 755 finddeps $(DESTDIR)/usr/bin + install -m 755 rebuildpkgs $(DESTDIR)/usr/bin uninstall: # remove all files we installed @@ -36,3 +39,6 @@ uninstall: rm $(DESTDIR)/usr/bin/archco rm $(DESTDIR)/usr/bin/archrelease rm $(DESTDIR)/usr/bin/archrm + rm $(DESTDIR)/usr/bin/communityco + rm $(DESTDIR)/usr/bin/commitpkg2any + rm $(DESTDIR)/usr/bin/rebuildpkgs -- 1.6.4.3

