1
0
Fork 0
knot-resolver/debian/README.source
Daniel Baumann 36534beaa3
Adding debian version 5.7.5-1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-21 13:56:18 +02:00

70 lines
2 KiB
Text

Tracking upstream sources in git
--------------------------------
This debian package is tracked in the git "debian/master" branch at
https://salsa.debian.org/dns-team/knot-resolver, which
includes the commits from the upstream git repository at
https://gitlab.labs.nic.cz/knot/knot-resolver.git. When importing
upstream tarballs, make sure you've fetched from the upstream repo
before using "gbp import-orig" the tarball. We rely on
upstream-vcs-tag from debian/gbp.conf to link upstream git history
with new package history.
See Joey Hess's thoughts about why tracking upstream git history is
useful: https://joeyh.name/blog/entry/upstream_git_repositories/, as
well as DEP-14 for the branch-naming scheme:
http://dep.debian.net/deps/dep14/
Rebuilding epoch.js and epoch.css
---------------------------------
If you need to rebuild epoch.js and epoch.css using only tools
available in Debian, read gulpfile.js in d/missing-sources/epoch/ and
adjust following script if any files has been changed. You also need
to install ruby-sass, coffeescript and node-uglify
cat > build.sh << EOF
#!/bin/sh
coffee -b -c \
src/epoch.coffee \
src/core/context.coffee \
src/core/util.coffee \
src/core/d3.coffee \
src/core/format.coffee \
src/core/chart.coffee \
src/core/css.coffee \
src/data.coffee \
src/model.coffee \
src/basic.coffee \
src/basic/*.coffee \
src/time.coffee \
src/time/*.coffee \
src/adapters.coffee \
src/adapters/*.coffee
cat \
src/epoch.js \
src/core/context.js \
src/core/util.js \
src/core/d3.js \
src/core/format.js \
src/core/chart.js \
src/core/css.js \
src/data.js \
src/model.js \
src/basic.js \
src/basic/*.js \
src/time.js \
src/time/*.js \
src/adapters.js \
src/adapters/*.js \
> dist/js/epoch.js
uglifyjs dist/js/epoch.js > dist/js/epoch.min.js
sass -t compact sass/epoch.scss > dist/css/epoch.css
sass -t compressed sass/epoch.scss > dist/css/epoch.min.css
EOF
-- Daniel Kahn Gillmor <dkg@fifthhorseman.net>, Thu, 22 Feb 2018 13:25:27 -0800