extras-buildsys Makefile,NONE,1.1 ChangeLog,1.32,1.33

Daniel Williams (dcbw) fedora-extras-commits at redhat.com
Sun Jun 26 14:52:26 UTC 2005


Author: dcbw

Update of /cvs/fedora/extras-buildsys
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv6600

Modified Files:
	ChangeLog 
Added Files:
	Makefile 
Log Message:
2005-06-25  Dan Williams <dcbw at redhat.com>

    * We have a name: "(The) Plague".  We come to eat your packages.

    * Add Makefiles, install common stuff in python site-packages,
        and convert files to use config from /etc




--- NEW FILE Makefile ---
SUBDIRS = client common server utils

PKGNAME = plague
VERSION=$(shell awk '/Version:/ { print $$2 }' ${PKGNAME}.spec)
RELEASE=$(shell awk '/Release:/ { print $$2 }' ${PKGNAME}.spec)
CVSTAG=$(PKGNAME)-$(subst .,_,$(VERSION)-$(RELEASE))

all: subdirs

clean:
	for d in $(SUBDIRS); do make -C $$d clean ; done

subdirs:
	for d in $(SUBDIRS); do make -C $$d; [ $$? = 0 ] || exit 1 ; done

install:
	for d in $(SUBDIRS); do make DESTDIR=`cd $(DESTDIR); pwd` PKGNAME=$(PKGNAME) -C $$d install; [ $$? = 0 ] || exit 1; done

archive:
	@rm -rf ${PKGNAME}-%{VERSION}.tar.gz
	@rm -rf /tmp/${PKGNAME}-$(VERSION) /tmp/${PKGNAME}
	@dir=$$PWD; cd /tmp; cp -a $$dir ${PKGNAME}
	@rm -f /tmp/${PKGNAME}/${PKGNAME}-daily.spec
	@mv /tmp/${PKGNAME} /tmp/${PKGNAME}-$(VERSION)
	@dir=$$PWD; cd /tmp; tar cvjf $$dir/${PKGNAME}-$(VERSION).tar.bz2 ${PKGNAME}-$(VERSION)
	@rm -rf /tmp/${PKGNAME}-$(VERSION)	
	@echo "The archive is in ${PKGNAME}-$(VERSION).tar.bz2"



Index: ChangeLog
===================================================================
RCS file: /cvs/fedora/extras-buildsys/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	25 Jun 2005 22:22:09 -0000	1.32
+++ ChangeLog	26 Jun 2005 14:52:23 -0000	1.33
@@ -1,5 +1,12 @@
 2005-06-25  Dan Williams <dcbw at redhat.com>
 
+    * We have a name: "(The) Plague".  We come to eat your packages.
+
+    * Add Makefiles, install common stuff in python site-packages,
+        and convert files to use config from /etc
+
+2005-06-25  Dan Williams <dcbw at redhat.com>
+
     * server/BuildMaster.py
       server/UserInterface.py
         - Make queries work again




More information about the fedora-extras-commits mailing list