Staging
v0.5.1
https://foss.heptapod.net/mercurial/hgview
Revision 4976c2b7e549c8daad2f682dde626b361e9b43e4 authored by Mads Kiilerich on 24 August 2019, 17:16:00 UTC, committed by Mads Kiilerich on 24 August 2019, 17:16:00 UTC
Avoid
  No module named 'revisions_table'

The odd leading dot in the name of the fake .h header like
  <header>.revisions_table.h</header>
happens to give the desired
  from .revisions_table import ...
1 parent a85ff7b
Raw File
Tip revision: 4976c2b7e549c8daad2f682dde626b361e9b43e4 authored by Mads Kiilerich on 24 August 2019, 17:16:00 UTC
Use explicit relative imports in generated Qt _ui.py files - needed for py3
Tip revision: 4976c2b
Makefile
SOURCES=hgview.1.txt
#$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
PREFIX=/usr/local
MANDIR=$(PREFIX)/man
INSTALL=install -c

all: man html

man: $(MAN)

html: $(HTML)

%: %.xml
	xmlto man $*.xml

%.xml: %.txt
	asciidoc -d manpage -b docbook -o $@ $<

%.html: %.txt
	asciidoc -b html4 -o $@ $< || asciidoc -b html -o $@ $<

install: man
	for i in $(MAN) ; do \
	  subdir=`echo $$i | sed -n 's/..*\.\([0-9]\)$$/man\1/p'` ; \
	  $(INSTALL) -d $(DESTDIR)$(MANDIR)/$$subdir && \
	  $(INSTALL) $$i $(DESTDIR)$(MANDIR)/$$subdir ; \
	done

clean:
	$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)
back to top