Changeset - 83f9fbc0a003
[Not reviewed]
default
0 7 0
drewp@bigasterisk.com - 20 months ago 2023-05-18 00:28:35
drewp@bigasterisk.com
setup tweaks
3 files changed:
Changeset was too big and was cut off... Show full diff anyway
0 comments (0 inline, 0 general)
.hgignore
Show inline comments
 
\.installed.cfg
 
\.coverage
 
\.keyboardcomposer\.savedlevels
 
\.light9-window-geometry
 
_test_show
 
bin/ipython
 
bin/python
 
dmx_usb_module/.gitignore
 
dmx_usb_module/Module.symvers
 
dmx_usb_module/build/temp.linux-x86_64-2.7
 
dmx_usb_module/dmx.c
 
dmx_usb_module/dmx_usb.ko
 
dmx_usb_module/dmx_usb_test
 
dmx_usb_module/modules.order
 
env
 
env_pi
 
lib/python2.7
 
# keep bower.json nonboring
 
light9/web/lib/[acdefghijklmnopqrstuvwyzQN]
 
show/dance20../music
 
show/dance201./sessions/?
 
show/dance2011
 
show/dance2012
 
show/dance2013/build
 
show/dance2014/build/?
 
show/dance2014/music
 
show/.*/spectrogram
 
show/.*/doc
 
stagesim/three.js-master
 
tkdnd
 
node_modules
 

	
 
lib/FlameGraph/
 
lib/pyflame/
 
show/dance..../capture
 
show/dance2017/networking.n3
 
show/dance2019/model/
 
show/dance2019/video/
 
show/dance2023/MeshroomCache/
 
show/dance2023/images/
 
show/dance2023/nstudio/
 
timelapse/
 
__pycache__
 
rgbled/build-nano328/
 
__pypackages__
 
work
.pdm.toml
Show inline comments
 
[python]
 
path = "/usr/bin/python"
 
path = "/usr/bin/python3.10"
makefile
Show inline comments
 
### setup ###
 

	
 
packages:
 
	sudo aptitude install -y \
 
		audacity \
 
		coffeescript \
 
		curl \
 
		git \
 
		libblas-dev \
 
		libcairo2-dev \
 
		libffi-dev \
 
		libjpeg8-dev \
 
		liblapack-dev \
 
		libssl-dev \
 
		libzmq3-dev \
 
		mercurial \
 
		nginx-core \
 
		nginx-full \
 
		normalize-audio \
 
		npm \
 
		python3-cairo-dev \
 
		python3-dev \
 
		python3-opencv \
 
		python3-pygame \
 
		python3-tk \
 
		sox \
 
		tix \
 
		zlib1g-dev
 

	
 
gst_packages:
 
	sudo aptitude install -y \
 
		gir1.2-goocanvas-2.0 \
 
		gir1.2-gst-plugins-base-1.0 \
 
		gir1.2-gstreamer-1.0 \
 
		gstreamer1.0-plugins-good \
 
		gstreamer1.0-pulseaudio \
 
		gstreamer1.0-tools \
 
		libgirepository-1.0-1 \
 
		libgirepository1.0-dev \
 
		python3-gi \
 
		python3-gst-1.0
 

	
 
pnpm:
 
	# holding pnpm back because we don't have the latest nodejs: https://pnpm.io/installation#compatibility
 
	sudo npm install -g pnpm@6.32.12
 
	sudo npm install -g pnpm@7.29.3
 

	
 
bin/node:
 
	ln -sf `which nodejs` bin/node
 

	
 
pdm_local_install:
 
	# drew has ~/bin in $PATH
 
	pip install "pdm==1.15.0"
 
	ln -s ../.local/bin/pdm ~/bin
 

	
 
js:
 
	pnpm install --reporter append-only
 

	
 
py:
 
	pdm sync
 

	
 
setup: packages gst_packages pnpm js py
 

	
 
deps: js py
 

	
 

	
 
tkdnd_build:
 
	# get tkdnd r95 with subversion
 
	# then apply tkdnd-patch-on-r95 to that
 
	cd tkdnd/trunk
 
	./configure
 
	make
 

	
 
push_github:
 
	hg bookmark -r default main && hg push git+ssh://git@github.com/drewp/light9.git
 

	
 
pull_github:
 
	hg pull git+ssh://git@github.com/drewp/light9.git
 

	
 
### build ###
 

	
 
coffee:
 
	zsh -c 'cd light9/web; ../../node_modules/coffeescript/bin/coffee --map -cw {.,live,timeline,paint,effects}/*.coffee'
 

	
 
### show ###
 

	
 
qlc_artnet_dmx_proxy:
 
	qlcplus --open cur/qlc.qxw
 

	
 
no_screen_blanking:
 
	xset s off
 
	xset -dpms
 

	
 
darcs_show_checkpoint:

Changeset was too big and was cut off... Show full diff anyway

0 comments (0 inline, 0 general)