this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

--exclude-vcs Breaks the DSC Build (#627)

* --exclude-vcs Breaks the DSC Build

* Allow Customizing Distro and Email

* Python 2 is required to build

* Remove Unneeded Arg

* Update lintian-overrides

* Prevent https://bugs.launchpad.net/launchpad/+bug/330711

authored by

TheBrokenRail and committed by
Andrew Hyatt
eeab5f5b 9aa47b60

+10 -8
+1 -1
debian/control
··· 3 3 Section: misc 4 4 Priority: optional 5 5 Standards-Version: 4.4.0 6 - Build-Depends: cmake, clang, bison, flex, libfuse-dev, libudev-dev, pkg-config, libc6-dev-i386, linux-headers-generic, gcc-multilib, libcairo2-dev, libgl1-mesa-dev, libtiff5-dev, libfreetype6-dev, libelf-dev, libxml2-dev, libegl1-mesa-dev, libfontconfig1-dev, libbsd-dev, debhelper, ninja-build 6 + Build-Depends: cmake, clang, bison, flex, libfuse-dev, libudev-dev, pkg-config, libc6-dev-i386, linux-headers-generic, gcc-multilib, libcairo2-dev, libgl1-mesa-dev, libtiff5-dev, libfreetype6-dev, libelf-dev, libxml2-dev, libegl1-mesa-dev, libfontconfig1-dev, libbsd-dev, debhelper, ninja-build, python2 7 7 8 8 Package: darling 9 9 Architecture: amd64
+1 -1
debian/rules
··· 1 1 #!/usr/bin/make -f 2 2 %: 3 - dh $@ --builddirectory=debbuild --parallel 3 + dh $@ --builddirectory=debbuild 4 4 5 5 override_dh_auto_configure: 6 6 mkdir debbuild
+2
debian/source/lintian-overrides
··· 2 2 darling source: autotools-pkg-config-macro-not-cross-compilation-safe * 3 3 darling source: source-contains-prebuilt-windows-binary * 4 4 darling source: maintainer-script-lacks-debhelper-token debian/* 5 + darling source: debhelper-but-no-misc-depends darling-dkms 6 + darling source: package-needs-versioned-debhelper-build-depends 10
+6 -6
tools/makedeb
··· 3 3 4 4 DATE=$(date +%Y%m%d) 5 5 rm -f debian/changelog 6 - EDITOR=true NAME="Darling build server" EMAIL=noreply@darlinghq.org dch -u low -v 0.1.${DATE} --create --distribution testing --package darling "Daily build" 6 + DISTRO=${DEB_DISTRO:-testing} 7 + VERSION=0.1.${DATE}~${DISTRO} 8 + EDITOR=true NAME="Darling build server" EMAIL=${DEB_EMAIL:-noreply@darlinghq.org} dch -u low -v ${VERSION} --create --distribution ${DISTRO} --package darling "Daily build" 7 9 8 10 if [ "$1" = "--dsc" ]; then 9 11 ARG='-S' 10 - if [ -e "../darling_0.1.${DATE}.orig.tar.xz" ]; then 11 - rm ../darling_0.1.${DATE}.orig.tar.xz 12 + if [ -e "../darling_${VERSION}.orig.tar.xz" ]; then 13 + rm ../darling_${VERSION}.orig.tar.xz 12 14 fi 13 - tar --exclude-vcs --exclude-vcs-ignores -cf ../darling_0.1.${DATE}.orig.tar . 14 - tar -rf ../darling_0.1.${DATE}.orig.tar debian/changelog 15 - xz ../darling_0.1.${DATE}.orig.tar 15 + tar -cJf ../darling_${VERSION}.orig.tar.xz . 16 16 else 17 17 ARG='-b' 18 18 fi