commit
92ba212f91
@ -0,0 +1,6 @@
|
|||||||
|
synaptic-trinity (2014.10.10-1) maverick; urgency=low
|
||||||
|
|
||||||
|
* NIGHTLY BUILDS
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 28 Oct 2011 11:39:00 -0600
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
7
|
@ -0,0 +1,15 @@
|
|||||||
|
Source: synaptic-trinity
|
||||||
|
Section: misc
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>=5.0), cdbs
|
||||||
|
Standards-Version: 3.8.4
|
||||||
|
|
||||||
|
Package: synaptic-trinity
|
||||||
|
Priority: important
|
||||||
|
Architecture: all
|
||||||
|
Depends: synaptic
|
||||||
|
Description: Synaptic for the Trinity Desktop Environment
|
||||||
|
This package allows Synaptic to be launched without manually typing
|
||||||
|
a gain-root command such as tdesu each time; instead tdesu will be
|
||||||
|
automatically used to launch synaptic if this package is installed.
|
@ -0,0 +1,27 @@
|
|||||||
|
This is Debian GNU's GnuPG keyrings of archive keys.
|
||||||
|
|
||||||
|
This package was originally put together by Michael Vogt
|
||||||
|
<mvo@debian.org>
|
||||||
|
|
||||||
|
The keys in the keyrings don't fall under any copyright. Everything
|
||||||
|
else in the package is covered by the GNU GPL.
|
||||||
|
|
||||||
|
Debian support files Copyright (C) 2006 Michael Vogt <mvo@debian.org>
|
||||||
|
based on the debian-keyring package maintained by James Troup
|
||||||
|
|
||||||
|
Debian support files for debian-archive-keyring are free software; you
|
||||||
|
can redistribute them and/or modify them under the terms of the GNU
|
||||||
|
General Public License as published by the Free Software Foundation;
|
||||||
|
either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
|
Debian support files for debian-archive-keyring are distributed in the
|
||||||
|
hope that they will be useful, but WITHOUT ANY WARRANTY; without even
|
||||||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License with
|
||||||
|
your Debian system, in /usr/share/common-licenses/GPL, or with the
|
||||||
|
Debian GNU debian-archive-keyring source package as the file COPYING.
|
||||||
|
If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
|
||||||
|
Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Synaptic Package Manager
|
||||||
|
GenericName=Package Manager
|
||||||
|
Comment=Install, remove and upgrade software packages
|
||||||
|
Exec=synaptic-pkexec
|
||||||
|
Icon=synaptic
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=PackageManager;GTK;System;Settings;
|
||||||
|
NotShowIn=KDE;TDE;
|
||||||
|
X-Ubuntu-Gettext-Domain=synaptic
|
@ -0,0 +1,2 @@
|
|||||||
|
synaptic.desktop usr/share/applications
|
||||||
|
synaptic-tde.desktop usr/share/applications
|
@ -0,0 +1,25 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
package_name=tdesudo-trinity
|
||||||
|
|
||||||
|
if [ -z "$package_name" ]; then
|
||||||
|
print >&2 "Internal Error. Please report a bug."
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove)
|
||||||
|
dpkg-divert --package $package_name --rename --remove \
|
||||||
|
/usr/share/applications/synaptic.desktop
|
||||||
|
;;
|
||||||
|
purge)
|
||||||
|
;;
|
||||||
|
upgrade)
|
||||||
|
;;
|
||||||
|
*) echo "$0: didn't understand being called with \`$1'" 1>&2
|
||||||
|
exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,43 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
package_name=tdesudo-trinity
|
||||||
|
|
||||||
|
if [ -z "$package_name" ]; then
|
||||||
|
print >&2 "Internal Error. Please report a bug."
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
install)
|
||||||
|
# remove old diversions if present
|
||||||
|
# add new diversion
|
||||||
|
dpkg-divert --package $package_name \
|
||||||
|
--divert /usr/share/applications/synaptic.desktop.distrib \
|
||||||
|
--rename /usr/share/applications/synaptic.desktop
|
||||||
|
;;
|
||||||
|
|
||||||
|
upgrade)
|
||||||
|
# remove old diversion if present
|
||||||
|
divert=`dpkg-divert --listpackage "/usr/share/applications/synaptic.desktop"`
|
||||||
|
if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then
|
||||||
|
dpkg-divert --remove --package $package_name --rename "/usr/share/applications/synaptic.desktop"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# add new diversion
|
||||||
|
divert=`dpkg-divert --listpackage "/usr/share/applications/synaptic.desktop"`
|
||||||
|
if [ -z "$divert" ]; then
|
||||||
|
dpkg-divert --package $package_name \
|
||||||
|
--divert /usr/share/applications/synaptic.desktop.distrib \
|
||||||
|
--rename /usr/share/applications/synaptic.desktop
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade)
|
||||||
|
;;
|
||||||
|
*) echo "$0: didn't understand being called with \`$1'" 1>&2
|
||||||
|
exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,28 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
|
||||||
|
VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
|
||||||
|
DISTRIBUTION := $(shell dpkg-parsechangelog | grep ^Distribution: | cut -d' ' -f2)
|
||||||
|
|
||||||
|
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||||
|
&& echo xz || echo bzip2)
|
||||||
|
|
||||||
|
pre-build:: debian/stamp-distrospecific
|
||||||
|
|
||||||
|
debian/stamp-distrospecific:
|
||||||
|
dh_testdir
|
||||||
|
[ -e debian/stamp-distrospecific ] || \
|
||||||
|
ls -a1 debian/distrospecific | grep -v "^\.*$$" | \
|
||||||
|
tee debian/stamp-distrospecific | \
|
||||||
|
tr "\n" "\0" | (cd debian/distrospecific && xargs -r0 mv -t ../..)
|
||||||
|
|
||||||
|
clean::
|
||||||
|
dh_testdir
|
||||||
|
[ ! -e debian/stamp-distrospecific ] || \
|
||||||
|
cat debian/stamp-distrospecific | \
|
||||||
|
tr "\n" "\0" | xargs -r0 mv -t debian/distrospecific
|
||||||
|
rm -f debian/stamp-distrospecific
|
||||||
|
|
||||||
|
binary-install/synaptic-trinity::
|
||||||
|
dh_testdir
|
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
@ -0,0 +1,6 @@
|
|||||||
|
# Use xz instead of gzip
|
||||||
|
compression = "xz"
|
||||||
|
compression-level = 9
|
||||||
|
|
||||||
|
# Don't run differences
|
||||||
|
diff-ignore = .*
|
@ -0,0 +1,6 @@
|
|||||||
|
synaptic-trinity (2014.10.10-1) maverick; urgency=low
|
||||||
|
|
||||||
|
* NIGHTLY BUILDS
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 28 Oct 2011 11:39:00 -0600
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
7
|
@ -0,0 +1,15 @@
|
|||||||
|
Source: synaptic-trinity
|
||||||
|
Section: misc
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>=5.0), cdbs
|
||||||
|
Standards-Version: 3.8.4
|
||||||
|
|
||||||
|
Package: synaptic-trinity
|
||||||
|
Priority: important
|
||||||
|
Architecture: all
|
||||||
|
Depends: synaptic
|
||||||
|
Description: Synaptic for the Trinity Desktop Environment
|
||||||
|
This package allows Synaptic to be launched without manually typing
|
||||||
|
a gain-root command such as tdesu each time; instead tdesu will be
|
||||||
|
automatically used to launch synaptic if this package is installed.
|
@ -0,0 +1,27 @@
|
|||||||
|
This is Debian GNU's GnuPG keyrings of archive keys.
|
||||||
|
|
||||||
|
This package was originally put together by Michael Vogt
|
||||||
|
<mvo@debian.org>
|
||||||
|
|
||||||
|
The keys in the keyrings don't fall under any copyright. Everything
|
||||||
|
else in the package is covered by the GNU GPL.
|
||||||
|
|
||||||
|
Debian support files Copyright (C) 2006 Michael Vogt <mvo@debian.org>
|
||||||
|
based on the debian-keyring package maintained by James Troup
|
||||||
|
|
||||||
|
Debian support files for debian-archive-keyring are free software; you
|
||||||
|
can redistribute them and/or modify them under the terms of the GNU
|
||||||
|
General Public License as published by the Free Software Foundation;
|
||||||
|
either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
|
Debian support files for debian-archive-keyring are distributed in the
|
||||||
|
hope that they will be useful, but WITHOUT ANY WARRANTY; without even
|
||||||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License with
|
||||||
|
your Debian system, in /usr/share/common-licenses/GPL, or with the
|
||||||
|
Debian GNU debian-archive-keyring source package as the file COPYING.
|
||||||
|
If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
|
||||||
|
Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Synaptic Package Manager
|
||||||
|
GenericName=Package Manager
|
||||||
|
Comment=Install, remove and upgrade software packages
|
||||||
|
Exec=synaptic-pkexec
|
||||||
|
Icon=synaptic
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=PackageManager;GTK;System;Settings;
|
||||||
|
NotShowIn=KDE;TDE;
|
||||||
|
X-Ubuntu-Gettext-Domain=synaptic
|
@ -0,0 +1,2 @@
|
|||||||
|
synaptic.desktop usr/share/applications
|
||||||
|
synaptic-tde.desktop usr/share/applications
|
@ -0,0 +1,25 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
package_name=tdesudo-trinity
|
||||||
|
|
||||||
|
if [ -z "$package_name" ]; then
|
||||||
|
print >&2 "Internal Error. Please report a bug."
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove)
|
||||||
|
dpkg-divert --package $package_name --rename --remove \
|
||||||
|
/usr/share/applications/synaptic.desktop
|
||||||
|
;;
|
||||||
|
purge)
|
||||||
|
;;
|
||||||
|
upgrade)
|
||||||
|
;;
|
||||||
|
*) echo "$0: didn't understand being called with \`$1'" 1>&2
|
||||||
|
exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,43 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
package_name=tdesudo-trinity
|
||||||
|
|
||||||
|
if [ -z "$package_name" ]; then
|
||||||
|
print >&2 "Internal Error. Please report a bug."
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
install)
|
||||||
|
# remove old diversions if present
|
||||||
|
# add new diversion
|
||||||
|
dpkg-divert --package $package_name \
|
||||||
|
--divert /usr/share/applications/synaptic.desktop.distrib \
|
||||||
|
--rename /usr/share/applications/synaptic.desktop
|
||||||
|
;;
|
||||||
|
|
||||||
|
upgrade)
|
||||||
|
# remove old diversion if present
|
||||||
|
divert=`dpkg-divert --listpackage "/usr/share/applications/synaptic.desktop"`
|
||||||
|
if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then
|
||||||
|
dpkg-divert --remove --package $package_name --rename "/usr/share/applications/synaptic.desktop"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# add new diversion
|
||||||
|
divert=`dpkg-divert --listpackage "/usr/share/applications/synaptic.desktop"`
|
||||||
|
if [ -z "$divert" ]; then
|
||||||
|
dpkg-divert --package $package_name \
|
||||||
|
--divert /usr/share/applications/synaptic.desktop.distrib \
|
||||||
|
--rename /usr/share/applications/synaptic.desktop
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade)
|
||||||
|
;;
|
||||||
|
*) echo "$0: didn't understand being called with \`$1'" 1>&2
|
||||||
|
exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,28 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
|
||||||
|
VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
|
||||||
|
DISTRIBUTION := $(shell dpkg-parsechangelog | grep ^Distribution: | cut -d' ' -f2)
|
||||||
|
|
||||||
|
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||||
|
&& echo xz || echo bzip2)
|
||||||
|
|
||||||
|
pre-build:: debian/stamp-distrospecific
|
||||||
|
|
||||||
|
debian/stamp-distrospecific:
|
||||||
|
dh_testdir
|
||||||
|
[ -e debian/stamp-distrospecific ] || \
|
||||||
|
ls -a1 debian/distrospecific | grep -v "^\.*$$" | \
|
||||||
|
tee debian/stamp-distrospecific | \
|
||||||
|
tr "\n" "\0" | (cd debian/distrospecific && xargs -r0 mv -t ../..)
|
||||||
|
|
||||||
|
clean::
|
||||||
|
dh_testdir
|
||||||
|
[ ! -e debian/stamp-distrospecific ] || \
|
||||||
|
cat debian/stamp-distrospecific | \
|
||||||
|
tr "\n" "\0" | xargs -r0 mv -t debian/distrospecific
|
||||||
|
rm -f debian/stamp-distrospecific
|
||||||
|
|
||||||
|
binary-install/synaptic-trinity::
|
||||||
|
dh_testdir
|
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
@ -0,0 +1,6 @@
|
|||||||
|
# Use xz instead of gzip
|
||||||
|
compression = "xz"
|
||||||
|
compression-level = 9
|
||||||
|
|
||||||
|
# Don't run differences
|
||||||
|
diff-ignore = .*
|
@ -0,0 +1,6 @@
|
|||||||
|
synaptic-trinity (2014.10.10-1) maverick; urgency=low
|
||||||
|
|
||||||
|
* NIGHTLY BUILDS
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 28 Oct 2011 11:39:00 -0600
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
7
|
@ -0,0 +1,15 @@
|
|||||||
|
Source: synaptic-trinity
|
||||||
|
Section: misc
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper (>=5.0), cdbs
|
||||||
|
Standards-Version: 3.8.4
|
||||||
|
|
||||||
|
Package: synaptic-trinity
|
||||||
|
Priority: important
|
||||||
|
Architecture: all
|
||||||
|
Depends: synaptic
|
||||||
|
Description: Synaptic for the Trinity Desktop Environment
|
||||||
|
This package allows Synaptic to be launched without manually typing
|
||||||
|
a gain-root command such as tdesu each time; instead tdesu will be
|
||||||
|
automatically used to launch synaptic if this package is installed.
|
@ -0,0 +1,27 @@
|
|||||||
|
This is Debian GNU's GnuPG keyrings of archive keys.
|
||||||
|
|
||||||
|
This package was originally put together by Michael Vogt
|
||||||
|
<mvo@debian.org>
|
||||||
|
|
||||||
|
The keys in the keyrings don't fall under any copyright. Everything
|
||||||
|
else in the package is covered by the GNU GPL.
|
||||||
|
|
||||||
|
Debian support files Copyright (C) 2006 Michael Vogt <mvo@debian.org>
|
||||||
|
based on the debian-keyring package maintained by James Troup
|
||||||
|
|
||||||
|
Debian support files for debian-archive-keyring are free software; you
|
||||||
|
can redistribute them and/or modify them under the terms of the GNU
|
||||||
|
General Public License as published by the Free Software Foundation;
|
||||||
|
either version 2, or (at your option) any later version.
|
||||||
|
|
||||||
|
Debian support files for debian-archive-keyring are distributed in the
|
||||||
|
hope that they will be useful, but WITHOUT ANY WARRANTY; without even
|
||||||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. See the GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License with
|
||||||
|
your Debian system, in /usr/share/common-licenses/GPL, or with the
|
||||||
|
Debian GNU debian-archive-keyring source package as the file COPYING.
|
||||||
|
If not, write to the Free Software Foundation, Inc., 51 Franklin Street,
|
||||||
|
Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
|
@ -0,0 +1,11 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Name=Synaptic Package Manager
|
||||||
|
GenericName=Package Manager
|
||||||
|
Comment=Install, remove and upgrade software packages
|
||||||
|
Exec=synaptic-pkexec
|
||||||
|
Icon=synaptic
|
||||||
|
Terminal=false
|
||||||
|
Type=Application
|
||||||
|
Categories=PackageManager;GTK;System;Settings;
|
||||||
|
NotShowIn=KDE;TDE;
|
||||||
|
X-Ubuntu-Gettext-Domain=synaptic
|
@ -0,0 +1,2 @@
|
|||||||
|
synaptic.desktop usr/share/applications
|
||||||
|
synaptic-tde.desktop usr/share/applications
|
@ -0,0 +1,25 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
package_name=tdesudo-trinity
|
||||||
|
|
||||||
|
if [ -z "$package_name" ]; then
|
||||||
|
print >&2 "Internal Error. Please report a bug."
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
remove)
|
||||||
|
dpkg-divert --package $package_name --rename --remove \
|
||||||
|
/usr/share/applications/synaptic.desktop
|
||||||
|
;;
|
||||||
|
purge)
|
||||||
|
;;
|
||||||
|
upgrade)
|
||||||
|
;;
|
||||||
|
*) echo "$0: didn't understand being called with \`$1'" 1>&2
|
||||||
|
exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,43 @@
|
|||||||
|
#! /bin/sh
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
package_name=tdesudo-trinity
|
||||||
|
|
||||||
|
if [ -z "$package_name" ]; then
|
||||||
|
print >&2 "Internal Error. Please report a bug."
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
install)
|
||||||
|
# remove old diversions if present
|
||||||
|
# add new diversion
|
||||||
|
dpkg-divert --package $package_name \
|
||||||
|
--divert /usr/share/applications/synaptic.desktop.distrib \
|
||||||
|
--rename /usr/share/applications/synaptic.desktop
|
||||||
|
;;
|
||||||
|
|
||||||
|
upgrade)
|
||||||
|
# remove old diversion if present
|
||||||
|
divert=`dpkg-divert --listpackage "/usr/share/applications/synaptic.desktop"`
|
||||||
|
if [ -n "$divert" ] && [ "$divert" = "$package_name" ]; then
|
||||||
|
dpkg-divert --remove --package $package_name --rename "/usr/share/applications/synaptic.desktop"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# add new diversion
|
||||||
|
divert=`dpkg-divert --listpackage "/usr/share/applications/synaptic.desktop"`
|
||||||
|
if [ -z "$divert" ]; then
|
||||||
|
dpkg-divert --package $package_name \
|
||||||
|
--divert /usr/share/applications/synaptic.desktop.distrib \
|
||||||
|
--rename /usr/share/applications/synaptic.desktop
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
|
||||||
|
abort-upgrade)
|
||||||
|
;;
|
||||||
|
*) echo "$0: didn't understand being called with \`$1'" 1>&2
|
||||||
|
exit 0;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
exit 0
|
@ -0,0 +1,28 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||||
|
|
||||||
|
VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2)
|
||||||
|
DISTRIBUTION := $(shell dpkg-parsechangelog | grep ^Distribution: | cut -d' ' -f2)
|
||||||
|
|
||||||
|
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||||
|
&& echo xz || echo bzip2)
|
||||||
|
|
||||||
|
pre-build:: debian/stamp-distrospecific
|
||||||
|
|
||||||
|
debian/stamp-distrospecific:
|
||||||
|
dh_testdir
|
||||||
|
[ -e debian/stamp-distrospecific ] || \
|
||||||
|
ls -a1 debian/distrospecific | grep -v "^\.*$$" | \
|
||||||
|
tee debian/stamp-distrospecific | \
|
||||||
|
tr "\n" "\0" | (cd debian/distrospecific && xargs -r0 mv -t ../..)
|
||||||
|
|
||||||
|
clean::
|
||||||
|
dh_testdir
|
||||||
|
[ ! -e debian/stamp-distrospecific ] || \
|
||||||
|
cat debian/stamp-distrospecific | \
|
||||||
|
tr "\n" "\0" | xargs -r0 mv -t debian/distrospecific
|
||||||
|
rm -f debian/stamp-distrospecific
|
||||||
|
|
||||||
|
binary-install/synaptic-trinity::
|
||||||
|
dh_testdir
|
@ -0,0 +1 @@
|
|||||||
|
3.0 (quilt)
|
@ -0,0 +1,6 @@
|
|||||||
|
# Use xz instead of gzip
|
||||||
|
compression = "xz"
|
||||||
|
compression-level = 9
|
||||||
|
|
||||||
|
# Don't run differences
|
||||||
|
diff-ignore = .*
|
Loading…
Reference in new issue