5 |
# Copyright (C) 2004-2005 Red Hat, Inc. |
# Copyright (C) 2004-2005 Red Hat, Inc. |
6 |
# Copyright (C) 2005 Fedora Foundation |
# Copyright (C) 2005 Fedora Foundation |
7 |
# |
# |
8 |
# $Id: Makefile.common,v 1.7 2009/10/12 21:01:25 slords Exp $ |
# $Id: Makefile.common,v 1.12 2013/11/11 14:41:28 unnilennium Exp $ |
9 |
|
|
10 |
# Define the common dir. |
# Define the common dir. |
11 |
# This needs to happen first. |
# This needs to happen first. |
95 |
|
|
96 |
# The repository and the clients we use for the files |
# The repository and the clients we use for the files |
97 |
REPOSITORY ?= http://buildsys.contribs.org/source |
REPOSITORY ?= http://buildsys.contribs.org/source |
98 |
UPLOAD_REPOSITORY ?= /builds/source |
UPLOAD_REPOSITORY ?= /build/builds/source |
99 |
|
|
100 |
# We define CURL and WGET in a way that makes if possible to have them |
# We define CURL and WGET in a way that makes if possible to have them |
101 |
# overwritten from the module's Makefiles. Then CLIENT picks CURL, otherwise WGET |
# overwritten from the module's Makefiles. Then CLIENT picks CURL, otherwise WGET |
291 |
|
|
292 |
CVS_ROOT := $(shell if [ -f CVS/Root ] ; then cat CVS/Root ; fi) |
CVS_ROOT := $(shell if [ -f CVS/Root ] ; then cat CVS/Root ; fi) |
293 |
CVS_REPOSITORY := $(shell if [ -f CVS/Repository ] ; then cat CVS/Repository ; fi) |
CVS_REPOSITORY := $(shell if [ -f CVS/Repository ] ; then cat CVS/Repository ; fi) |
294 |
CVS_URL := cvs://smecontribs.cvs.sourceforge.net:/cvsroot/smecontribs?$(CVS_REPOSITORY)\#$(TAG) |
CVS_URL := cvs://shell.koozali.org/cvs/smecontribs?$(CVS_REPOSITORY)\#$(TAG) |
295 |
|
|
296 |
## create a clean exported copy in $(TMPCVS) |
## create a clean exported copy in $(TMPCVS) |
297 |
export:: sources |
export:: sources |
322 |
done; |
done; |
323 |
|
|
324 |
## use this to build an srpm locally |
## use this to build an srpm locally |
325 |
|
ifneq (, $(filter contribs7 contribs8 contribs9, $(BRANCH))) |
326 |
|
srpm: sources $(TARGETS) |
327 |
|
$(RPM_WITH_DIRS) $(DIST_DEFINES) --define _source_filedigest_algorithm=md5 --nodeps -bs $(SPECFILE) |
328 |
|
else |
329 |
srpm: sources $(TARGETS) |
srpm: sources $(TARGETS) |
330 |
$(RPM_WITH_DIRS) $(DIST_DEFINES) --nodeps -bs $(SPECFILE) |
$(RPM_WITH_DIRS) $(DIST_DEFINES) --nodeps -bs $(SPECFILE) |
331 |
|
endif |
332 |
|
|
333 |
test-srpm: srpm |
test-srpm: srpm |
334 |
|
|
417 |
BODHI_USER=$(USER) |
BODHI_USER=$(USER) |
418 |
endif |
endif |
419 |
|
|
420 |
ifneq (, $(filter contribs7 contribs8, $(BRANCH))) |
ifneq (, $(filter contribs7 contribs8 contribs9, $(BRANCH))) |
421 |
update: bodhi |
update: bodhi |
422 |
endif |
endif |
423 |
|
|