mirror of
https://github.com/clearlinux/common.git
synced 2026-06-16 11:06:15 +00:00
Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b9d3725172 | |||
| d2c0eea1d2 | |||
| 038007f64a | |||
| 930a8bd3f7 | |||
| 33c27808a6 | |||
| f9b7f544be | |||
| 6fe60137f4 | |||
| b32e466635 | |||
| 755bd91716 | |||
| d2b615d14b | |||
| 71b5075a7b | |||
| fd6bcb7b24 | |||
| 771b704606 | |||
| b3ea1cd421 | |||
| 752274f532 | |||
| 1addfd447d | |||
| 8546a126bd | |||
| 280d5471d7 | |||
| 025c9a74f1 | |||
| b03db840a6 | |||
| 59dfc2236f | |||
| e61ebaafc6 | |||
| 4bcceb402e | |||
| 5e15b47efc | |||
| 043265171f | |||
| 982d58e0e6 | |||
| accf578c02 | |||
| efe2b2bccf | |||
| 9f77cbb6e3 | |||
| bd6c14938b | |||
| 32729558d9 | |||
| b2ad8dbda8 | |||
| e545190de3 | |||
| 9921115897 |
+11
-3
@@ -186,8 +186,8 @@ autospec: preautospec-checks pullrebase localreponotice clean-old-content
|
||||
bash update_changelog.sh ; \
|
||||
git commit --amend --no-edit Change* ; \
|
||||
fi
|
||||
git show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ;
|
||||
git show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py ;
|
||||
git diff | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ;
|
||||
git diff | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py ;
|
||||
|
||||
#help autospecnogit: Runs autospec, but does not create a commit
|
||||
autospecnogit:
|
||||
@@ -320,7 +320,7 @@ scratch: $(SPECFILE) upstream $(SRPMFILE) kojidef
|
||||
|
||||
#help scratch-wait: Performs scratch-build on package.
|
||||
scratch-wait: $(SPECFILE) upstream $(SRPMFILE) kojidef
|
||||
$(KOJI_CMD) build --scratch $(KOJI_TAG) $(SRPMFILE)
|
||||
$(KOJI_CMD) build --scratch --wait $(KOJI_TAG) $(SRPMFILE)
|
||||
|
||||
#help koji-nowait: Same as 'make koji', but do not block
|
||||
koji-nowait:
|
||||
@@ -425,11 +425,19 @@ install-debuginfo-local:
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
find $$tmpdir/usr/share/debug/ -mindepth 1 -maxdepth 1 -regextype awk -regex '.*/(.build-id|boot|lib|sbin|usr)$$' 2> /dev/null | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
dest=/var/cache/debuginfo/src; \
|
||||
find $$tmpdir/usr/src/debug/ -mindepth 1 -maxdepth 1 2> /dev/null | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
find $$tmpdir/usr/share/debug/src/ -mindepth 1 -maxdepth 1 2> /dev/null | while read -r d; do \
|
||||
sudo chown -R dbginfo:dbginfo "$$d"; \
|
||||
sudo cp -a "$$d" $$dest/; \
|
||||
done; \
|
||||
sudo rm -rf $$tmpdir; \
|
||||
echo "done"
|
||||
|
||||
|
||||
+6
-4
@@ -226,10 +226,12 @@ autospecnew: preautospecnew-checks localreponotice
|
||||
$${SETVERSION:+ --version $${SETVERSION}} \
|
||||
${NON_INTERACTIVE} ${SKIP_GIT} ${CLEANUP} \
|
||||
$(URL); \
|
||||
[ $$? -eq 0 ] && $(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||
git show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py > for-review.txt ; \
|
||||
git show | grep -q index || python3 $(TOPLVL)/projects/common/patchfilter.py ; \
|
||||
if [ $$? -eq 0 ]; then \
|
||||
$(MAKE) link-new-rpms PKG_REPO_DIR="${TOPLVL}/packages/${NAME}"; \
|
||||
$(TOPLVL)/projects/common/checkblacklist.sh $(TOPLVL)/projects/common/blacklist $(TOPLVL)/packages/${NAME}/results/*.rpm; \
|
||||
python3 $(TOPLVL)/projects/common/patchfilter.py <(git -C $(TOPLVL)/packages/$(NAME) show) > $(TOPLVL)/packages/$(NAME)/for-review.txt; \
|
||||
python3 $(TOPLVL)/projects/common/patchfilter.py <(git -C $(TOPLVL)/packages/$(NAME) show); \
|
||||
fi; \
|
||||
else \
|
||||
echo "$(NAME) already exists at $(TOPLVL)/packages/$(NAME)"; \
|
||||
exit 1; \
|
||||
|
||||
@@ -60,6 +60,7 @@ PasteDeploy
|
||||
Pillow
|
||||
Pint
|
||||
PyDispatcher
|
||||
PyICU
|
||||
PyJWT
|
||||
PyMySQL
|
||||
PyNaCl
|
||||
@@ -323,6 +324,7 @@ R-dotCall64
|
||||
R-downloader
|
||||
R-dplyr
|
||||
R-drc
|
||||
R-dtplyr
|
||||
R-dtw
|
||||
R-dygraphs
|
||||
R-dynlm
|
||||
@@ -393,6 +395,7 @@ R-fossil
|
||||
R-fpc
|
||||
R-fracdiff
|
||||
R-fs
|
||||
R-fst
|
||||
R-futile.logger
|
||||
R-futile.options
|
||||
R-future
|
||||
@@ -436,6 +439,7 @@ R-haplo.stats
|
||||
R-haven
|
||||
R-hdrcde
|
||||
R-here
|
||||
R-hexView
|
||||
R-hexbin
|
||||
R-highlight
|
||||
R-highr
|
||||
@@ -453,6 +457,7 @@ R-ica
|
||||
R-igraph
|
||||
R-import
|
||||
R-ineq
|
||||
R-influenceR
|
||||
R-ini
|
||||
R-inline
|
||||
R-inum
|
||||
@@ -490,6 +495,7 @@ R-leaps
|
||||
R-lfe
|
||||
R-lhs
|
||||
R-libcoin
|
||||
R-lintr
|
||||
R-listenv
|
||||
R-listviewer
|
||||
R-lle
|
||||
@@ -664,6 +670,7 @@ R-rbenchmark
|
||||
R-rcmdcheck
|
||||
R-reactR
|
||||
R-reactlog
|
||||
R-readODS
|
||||
R-readr
|
||||
R-readstata13
|
||||
R-readxl
|
||||
@@ -680,6 +687,7 @@ R-reprex
|
||||
R-reshape
|
||||
R-reshape2
|
||||
R-reticulate
|
||||
R-rex
|
||||
R-rgenoud
|
||||
R-rgeos
|
||||
R-rgl
|
||||
@@ -692,6 +700,7 @@ R-rjags
|
||||
R-rjstat
|
||||
R-rlang
|
||||
R-rmarkdown
|
||||
R-rmatio
|
||||
R-rms
|
||||
R-rmutil
|
||||
R-rncl
|
||||
@@ -713,6 +722,7 @@ R-rsdmx
|
||||
R-rstan
|
||||
R-rstanarm
|
||||
R-rstantools
|
||||
R-rstudio
|
||||
R-rstudioapi
|
||||
R-rsvg
|
||||
R-runjags
|
||||
@@ -772,6 +782,7 @@ R-startupmsg
|
||||
R-statip
|
||||
R-statmod
|
||||
R-statnet.common
|
||||
R-stringdist
|
||||
R-stringi
|
||||
R-stringr
|
||||
R-strucchange
|
||||
@@ -827,6 +838,7 @@ R-varImp
|
||||
R-vcd
|
||||
R-vcdExtra
|
||||
R-vcr
|
||||
R-vctrs
|
||||
R-vegan
|
||||
R-vioplot
|
||||
R-viridis
|
||||
@@ -864,6 +876,8 @@ SDL_image
|
||||
SDL_mixer
|
||||
SDL_net
|
||||
SDL_ttf
|
||||
SFCGAL
|
||||
SFML
|
||||
SPIRV-Headers
|
||||
SPIRV-Tools
|
||||
SQLAlchemy
|
||||
@@ -965,6 +979,7 @@ anyjson
|
||||
apache-ant
|
||||
apache-hadoop
|
||||
apache-kafka
|
||||
apache-libcloud
|
||||
apache-maven
|
||||
apache-spark
|
||||
apache-zookeeper
|
||||
@@ -979,6 +994,7 @@ argcomplete
|
||||
argon2
|
||||
argon2_cffi
|
||||
argparse
|
||||
aria2
|
||||
ark
|
||||
armadillo
|
||||
artikulate
|
||||
@@ -1143,6 +1159,7 @@ catch2
|
||||
catkin
|
||||
catkin_pkg
|
||||
ccache
|
||||
ccid
|
||||
ceilometer
|
||||
ceph
|
||||
ceph-deploy
|
||||
@@ -1213,6 +1230,7 @@ cnf
|
||||
cni
|
||||
cni-plugins
|
||||
cockpit
|
||||
codec2
|
||||
codecov
|
||||
cogl
|
||||
coinmp
|
||||
@@ -1239,16 +1257,19 @@ collectl
|
||||
colorama
|
||||
colord
|
||||
colord-gtk
|
||||
columbiad
|
||||
comedilib
|
||||
comfortaa-fonts
|
||||
commonmark
|
||||
compat-SDL2-soname1
|
||||
compat-cryptsetup-soname4
|
||||
compat-curl-gnutls-soname4
|
||||
compat-double-conversion-soname1
|
||||
compat-efivar-soname0
|
||||
compat-enchant-soname1
|
||||
compat-exiv2-soname26
|
||||
compat-fuse-soname2
|
||||
compat-gdal-soname20
|
||||
compat-gegl
|
||||
compat-gegl-0.3
|
||||
compat-glew-soname1
|
||||
@@ -1286,6 +1307,7 @@ compat-poppler-soname78
|
||||
compat-poppler-soname82
|
||||
compat-poppler-soname83
|
||||
compat-poppler-soname86
|
||||
compat-proj-soname13
|
||||
compat-protobuf-soname14
|
||||
compat-protobuf-soname15
|
||||
compat-python36
|
||||
@@ -1315,6 +1337,7 @@ cpio
|
||||
cppcheck
|
||||
cpprestsdk
|
||||
cppunit
|
||||
cppzmq
|
||||
cpuid
|
||||
cpuloadgen
|
||||
cracklib
|
||||
@@ -1520,6 +1543,7 @@ edk2
|
||||
efibootmgr
|
||||
efitools
|
||||
efivar
|
||||
efl
|
||||
eigen
|
||||
elasticsearch
|
||||
elasticsearch-dep
|
||||
@@ -1529,9 +1553,11 @@ elfutils
|
||||
elixir
|
||||
ell
|
||||
emacs
|
||||
emacs-x11
|
||||
embree
|
||||
empy
|
||||
enchant
|
||||
enlightenment
|
||||
entrypoints
|
||||
enum34
|
||||
envs
|
||||
@@ -1541,12 +1567,15 @@ epm
|
||||
epydoc
|
||||
eternalegypt
|
||||
ethtool
|
||||
etr
|
||||
evdev
|
||||
eventlet
|
||||
eventviews
|
||||
evince
|
||||
evolution
|
||||
evolution-data-server
|
||||
evolution-ews
|
||||
evtest
|
||||
execnet
|
||||
exempi
|
||||
exiv2
|
||||
@@ -1564,11 +1593,13 @@ fann2
|
||||
farstream
|
||||
fasteners
|
||||
fastimport
|
||||
fastnumbers
|
||||
fcgi
|
||||
fcoe-utils
|
||||
fdm_materials
|
||||
feh
|
||||
fetchmail
|
||||
ffmpegthumbs
|
||||
fftw
|
||||
file
|
||||
file-roller
|
||||
@@ -1599,6 +1630,7 @@ flex
|
||||
flmsg
|
||||
flnet
|
||||
fltk
|
||||
fluidsynth
|
||||
folks
|
||||
font-util
|
||||
fontconfig
|
||||
@@ -1606,6 +1638,7 @@ fontforge
|
||||
fonttools
|
||||
fossil
|
||||
frameworkintegration
|
||||
freedv
|
||||
freeglut
|
||||
freeipmi
|
||||
freetype
|
||||
@@ -1629,6 +1662,8 @@ gawk
|
||||
gc
|
||||
gcab
|
||||
gcc
|
||||
gcc7
|
||||
gcc8
|
||||
gcompris-qt
|
||||
gcr
|
||||
gcs-oauth2-boto-plugin
|
||||
@@ -1655,6 +1690,7 @@ gftp
|
||||
ghc
|
||||
ghostscript
|
||||
gimp
|
||||
girara
|
||||
git
|
||||
git-gui
|
||||
gitdb2
|
||||
@@ -1687,6 +1723,7 @@ gnome-applets
|
||||
gnome-autoar
|
||||
gnome-backgrounds
|
||||
gnome-bluetooth
|
||||
gnome-boxes
|
||||
gnome-calculator
|
||||
gnome-calendar
|
||||
gnome-characters
|
||||
@@ -1744,6 +1781,7 @@ gperf
|
||||
gperftools
|
||||
gpgme
|
||||
gphoto2
|
||||
gpm
|
||||
gpredict
|
||||
gptfdisk
|
||||
gradle
|
||||
@@ -1765,6 +1803,7 @@ grpcio
|
||||
grub
|
||||
gsettings-desktop-schemas
|
||||
gsl
|
||||
gsm
|
||||
gsound
|
||||
gspell
|
||||
gst-plugins-bad
|
||||
@@ -1802,6 +1841,7 @@ hardlink
|
||||
harfbuzz
|
||||
haskell-random
|
||||
hdf5
|
||||
hdmedians
|
||||
hdparm
|
||||
heat
|
||||
helloworld
|
||||
@@ -1921,6 +1961,7 @@ jedi-vim
|
||||
jeepney
|
||||
jemalloc
|
||||
jmespath
|
||||
joblib
|
||||
joe
|
||||
josepy
|
||||
jq
|
||||
@@ -1997,6 +2038,7 @@ kde-dev-utils
|
||||
kde-gtk-config
|
||||
kdebugsettings
|
||||
kdeclarative
|
||||
kdeconnect-kde
|
||||
kdecoration
|
||||
kded
|
||||
kdeedu-data
|
||||
@@ -2150,7 +2192,13 @@ ktimer
|
||||
ktnef
|
||||
ktp-approver
|
||||
ktp-common-internals
|
||||
ktp-contact-list
|
||||
ktp-contact-runner
|
||||
ktp-desktop-applets
|
||||
ktp-filetransfer-handler
|
||||
ktp-kded-module
|
||||
ktp-send-file
|
||||
ktp-text-ui
|
||||
ktuberling
|
||||
kturtle
|
||||
kubernetes
|
||||
@@ -2278,6 +2326,7 @@ libgit2-glib
|
||||
libglade
|
||||
libgnome-keyring
|
||||
libgnomekbd
|
||||
libgovirt
|
||||
libgpg-error
|
||||
libgphoto2
|
||||
libgravatar
|
||||
@@ -2332,6 +2381,7 @@ libmtp
|
||||
libmwaw
|
||||
libmypaint
|
||||
libndp
|
||||
libnetfilter_acct
|
||||
libnetfilter_conntrack
|
||||
libnetfilter_cthelper
|
||||
libnetfilter_cttimeout
|
||||
@@ -2401,6 +2451,7 @@ libtheora
|
||||
libtirpc
|
||||
libtk-img
|
||||
libtool
|
||||
libtorrent-rasterbar
|
||||
libudev0-shim
|
||||
libuev
|
||||
libuninameslist
|
||||
@@ -2450,6 +2501,7 @@ linecache2
|
||||
links
|
||||
linux
|
||||
linux-aws
|
||||
linux-current
|
||||
linux-firmware
|
||||
linux-firmware-ipu
|
||||
linux-gce
|
||||
@@ -2464,7 +2516,9 @@ linux-kvm
|
||||
linux-libc-headers
|
||||
linux-lts2017
|
||||
linux-lts2018
|
||||
linux-mainline
|
||||
linux-networktest
|
||||
linux-next
|
||||
linux-oracle
|
||||
linux-preempt-rt
|
||||
linux-steam-integration
|
||||
@@ -2478,6 +2532,7 @@ lm-sensors
|
||||
lmdb
|
||||
locket
|
||||
locustio
|
||||
log4cpp
|
||||
logilab-common
|
||||
logrotate
|
||||
logutils
|
||||
@@ -2493,6 +2548,7 @@ lua
|
||||
lua52
|
||||
lualgi
|
||||
luarocks
|
||||
lutris
|
||||
lxml
|
||||
lxqt-about
|
||||
lxqt-admin
|
||||
@@ -2587,7 +2643,9 @@ mpc
|
||||
mpfr
|
||||
mpg123
|
||||
mpi4py
|
||||
mpir
|
||||
mpmath
|
||||
mpv
|
||||
mraa
|
||||
msgpack
|
||||
msm
|
||||
@@ -2615,10 +2673,12 @@ mycroft-core
|
||||
mypaint-brushes
|
||||
mypy
|
||||
mypy_extensions
|
||||
mysqltcl
|
||||
mythes
|
||||
nagios-plugins
|
||||
nano
|
||||
nasm
|
||||
natsort
|
||||
nautilus
|
||||
nbconvert
|
||||
nbformat
|
||||
@@ -2637,6 +2697,7 @@ net-tools
|
||||
netaddr
|
||||
netbase
|
||||
netcdf
|
||||
netdata
|
||||
netdisco
|
||||
netifaces
|
||||
netkit-telnet
|
||||
@@ -3543,6 +3604,7 @@ plasma-workspace-wallpapers
|
||||
pluggy
|
||||
ply
|
||||
plzip
|
||||
pm-graph
|
||||
pmdk
|
||||
polkit
|
||||
polkit-kde-agent
|
||||
@@ -3554,6 +3616,7 @@ portaudio
|
||||
portend
|
||||
positional
|
||||
posix_ipc
|
||||
postgis
|
||||
postgresql
|
||||
potrace
|
||||
povray
|
||||
@@ -3710,7 +3773,6 @@ python-swiftclient
|
||||
python-systemd
|
||||
python-tabulate
|
||||
python-tappy
|
||||
python-toml
|
||||
python-troveclient
|
||||
python-urwid
|
||||
python-utils
|
||||
@@ -3730,11 +3792,13 @@ pywbem
|
||||
pyxattr
|
||||
pyxdg
|
||||
pyzmq
|
||||
qbittorrent
|
||||
qca-qt5
|
||||
qemu
|
||||
qemu-guest-additions
|
||||
qemu-lite
|
||||
qgit
|
||||
qhull
|
||||
qml-box2d
|
||||
qpdf
|
||||
qpid-python
|
||||
@@ -3785,8 +3849,11 @@ quazip
|
||||
quilt
|
||||
qwt
|
||||
rabbitmq-c
|
||||
rabbitmq-java-client
|
||||
rabbitmq-java-client-dep
|
||||
rabbitmq-server
|
||||
radvd
|
||||
rage
|
||||
ragel
|
||||
raptor2
|
||||
rasqal
|
||||
@@ -3801,6 +3868,7 @@ recommonmark
|
||||
redis
|
||||
redis-native
|
||||
redland
|
||||
redshift
|
||||
redsocks
|
||||
renderdoc
|
||||
reno
|
||||
@@ -3868,6 +3936,7 @@ scikit-image
|
||||
scikit-learn
|
||||
scipy
|
||||
scons
|
||||
scowl
|
||||
screen
|
||||
scripttest
|
||||
scrypt
|
||||
@@ -3888,6 +3957,7 @@ setproctitle
|
||||
setserial
|
||||
setuptools
|
||||
setuptools-legacy
|
||||
setuptools-markdown
|
||||
setuptools_scm
|
||||
setuptools_scm_git_archive
|
||||
setxkbmap
|
||||
@@ -4035,7 +4105,10 @@ tensorflow-probability
|
||||
termcolor
|
||||
terminado
|
||||
terminaltables
|
||||
terminology
|
||||
terminus-font
|
||||
test-generator
|
||||
testdisk
|
||||
testpath
|
||||
testrepository
|
||||
testresources
|
||||
@@ -4070,6 +4143,7 @@ tk
|
||||
tmux
|
||||
todoist
|
||||
tokyocabinet
|
||||
toml
|
||||
toolz
|
||||
tooz
|
||||
tornado
|
||||
@@ -4144,9 +4218,11 @@ virt-manager
|
||||
virt-viewer
|
||||
virtualenv
|
||||
vlc
|
||||
volk
|
||||
volume_key
|
||||
voluptuous
|
||||
voluptuous-serialize
|
||||
vpnc
|
||||
vsqlite
|
||||
vte
|
||||
waffle
|
||||
@@ -4168,6 +4244,7 @@ weechat
|
||||
weston
|
||||
wget
|
||||
wheel
|
||||
wheelhouse-uploader
|
||||
which
|
||||
whois
|
||||
widgetsnbextension
|
||||
@@ -4178,6 +4255,7 @@ wireshark
|
||||
woff2
|
||||
wok
|
||||
wol
|
||||
wordpress
|
||||
wpa_supplicant
|
||||
wrapt
|
||||
wsgi_intercept
|
||||
@@ -4205,7 +4283,6 @@ xdg-user-dirs-gtk
|
||||
xdg-utils
|
||||
xdotool
|
||||
xdpyinfo
|
||||
xemacs
|
||||
xerces-c
|
||||
xf86-input-evdev
|
||||
xf86-input-libinput
|
||||
@@ -4265,6 +4342,7 @@ xterm
|
||||
xtrans
|
||||
xvfb-run
|
||||
xwd
|
||||
xwdrun
|
||||
xwininfo
|
||||
xz
|
||||
yajl
|
||||
@@ -4283,6 +4361,7 @@ yum
|
||||
yum-metadata-parser
|
||||
zVMCloudConnector
|
||||
zake
|
||||
zathura
|
||||
zc.lockfile
|
||||
zenity
|
||||
zeroconf
|
||||
|
||||
@@ -205,6 +205,7 @@ def main():
|
||||
zap_entire_file("b/.gitignore")
|
||||
zap_entire_file("b/upstream")
|
||||
zap_entire_file("b/NEWS")
|
||||
zap_entire_file("b/ChangeLog")
|
||||
zap_entire_file_end("xz.sig")
|
||||
zap_entire_file_end("gz.sig")
|
||||
zap_entire_file_end("bz2.sig")
|
||||
@@ -335,6 +336,8 @@ def main():
|
||||
zap_plus_line_in_file("symbols")
|
||||
zap_plus_line_in_file("symbols32")
|
||||
|
||||
zap_entire_file("b/whatrequires")
|
||||
|
||||
zap_empty_chunks()
|
||||
|
||||
print_all()
|
||||
|
||||
Reference in New Issue
Block a user