Overview
Comment:Drop the -1-dev-all from debian package version, add direct link to deb package on homepage
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: b76977d3f8e337ccd8adea9f28b0fba770576f4a4aa119d0e17800cefc3cae1f
User & Date: bohwaz on 2023-01-08 20:51:08
Other Links: manifest | tags
Context
2023-01-08
20:54
Fix Debian package link on homepage check-in: 214ea26394 user: bohwaz tags: trunk
20:51
Drop the -1-dev-all from debian package version, add direct link to deb package on homepage check-in: b76977d3f8 user: bohwaz tags: trunk
20:10
Disable hyperlinks in printing check-in: 7255cd0856 user: bohwaz tags: trunk, stable
Changes

Modified debian/makedeb.sh from [8939d24aa3] to [0add980db8].

52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
    echo "Debian dest dir [$DEBROOT] not found. :("
    exit 2
}

rm -fr DEBIAN
mkdir DEBIAN

PACKAGE_DEB_VERSION=${PACKAGE_VERSION}-${DEB_REV}
DEBFILE=${THISDIR}/${PACKAGE_DEBNAME}-${PACKAGE_DEB_VERSION}-dev-${DEB_ARCH_NAME}.deb
PACKAGE_TIME=$(/bin/date)

rm -f ${DEBFILE}
echo "Creating .deb package [${DEBFILE}]..."

echo "Generating md5 sums..."
find ${DEBLOCALPREFIX} -type f -exec md5sum {} \; > DEBIAN/md5sums







|
|







52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
    echo "Debian dest dir [$DEBROOT] not found. :("
    exit 2
}

rm -fr DEBIAN
mkdir DEBIAN

PACKAGE_DEB_VERSION=${PACKAGE_VERSION}
DEBFILE=${THISDIR}/${PACKAGE_DEBNAME}-${PACKAGE_DEB_VERSION}.deb
PACKAGE_TIME=$(/bin/date)

rm -f ${DEBFILE}
echo "Creating .deb package [${DEBFILE}]..."

echo "Generating md5 sums..."
find ${DEBLOCALPREFIX} -type f -exec md5sum {} \; > DEBIAN/md5sums

Modified doc/index.md from [6b84ca51b8] to [a2e116a07d].

147
148
149
150
151
152
153


154
155
156
157
158
159
160
161
162
163
164

		if (days < 31) {
			time = Math.ceil(days) + ' jours';
		}
		else if (days >= 31) {
			time = Math.round(days / 30.5) + ' mois';
		}



		document.querySelector('#download').innerHTML = `<li><strong>Dernière version : ${last}</strong></li>
			<li><em>il y a ${time}</em></li>
			<li><a href="$ROOT/uv/${selected.name}">Télécharger</a></li>` + document.querySelector('#download').innerHTML;
	});
});
</script>

## C'est quoi ?

<a href="$ROOT/raw/7bb068963b9f6301b27b81fe925caae9e86a229b?m=image/png" target="_blank" style="float: right; margin: 1em;"><img src="/paheko/raw/7bb068963b9f6301b27b81fe925caae9e86a229b?m=image/png" alt="Liste des membres" width="400" /></a>







>
>



|







147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166

		if (days < 31) {
			time = Math.ceil(days) + ' jours';
		}
		else if (days >= 31) {
			time = Math.round(days / 30.5) + ' mois';
		}

		let deb = selected.name.replace(/\.tar\..*$/, '.deb');

		document.querySelector('#download').innerHTML = `<li><strong>Dernière version : ${last}</strong></li>
			<li><em>il y a ${time}</em></li>
			<li><a href="$ROOT/uv/${selected.name}">Télécharger</a><br /><small><a href="$ROOT/uv/${deb}">(paquet Debian)</a></small></li>` + document.querySelector('#download').innerHTML;
	});
});
</script>

## C'est quoi ?

<a href="$ROOT/raw/7bb068963b9f6301b27b81fe925caae9e86a229b?m=image/png" target="_blank" style="float: right; margin: 1em;"><img src="/paheko/raw/7bb068963b9f6301b27b81fe925caae9e86a229b?m=image/png" alt="Liste des membres" width="400" /></a>

Modified src/Makefile from [0124ed0e00] to [a03d6af5fa].

54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
publish: release deb
	$(eval VERSION=$(shell cat VERSION))
	gpg --armor --detach-sign paheko-${VERSION}.tar.gz
	fossil uv sync
	#fossil uv ls | fgrep -v 'paheko-0.8.5' | grep '^paheko-.*\.(tar\.bz2|deb)' | xargs fossil uv rm
	fossil uv add paheko-${VERSION}.tar.gz
	fossil uv add paheko-${VERSION}.tar.gz.asc
	cd ../debian && fossil uv add paheko-${VERSION}-*.deb
	cd ../tools && php make_installer.php > install.php && fossil uv add install.php && rm install.php
	fossil uv sync

check-dependencies:
	grep -hEo '^use \\?KD2\\[^; ]+|\\KD2\\[^\(:; ]+' -R include/lib/Garradin www | sed -r 's/^use \\?KD2\\|^\\KD2\\//' | sort | uniq

minify:
	cat `ls www/admin/static/styles/[0-9]*.css` | sed 's/\.\.\///' > www/admin/static/mini.css
	# Minify is only gaining 500 gzipped bytes (4kB uncompressed) but making things hard to read/hack
	#yui-compressor --nomunge www/admin/static/mini.css -o www/admin/static/mini.css







|










54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
publish: release deb
	$(eval VERSION=$(shell cat VERSION))
	gpg --armor --detach-sign paheko-${VERSION}.tar.gz
	fossil uv sync
	#fossil uv ls | fgrep -v 'paheko-0.8.5' | grep '^paheko-.*\.(tar\.bz2|deb)' | xargs fossil uv rm
	fossil uv add paheko-${VERSION}.tar.gz
	fossil uv add paheko-${VERSION}.tar.gz.asc
	cd ../debian && fossil uv add paheko-${VERSION}.deb
	cd ../tools && php make_installer.php > install.php && fossil uv add install.php && rm install.php
	fossil uv sync

check-dependencies:
	grep -hEo '^use \\?KD2\\[^; ]+|\\KD2\\[^\(:; ]+' -R include/lib/Garradin www | sed -r 's/^use \\?KD2\\|^\\KD2\\//' | sort | uniq

minify:
	cat `ls www/admin/static/styles/[0-9]*.css` | sed 's/\.\.\///' > www/admin/static/mini.css
	# Minify is only gaining 500 gzipped bytes (4kB uncompressed) but making things hard to read/hack
	#yui-compressor --nomunge www/admin/static/mini.css -o www/admin/static/mini.css