mirror of
https://github.com/clearlinux/common.git
synced 2026-07-14 00:35:53 +00:00
Compare commits
53 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dc5a8bd4ed | |||
| 337699759e | |||
| b4742ce76d | |||
| 2a95bfa0ba | |||
| a11d59cbb5 | |||
| f0cc040b91 | |||
| c55b2aee12 | |||
| 1e12976a64 | |||
| 165d207f03 | |||
| 7e1da9a64b | |||
| 23503a41af | |||
| d06ca6b262 | |||
| 8e0d099005 | |||
| c89e0eb2fd | |||
| e2f31cb9a0 | |||
| a733e9f48f | |||
| 57f1b9f792 | |||
| 08452bcc6f | |||
| 648e696701 | |||
| aa87b84d0d | |||
| a601daae51 | |||
| 0e69bbe5f1 | |||
| c976fe32c8 | |||
| 21cd35e7ab | |||
| 2cdd46b1ce | |||
| 081f8efa29 | |||
| 726481d384 | |||
| 49ce6661a3 | |||
| aba3ecef75 | |||
| bf40bb0056 | |||
| 8e349a2441 | |||
| c9a3ea50df | |||
| 1e4b77528c | |||
| e5fe3a6a3d | |||
| 27cb95023f | |||
| 4402706e5b | |||
| 046035907a | |||
| 43a3640492 | |||
| 30efe3f2e6 | |||
| 41bc67d5c3 | |||
| 791e62166b | |||
| 184466de12 | |||
| f62255e8c3 | |||
| 2d1a67d3b0 | |||
| 65c7cc8db6 | |||
| 5c7f52dc15 | |||
| 6d165ea0dd | |||
| c4ce7408a7 | |||
| 2cf46aa5a4 | |||
| a84e3f08e2 | |||
| 5322002ad9 | |||
| ad8fd73cfe | |||
| 347e0e60a5 |
+6
-6
@@ -31,11 +31,13 @@ $(proj_PKGS):
|
|||||||
@proj=$(patsubst proj_%,%,$@); \
|
@proj=$(patsubst proj_%,%,$@); \
|
||||||
[ -d projects/$$proj ] || ( \
|
[ -d projects/$$proj ] || ( \
|
||||||
echo "Checking out: projects/$$proj"; \
|
echo "Checking out: projects/$$proj"; \
|
||||||
git clone $(PRJ_BASE_URL)/$$proj projects/$$proj; \
|
|
||||||
cd projects/$$proj; \
|
|
||||||
if [ "$$proj" = "autospec" ] ; then \
|
if [ "$$proj" = "autospec" ] ; then \
|
||||||
git remote set-url --push origin git@github.com:clearlinux/autospec.git; \
|
git clone https://github.com/clearlinux/autospec.git projects/autospec; \
|
||||||
else \
|
else \
|
||||||
|
git clone $(PRJ_BASE_URL)/$$proj projects/$$proj; \
|
||||||
|
fi; \
|
||||||
|
cd projects/$$proj; \
|
||||||
|
if [ "$$proj" != "autospec" ] ; then \
|
||||||
$(call gitoliteurl,projects/$$proj); \
|
$(call gitoliteurl,projects/$$proj); \
|
||||||
fi; \
|
fi; \
|
||||||
$(call subjectprefix,$$proj); \
|
$(call subjectprefix,$$proj); \
|
||||||
@@ -76,9 +78,7 @@ ${PULL_PKGS}:
|
|||||||
fi ; \
|
fi ; \
|
||||||
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit $$O..$$N; echo; \
|
git --no-pager log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit $$O..$$N; echo; \
|
||||||
fi ; \
|
fi ; \
|
||||||
if [ "$$p" = "projects/autospec" ] ; then \
|
if [ "$$p" != "projects/autospec" ] ; then \
|
||||||
git remote set-url --push origin git@github.com:clearlinux/autospec.git; \
|
|
||||||
else \
|
|
||||||
$(call gitoliteurl,$$p); \
|
$(call gitoliteurl,$$p); \
|
||||||
fi ; \
|
fi ; \
|
||||||
else \
|
else \
|
||||||
|
|||||||
+2
-2
@@ -4,14 +4,14 @@ config_opts['legal_host_arches'] = ('x86_64',)
|
|||||||
config_opts['chroot_setup_cmd'] = 'groupinstall build srpm-build'
|
config_opts['chroot_setup_cmd'] = 'groupinstall build srpm-build'
|
||||||
config_opts['dist'] = 'clear' # only useful for --resultdir variable subst
|
config_opts['dist'] = 'clear' # only useful for --resultdir variable subst
|
||||||
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
|
config_opts['extra_chroot_dirs'] = [ '/run/lock', ]
|
||||||
config_opts['useradd'] = '/usr/sbin/useradd -m -u %(uid)s -g %(gid)s -d %(home)s %(user)s'
|
config_opts['useradd'] = '/usr/sbin/useradd -m -u {{chrootuid}} -g {{chrootgid}} -d {{chroothome}} {{chrootuser}}'
|
||||||
config_opts['plugin_conf']['ccache_enable'] = False
|
config_opts['plugin_conf']['ccache_enable'] = False
|
||||||
config_opts['plugin_conf']['root_cache_opts']['compress_program'] = 'zstd -5'
|
config_opts['plugin_conf']['root_cache_opts']['compress_program'] = 'zstd -5'
|
||||||
config_opts['plugin_conf']['root_cache_opts']['extension'] = '.zst'
|
config_opts['plugin_conf']['root_cache_opts']['extension'] = '.zst'
|
||||||
config_opts['releasever'] = 'clear'
|
config_opts['releasever'] = 'clear'
|
||||||
config_opts['package_manager'] = 'dnf'
|
config_opts['package_manager'] = 'dnf'
|
||||||
config_opts['chrootgroup'] = 'mockbuild'
|
config_opts['chrootgroup'] = 'mockbuild'
|
||||||
config_opts['use_bootstrap_container'] = False
|
config_opts['use_bootstrap'] = False
|
||||||
|
|
||||||
|
|
||||||
config_opts['dnf.conf'] = """
|
config_opts['dnf.conf'] = """
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ Aladdin
|
|||||||
Apache-1.0
|
Apache-1.0
|
||||||
Apache-1.1
|
Apache-1.1
|
||||||
Apache-2.0
|
Apache-2.0
|
||||||
|
App-s2p
|
||||||
Artistic-1.0
|
Artistic-1.0
|
||||||
Artistic-1.0-Perl
|
Artistic-1.0-Perl
|
||||||
Artistic-1.0-cl8
|
Artistic-1.0-cl8
|
||||||
@@ -138,17 +139,20 @@ CERN-OHL-W-2.0
|
|||||||
CNRI-Jython
|
CNRI-Jython
|
||||||
CNRI-Python
|
CNRI-Python
|
||||||
CNRI-Python-GPL-Compatible
|
CNRI-Python-GPL-Compatible
|
||||||
|
COIL-1.0
|
||||||
CPAL-1.0
|
CPAL-1.0
|
||||||
CPL-1.0
|
CPL-1.0
|
||||||
CPOL-1.02
|
CPOL-1.02
|
||||||
CUA-OPL-1.0
|
CUA-OPL-1.0
|
||||||
Caldera
|
Caldera
|
||||||
ClArtistic
|
ClArtistic
|
||||||
|
Community-Spec-1.0
|
||||||
Condor-1.1
|
Condor-1.1
|
||||||
Crossword
|
Crossword
|
||||||
CrystalStacker
|
CrystalStacker
|
||||||
Cube
|
Cube
|
||||||
D-FSL-1.0
|
D-FSL-1.0
|
||||||
|
DL-DE-BY-2.0
|
||||||
DOC
|
DOC
|
||||||
DRL-1.0
|
DRL-1.0
|
||||||
DSDP
|
DSDP
|
||||||
@@ -164,9 +168,11 @@ EUDatagrid
|
|||||||
EUPL-1.0
|
EUPL-1.0
|
||||||
EUPL-1.1
|
EUPL-1.1
|
||||||
EUPL-1.2
|
EUPL-1.2
|
||||||
|
Elastic-2.0
|
||||||
Entessa
|
Entessa
|
||||||
ErlPL-1.1
|
ErlPL-1.1
|
||||||
Eurosym
|
Eurosym
|
||||||
|
FDK-AAC
|
||||||
FSFAP
|
FSFAP
|
||||||
FSFUL
|
FSFUL
|
||||||
FSFULLR
|
FSFULLR
|
||||||
@@ -240,6 +246,7 @@ Intel-ACPI
|
|||||||
Interbase-1.0
|
Interbase-1.0
|
||||||
JPNIC
|
JPNIC
|
||||||
JSON
|
JSON
|
||||||
|
Jam
|
||||||
JasPer-2.0
|
JasPer-2.0
|
||||||
LAL-1.2
|
LAL-1.2
|
||||||
LAL-1.3
|
LAL-1.3
|
||||||
@@ -270,6 +277,7 @@ LiLiQ-R-1.1
|
|||||||
LiLiQ-Rplus-1.1
|
LiLiQ-Rplus-1.1
|
||||||
Libpng
|
Libpng
|
||||||
Linux-OpenIB
|
Linux-OpenIB
|
||||||
|
Linux-man-pages-copyleft
|
||||||
MIT
|
MIT
|
||||||
MIT-0
|
MIT-0
|
||||||
MIT-CMU
|
MIT-CMU
|
||||||
@@ -401,6 +409,7 @@ SSH-short
|
|||||||
SSPL-1.0
|
SSPL-1.0
|
||||||
SWL
|
SWL
|
||||||
Saxpath
|
Saxpath
|
||||||
|
SchemeReport
|
||||||
Sendmail
|
Sendmail
|
||||||
Sendmail-8.23
|
Sendmail-8.23
|
||||||
SimPL-2.0
|
SimPL-2.0
|
||||||
@@ -434,6 +443,7 @@ WTFPL
|
|||||||
Watcom-1.0
|
Watcom-1.0
|
||||||
Wsuipa
|
Wsuipa
|
||||||
X11
|
X11
|
||||||
|
X11-distribute-modifications-variant
|
||||||
XFree86-1.1
|
XFree86-1.1
|
||||||
XSkat
|
XSkat
|
||||||
Xerox
|
Xerox
|
||||||
|
|||||||
Reference in New Issue
Block a user