diff options
author | Adam Stokes <adam.stokes@ubuntu.com> | 2013-04-26 12:57:01 -0400 |
---|---|---|
committer | Adam Stokes <adam.stokes@ubuntu.com> | 2013-04-26 12:57:01 -0400 |
commit | ae5747ed00406dc68ee18ca5c93a99831d7c7cf8 (patch) | |
tree | 04930ad88ff4efab69befe3510303fcc6b2c30dc /Makefile | |
parent | 56106cf824b241920027991c1c0d6acf1efbacd2 (diff) | |
download | sos-ae5747ed00406dc68ee18ca5c93a99831d7c7cf8.tar.gz |
Remove uneeded build tasks in Makefile
- Since removing the jboss/application server bits we no longer need
those build tasks in the Makefile.
- Remove building gpgkeys entirely since it is not referenced anywhere in
the code.
- Update the creation of tarballs to exclude-vcs directories such as .git, .bzr,
etc.
- Move build tasks from deb-unsign to deb because its less to type and still
properly explains what the task is.
Signed-off-by: Adam Stokes <adam.stokes@ubuntu.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 33 |
1 files changed, 5 insertions, 28 deletions
@@ -7,7 +7,7 @@ VERSION = $(shell echo `awk '/^Version:/ {print $$2}' sos.spec`) MAJOR = $(shell echo $(VERSION) | cut -f 1 -d '.') MINOR = $(shell echo $(VERSION) | cut -f 2 -d '.') RELEASE = $(shell echo `awk '/^Release:/ {gsub(/\%.*/,""); print $2}' sos.spec`) -REPO = http://github.com/sosreport +REPO = https://github.com/sosreport/sosreport SUBDIRS = po sos sos/plugins sos/policies PYFILES = $(wildcard *.py) @@ -15,9 +15,6 @@ PYFILES = $(wildcard *.py) # MSGCAT = /usr/local/Cellar/gettext/0.18.1.1/bin/msgcat MSGCAT = msgcat -# Default to Red Hat GPG template -GPG_TPL=rh - DIST_BUILD_DIR = dist-build RPM_DEFINES = --define "_topdir %(pwd)/$(DIST_BUILD_DIR)" \ --define "_builddir %{_topdir}" \ @@ -29,10 +26,8 @@ RPM = rpmbuild RPM_WITH_DIRS = $(RPM) $(RPM_DEFINES) ARCHIVE_DIR = $(DIST_BUILD_DIR)/$(NAME)-$(VERSION) -ARCHIVE_NAME = sosreport.zip SRC_BUILD = $(DIST_BUILD_DIR)/sdist PO_DIR = $(SRC_BUILD)/sos/po -ZIP_DEST = $(SRC_BUILD)/$(ARCHIVE_NAME) build: for d in $(SUBDIRS); do make -C $$d; [ $$? = 0 ] || exit 1 ; done @@ -50,18 +45,15 @@ install: updateversion install -m644 sos.conf.5.gz $(DESTDIR)/usr/share/man/man5/. install -m644 AUTHORS LICENSE README.md $(DESTDIR)/usr/share/$(NAME)/. install -m644 $(NAME).conf $(DESTDIR)/etc/$(NAME).conf - install -m644 gpgkeys/$(GPG_TPL)support.pub $(DESTDIR)/usr/share/$(NAME)/. for d in $(SUBDIRS); do make DESTDIR=`cd $(DESTDIR); pwd` -C $$d install; [ $$? = 0 ] || exit 1; done updateversion: sed 's/@SOSVERSION@/$(VERSION)/g' sos/__init__.py.in > sos/__init__.py - -$(NAME)-$(VERSION).tar.gz: clean gpgkey + +$(NAME)-$(VERSION).tar.gz: clean @mkdir -p $(ARCHIVE_DIR) @tar -cv sosreport sos doc man po sos.conf AUTHORS LICENSE README.md sos.spec Makefile | tar -x -C $(ARCHIVE_DIR) - @mkdir -p $(ARCHIVE_DIR)/gpgkeys - @cp gpgkeys/$(GPG_TPL)support.pub $(ARCHIVE_DIR)/gpgkeys/. - @tar Ccvzf $(DIST_BUILD_DIR) $(DIST_BUILD_DIR)/$(NAME)-$(VERSION).tar.gz $(NAME)-$(VERSION) + @tar Ccvzf $(DIST_BUILD_DIR) $(DIST_BUILD_DIR)/$(NAME)-$(VERSION).tar.gz $(NAME)-$(VERSION) --exclude-vcs clean: @rm -fv *~ .*~ changenew ChangeLog.old $(NAME)-$(VERSION).tar.gz sosreport.1.gz sos.conf.5.gz @@ -77,15 +69,10 @@ srpm: clean $(NAME)-$(VERSION).tar.gz rpm: clean $(NAME)-$(VERSION).tar.gz $(RPM_WITH_DIRS) -tb $(DIST_BUILD_DIR)/$(NAME)-$(VERSION).tar.gz -deb-unsign: clean $(NAME)-$(VERSION).tar.gz +deb: clean $(NAME)-$(VERSION).tar.gz @mv $(DIST_BUILD_DIR)/$(NAME)-$(VERSION).tar.gz ../$(NAME)-$(MAJOR)_$(MINOR).orig.tar.gz @debuild -us -uc -i -gpgkey: - @echo "Building gpg key" - @test -f gpgkeys/$(GPG_TPL)support.pub && echo "GPG key already exists." || \ - gpg --batch --gen-key gpgkeys/$(GPG_TPL).template - po: clean mkdir -p $(PO_DIR) for po in `ls po/*.po`; do \ @@ -95,15 +82,5 @@ po: clean cp $(PO_DIR)/sos_en.properties $(PO_DIR)/sos_en_US.properties cp $(PO_DIR)/sos_en.properties $(PO_DIR)/sos.properties -as7: po updateversion - cp -r sos/* $(SRC_BUILD)/sos/ - find $(SRC_BUILD)/sos/plugins/ -not -name "*as7.py" -not -name "*__init__.py" -type f -delete - -zip: po - zip -r $(ZIP_DEST) sos - zip -r $(ZIP_DEST) __run__.py - cd $(SRC_BUILD) && zip -r $(ARCHIVE_NAME) sos - cd $(SRC_BUILD) && rm -rf sos - test: nosetests -v --with-cover --cover-package=sos --cover-html |