forked from avocado-framework/avocado-vt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: use Makefile.include from Avocado
To allow for a better development/packaging experience, let's use the same rules accross Avocado projects. This syncs Makefile.include to the exact same version proposed on Avocado. Signed-off-by: Cleber Rosa <[email protected]>
- Loading branch information
Showing
2 changed files
with
36 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
source: clean | ||
if test ! -d SOURCES; then mkdir SOURCES; fi | ||
git archive --prefix="$(ARCHIVE_BASE_NAME)-$(COMMIT)/" -o "SOURCES/$(ARCHIVE_BASE_NAME)-$(SHORT_COMMIT).tar.gz" HEAD | ||
|
||
source-release: clean | ||
if test ! -d SOURCES; then mkdir SOURCES; fi | ||
git archive --prefix="$(ARCHIVE_BASE_NAME)-$(VERSION)/" -o "SOURCES/$(ARCHIVE_BASE_NAME)-$(VERSION).tar.gz" $(VERSION) | ||
|
||
install: | ||
$(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE) | ||
|
||
srpm: source | ||
if test ! -d BUILD/SRPM; then mkdir -p BUILD/SRPM; fi | ||
mock -r $(MOCK_CONFIG) --resultdir BUILD/SRPM -D "rel_build 0" -D "commit $(COMMIT)" -D "commit_date $(COMMIT_DATE)" --buildsrpm --spec $(RPM_BASE_NAME).spec --sources SOURCES | ||
|
||
rpm: srpm | ||
if test ! -d BUILD/RPM; then mkdir -p BUILD/RPM; fi | ||
mock -r $(MOCK_CONFIG) --resultdir BUILD/RPM -D "rel_build 0" -D "commit $(COMMIT)" -D "commit_date $(COMMIT_DATE)" --rebuild BUILD/SRPM/$(RPM_BASE_NAME)-$(VERSION)-*.src.rpm | ||
|
||
srpm-release: source-release | ||
if test ! -d BUILD/SRPM; then mkdir -p BUILD/SRPM; fi | ||
mock -r $(MOCK_CONFIG) --resultdir BUILD/SRPM -D "rel_build 1" --buildsrpm --spec $(RPM_BASE_NAME).spec --sources SOURCES | ||
|
||
rpm-release: srpm-release | ||
if test ! -d BUILD/RPM; then mkdir -p BUILD/RPM; fi | ||
mock -r $(MOCK_CONFIG) --resultdir BUILD/RPM -D "rel_build 1" --rebuild BUILD/SRPM/$(RPM_BASE_NAME)-$(VERSION)-*.src.rpm | ||
|
||
pip: | ||
$(PYTHON) -m pip --version || $(PYTHON) -m ensurepip $(PYTHON_DEVELOP_ARGS) || $(PYTHON) -c "import os; import sys; import urllib; f = urllib.urlretrieve('https://bootstrap.pypa.io/get-pip.py')[0]; os.system('%s %s' % (sys.executable, f))" |