Muehlenhoff has uploaded a new change for review. https://gerrit.wikimedia.org/r/204045
Change subject: * Simplify package build, also the stepping stone for adding a systemd unit file (T95055) ...................................................................... * Simplify package build, also the stepping stone for adding a systemd unit file (T95055) Change-Id: I4a3168d716a6a77c4e78c14bd217f821fa2b2d38 --- M debian/changelog M debian/compat M debian/control M debian/rules 4 files changed, 11 insertions(+), 86 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/operations/debs/ircecho refs/changes/45/204045/1 diff --git a/debian/changelog b/debian/changelog index 2377a6c..d76203f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +ircecho (1.4.2) trusty-wikimedia; urgency=medium + + * Simplify package build, also the stepping stone for adding a + systemd unit file (T95055) + + -- Moritz Muehlenhoff <[email protected]> Tue, 14 Apr 2015 14:04:24 +0200 + ircecho (1.4.1) trusty-wikimedia; urgency=low * Simplify file layout and directory structure diff --git a/debian/compat b/debian/compat index 1e8b314..ec63514 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -6 +9 diff --git a/debian/control b/debian/control index 7d0fc4d..a26423e 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Section: net Priority: extra Maintainer: Ryan Lane <[email protected]> -Build-Depends: debhelper (>= 4) +Build-Depends: debhelper (>= 9) Standards-Version: 1.0 Package: ircecho diff --git a/debian/rules b/debian/rules index 8d6bd51..2d33f6a 100755 --- a/debian/rules +++ b/debian/rules @@ -1,86 +1,4 @@ #!/usr/bin/make -f -# -*- makefile -*- -# Sample debian/rules that uses debhelper. -# This file was originally written by Joey Hess and Craig Small. -# As a special exception, when this file is copied by dh-make into a -# dh-make output file, you may use that output file without restriction. -# This special exception was added by Craig Small in version 0.37 of dh-make. -# Uncomment this to turn on verbose mode. -export DH_VERBOSE=1 - - - - - -configure: configure-stamp -configure-stamp: - dh_testdir - # Add here commands to configure the package. - - touch configure-stamp - - -build: build-stamp - -build-stamp: configure-stamp - dh_testdir - - # Add here commands to compile the package. - touch $@ - -clean: - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - - # Add here commands to clean up after the build process. - rm -rf build - - dh_clean - -install: build - dh_testdir - dh_testroot - #dh_prep - dh_installdirs - -# Build architecture-independent files here. -binary-indep: install - dh_testdir - dh_testroot - dh_installinit -n - -# Build architecture-dependent files here. -binary-arch: install - dh_testdir - dh_testroot -# dh_installchangelogs -# dh_installdocs -# dh_installexamples - dh_install -# dh_installmenu -# dh_installdebconf -# dh_installlogrotate -# dh_installemacsen -# dh_installpam -# dh_installmime -# dh_python -# dh_installinit -# dh_installcron -# dh_installinfo -# dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms -# dh_perl -# dh_makeshlibs - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure +%: + dh $@ -- To view, visit https://gerrit.wikimedia.org/r/204045 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I4a3168d716a6a77c4e78c14bd217f821fa2b2d38 Gerrit-PatchSet: 1 Gerrit-Project: operations/debs/ircecho Gerrit-Branch: master Gerrit-Owner: Muehlenhoff <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
