afterstep (2.2.12-11) unstable; urgency=medium . * Add 54-Adapt-to-gsd-324.patch from Jeremy Bicha to update the gnome-session file for gnome-settings-daemon 3.24 (closes: #869938). * Update 53-Spelling-typos.patch with a new typo found by lintian. * Remove build-dependency on autotools-dev (lintian). * Standards-Version: 4.0.1: + remove menu file, as afterstep provides desktop file. + add lintian overrides for `postinst/postrm has useless calls to update-meus', because lintian fails to notice the ucf-managed afterstep.menu-method file. avrdude (6.3-4) unstable; urgency=medium . * Support ATtiny841 and ATtiny441 * Bump Standards-Version to 4.0.0 * Full auto-reconfigure on builds babeltrace (1.5.3-1) unstable; urgency=medium . * [ac63ca0] Do not consider rc versions in watch file * [cd63c5f] Move to DEP-14 branch naming * [60f347a] New upstream version 1.5.3 * [76c1fb4] Remove python install hack fixed upstream * [dc2939b] Bump standard to 4.0.0 bit-babbler (0.7) unstable; urgency=medium . * Handle the oddball case of a RHEL/CentOS 6 kernel being used with libusb version 1.0.13 or later. They backported the USBDEVFS_GET_CAPABILITIES API, but not the patch which was applied to the mainline kernel at the same time to add USBDEVFS_CAP_BULK_SCATTER_GATHER. With the default libusb 1.0.9 that it normally ships with this doesn't matter because none of it is supported there anyway, but updating it makes this become a real problem that we need to deal with. . * Test for SIGRTMIN, MacOSX doesn't have it. . * Test for pthread_setname_np by signature, it's implemented differently on different platforms. Also support pthread_set_name_np which is what is used by OpenBSD and FreeBSD. . * Explicitly set the pthread stack size on (more) platforms where it is tiny by default. We do create some large structures on the stack, and it's probably better to have a consistent size on all platforms than have some of them smash it "unexpectedly". . * Querying the string length with strftime is a GNU extension, so only use that where it's actually available. . * Provide an implementation of FeedKernelEntropy for MacOS. It does have a documented interface for that, even if the implementation of it that is in its kernel source as of Sierra is ... let's go with enlightening. . * Rename _P(), our convenience alias to ngettext, to P_(). On OpenBSD 6.1 _P is defined in ctype.h, and regardless of what you might think of that, symbols starting with an underscore are reserved. So they win this one. . * Test for LOG_MAKEPRI, it isn't required by POSIX, and OpenBSD 6.1 doesn't provide it. . * Add explicit tests for strtod_l and newlocale. The newlocale function is specified by POSIX, but OpenBSD doesn't provide it. We can get away with falling back to strtod there because it only has very limited support for locales anyway, and right now it will always be either C or en_US.UTF8, both of which use '.' as the decimal point. . * Support systems without abi::__forced_unwind for thread cancellation stack unwinding and clean up. The GCC toolchain on OpenBSD doesn't support it, and neither does clang on FreeBSD or MacOS. . * Disable thread cancellation around calls to vfprintf on OpenBSD. On that platform it is a cancellation point (as expected), but if cancellation does occur there on 6.1, it can leave its internal _thread_flockfile mutex locked which means any future calls to vfprintf (or anything else needing that lock) will deadlock. We can't easily test for that bug, so we just always provide our own safe cancellation point instead on that platform. . * Support unordered_map in both std and std::tr1 namespaces. Normally it isn't available in std:: unless C++11 support is enabled, but clang on FreeBSD provides the tr1 header as a symlink to the std one, and only provides the template in the std namespace. . * Test for libusb_has_capability. FreeBSD 11 bumped LIBUSB_API_VERSION to 0x01000102, but didn't add the libusb_has_capability() function which was part of that interface version. It did however add the hotplug API, and it does mostly work, so if the API version is sufficient, but we can't test for this capability, then we'll assume it's available and that it will handle a call to it gracefully if for some reason it really isn't. . * Deal with FreeBSD 11 libusb start up and shut down delays. In our testing there was a delay of around 4 seconds before it would report any existing devices when LIBUSB_HOTPLUG_ENUMERATE was used with the hotplug callback (and a similar delay when new devices really were hotplugged later). That makes things awkward for the --scan option, which would see no devices at all before returning its results, unless it too had an arbitrary (and user unfriendly long) delay before responding. So we explicitly enumerate the initial set ourselves on FreeBSD now even when hotplug support is enabled, and handle any duplicates when the hotplug events finally do arrive. . Likewise, when libusb_exit is called, it also blocks for around 4 seconds before returning - which delays our code from being able to do a clean exit quickly. There's not much we can do about that one except add some extra debug logging when verbosity is turned up, so that users can see it is not actually our code that has them twiddling their thumbs waiting. Hopefully later releases of FreeBSD will improve on this. . * Work around FreeBSD 11 deadlocking on device unplug. If a device is ever removed while we are in the middle of a call to libusb_bulk_transfer(), then that call may deadlock and never return, and the thread which called it will not be able to be cancelled. We can limit the impact that has on our code (since we will already always be cancelling that thread once we get the hotplug notification of the removal) by using pthread_timedjoin_np and if the join times out, bark about it and just ignore the zombie thread that we've been left with. It's not ideal, and if it happens often enough in a single process run, then leaked resources will start to be exhausted. But most people don't replug things all that frequently, this won't happen every time they do, and it is about the best we can do until the FreeBSD bug is fixed. There's no downside to the workaround if the bug doesn't actually occur when a device is unplugged. . * Disable some buggy optimisations (normally enabled by -O2) when using GCC on FreeBSD 11. On that platform (we've not seen this anywhere else), they appear to miscompile some code in a way that stack unwinding details are lost and a thrown exception will invoke terminate rather than being caught by the handler it should have unwound to. Some of these were in obscure corners of the code that are only seen when unlikely errors occur, so it's not impossible that there may be a few more lurking. But for now, we'll just disable the known problem ones rather than falling all the way back to compiling with -O0 on that platform. . * Add a --limit-max-xfer option to seedd and bbcheck. This gives people a runtime workaround for systems where, despite having an ostensibly new enough Linux kernel and libusb version to support large bulk URBs, the hardware chipset has some quirk that isn't yet fixed in the kernel driver which makes using them troublesome (I'm looking at you RPI3). If passed, this will force the old 16kB limit on individual requests to usbfs. That doesn't have any effect on the size of requests that users can make from our code, it just might be slightly slower at obtaining huge numbers of bits, since we need to get them in smaller chunks internally. . * Add an example of how to obtain random integers within an arbitrary range where every value in that range remains equally probable. This isn't a difficult thing to do, but enough people have asked to provide a working example, and there's enough history elsewhere of people doing something naive, like using a modulus to limit the range (thus making some values more probable than others), to have a good example easily available that users can refer to. . * Search for where udevadm is found in the qemu-hook script. Its installed path was changed by systemd 204 in Jessie from /sbin to /bin, so now we need to deal with multiple interfaces to stay portable, since there are supported distro releases that aren't EOL yet which still have it in the old location. Jessie's systemd had a compat link to make it available in both places, but the systemd maintainers want to drop that for Buster (and not all other distros with newer systemd provide that). Closes: #852582 . * Tweak the udev rules to work around a bug in udev versions up to at least 232-25 which makes testing ATTR keys with != become a perilous folly. If an event occurs for a device which does not have that attribute at all, then the rule will be skipped, the same as if it was actually equal to the value being tested for. cbios (0.28-1) unstable; urgency=medium . * New upstream version. * Update standards version to 4.0.0. * Change copyright link to https. * Change priority to optional. certmonger (0.79.3-1) unstable; urgency=medium . * New upstream release. * control, copyright, watch: Update urls. * patches: Drop nspr4_path, refresh others. * control: Migrate to OpenSSL 1.1. (Closes: #851088) * control, use-dbus-run-session.diff: Use dbus-run-session instead of dbus- launch in tests. (Closes: #836084) * rules: Enable parallel build. connectome-workbench (1.2.3+git41-gc4c6c90-2) unstable; urgency=medium . * Upload of the snapshot from experimental to unstable * d/p/changeset_cf1faad575229c6519aee2b773f3e50b3d89e17e.diff to resolve FTBFS with gcc 7 (Closes: #853354) connectome-workbench (1.2.3+git41-gc4c6c90-1) experimental; urgency=medium . * Upstream "experimental" snapshot in attempt to resolve FTBFS on mips, mipsel due to heavy memory resource demand -- some files were moved around and possibly split. * debian/patches -- dropped all (all adopted upstream) courier-unicode (2.0-1) unstable; urgency=medium . * New upstream release. * Update d/copyright. * Refresh patches. * Update symbols for libcourier-unicode4, use c++ format where applicable, leveraging pkg-kde-tools. * Bump Standards-Version to 4.0.1, no changes required. courier-unicode (1.4-5) unstable; urgency=medium . * Migrate the new package from experimental to unstable. * Add patch 0003-Make-mkultcase-deterministic.patch to increase reproducibility of builds. * Bump Standards-Version to 4.0.0, no changes required. * Add patch 0004-Spelling-Fixes.patch. courier-unicode (1.4-4) experimental; urgency=medium . * Take over the package. Closes: #848979. * Update d/watch to ignore development snapshots. * Rename libcourier-unicode1 to libcourier-unicode3 to match the SONAME of the library. Add a symbols file. * Drop autotools-dev, use only dh-autoreconf. * Update Vcs-* and Homepage to use https. * Bump S-V: no changes required. * Use different long descriptions for the two binary packages. * d/rules: Save and restore original source files to allow for subsequent builds to work. * d/rules: Move down the inclusion of default.mk, so the hardening=+all actually takes effect. * Disable only LineBreak- and WordBreakTests, enable all others, with patch 0002-Disable-Failing-Tests.patch * Add a Breaks+Replaces against libcourier-unicode1, as it provided libcourier-unicode.so.3.0.0. culmus (0.131-1) unstable; urgency=medium . [ Tzafrir Cohen ] * Remove Baruch Even from Uploaders list (Closes: #760008) . [ Lior Kaplan ] * New upstream release - Nachlieli CLM completely redesigned, diacritics support added. debianutils (4.8.2) unstable; urgency=medium . * Drop dependency on sensible-utils. closes: #871260. debpaste-el (0.1.5-2) unstable; urgency=medium . * Upload to unstable. * Bump std-ver to 4.0.1 (no changes required). debpaste-el (0.1.5-1) experimental; urgency=medium . * Initial release (Closes: #850851). Upload to experimental pending resolution of #419510. eric (17.08-1) unstable; urgency=medium . * New upstream release (Closes: #865896, #858150) * Fix patches for new release, no changes. * Move binary-arch below binary-indep * Add manpage for eric6_shell * Bump standards version to 4.0.0, no changes needed * Use pkg-info.mk for version parsing esys-particle (2.3.5+dfsg1-2) unstable; urgency=medium . [ gregor herrmann ] * [1da0be3] Fix "Unescaped left brace in regex is illegal" error in perl helper scripts. (Closes: #870821) . [ Anton Gladky ] * [314841d] Drop dependencies on dh-autoreconf and autotools-dev. * [337b5dc] Bump Standards-Version: 4.0.0 fizsh (1.0.9-1) unstable; urgency=low . * New upstream release * Increased standards-version to 4.0.0. This did not cause an warnings * Updated years and authors in ./debian/copyright * Updated to version 1.0.9 in ./debian/rules forensic-artifacts (20170806-1) unstable; urgency=medium . * New upstream release. git (1:2.14.1-1) unstable; urgency=high . * new upstream point release to fix CVE-2017-1000117, arbitrary code execution issues via URLs (see RelNotes/2.14.1.txt). git (1:2.14.0+next.20170804-1) experimental; urgency=low . * new snapshot, taken from upstream commit 98096fd7. * merge branch debian-sid. git (1:2.14.0-1) unstable; urgency=low . * new upstream release (see RelNotes/2.14.0.txt). * debian/patches/0001-pre-rebase-hook-capture-documentation-...diff: remove; applied upstream. * build against PCRE v2 if available at build time (thx to Ævar Arnfjörð Bjarmason for the suggestion). Build-Depends: libpcre2-dev | libpcre3-dev. git (1:2.14.0~rc1+next.20170727-1) experimental; urgency=low . * new upstream release candidate (see RelNotes/2.14.0.txt). * new snapshot, taken from upstream commit d1ce394f. git (1:2.14.0~rc0+next.20170721-1) experimental; urgency=low . * new snapshot, taken from upstream commit 1c36432d. git (1:2.14.0~rc0+next.20170713-1) experimental; urgency=low . * new upstream release candidate (see RelNotes/2.14.0.txt). * new snapshot, taken from upstream commit d933b75a. * debian/patches/0001-pre-rebase-hook-capture...diff: remove; applied upstream. * merge branch debian-sid. * debian/.gitattributes: debian/changelog can be treated as a dpkg-format changelog file during merges. git (1:2.13.3-1) unstable; urgency=low . * new upstream point release (see RelNotes/2.13.3.txt). git (1:2.13.2+next.20170709-1) experimental; urgency=low . * new snapshot, taken from upstream commit 7449e964. * correct date in previous changelog entry. git (1:2.13.2+next.20170630-1) experimental; urgency=low . * merge branch debian-sid. * new snapshot, taken from upstream commit 7f5404b1. git (1:2.13.2+next.20170626-1) experimental; urgency=low . * merge branch debian-sid. * new snapshot, taken from upstream commit 09c95d1e. git (1:2.13.2+next.20170624-1) experimental; urgency=low . * new snapshot, taken from upstream commit dfeb3b87. * merge branch debian-sid. * always build against PCRE v2 if libpcre2-dev is installed at build time instead of using build profiles to decide. No longer Build-Depends: dpkg-dev (>= 1.17.14) or debhelper (>= 9.20141010). golang-bitbucket-pkg-inflect (0.0~hg20130829.20.8961c37-6) unstable; urgency=medium . * Remove Provides and symlinks to GitHub forks, namely, github.com/bep/inflect and github.com/markbates/inflect, as they are now both packaged for Debian * Use debhelper (>= 10) * Bump Standards-Version to 4.0.0: Use https form of the copyright-format URL in debian/copyright * Add "Testsuite: autopkgtest-pkg-go" to debian/control * Clarify the history of the library in debian/copyright golang-blackfriday (1.4+git20170728.51.4048872-1) unstable; urgency=medium . * New upstream version: - Add Smartypants support for French Guillemets (blackfriday.HTML_SMARTYPANTS_QUOTES_NBSP) * Add "Testsuite: autopkgtest-pkg-go" to debian/control golang-bugsnag-panicwrap (1.1.0-2) unstable; urgency=medium . [ Paul Tagliamonte ] * Team upload. * Use a secure transport for the Vcs-Git and Vcs-Browser URL . [ Konstantinos Margaritis ] * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends golang-github-akavel-rsrc (2+git20151103.6.ba14da1-2) unstable; urgency=medium . * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends golang-github-bep-inflect (0.0~git20160408.0.b896c45-2) unstable; urgency=medium . * Team upload. * Add Breaks/Replaces: golang-bitbucket-pkg-inflect-dev because golang-bitbucket-pkg-inflect-dev prior to 0.0~hg20130829.20.8961c37-6~ provided a symlink to github.com/bep/inflect and would interfere with this package. * Bump Standards-Version to 4.0.0: Use https form of the copyright-format URL in debian/copyright. * Add "Testsuite: autopkgtest-pkg-go" to debian/control. golang-github-gorilla-mux (1.1-3) unstable; urgency=medium . [ Tim Potter ] * Add me to uploaders . [ Konstantinos Margaritis ] * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends golang-github-hashicorp-go-memdb (0.0~git20170123.0.c01f56b-2) unstable; urgency=medium . * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends golang-github-hashicorp-go-retryablehttp (0.0~git20160810.0.f4ed9b0-2) unstable; urgency=medium . * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends golang-github-hashicorp-go-uuid (0.0~git20160311.0.d610f28-2) unstable; urgency=medium . [ Paul Tagliamonte ] * Team upload. * Use a secure transport for the Vcs-Git and Vcs-Browser URL . [ Konstantinos Margaritis ] * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends golang-github-hashicorp-hil (0.0~git20160326.0.40da60f-2) unstable; urgency=medium . [ Paul Tagliamonte ] * Team upload. * Use a secure transport for the Vcs-Git and Vcs-Browser URL . [ Konstantinos Margaritis ] * Replace golang-go with golang-any in Build-Depends, remove golang-go from Depends golang-github-hashicorp-scada-client (0.0~git20160601.0.6e89678-2) unstable; urgency=medium . [ Tim Potter ] * Add me to uploaders . [ Konstantinos Margaritis ] * Replace golang-go with golang-any in Build-Depends icc-profiles (2.1-2) unstable; urgency=medium . * Update copyright info: + Fix cover JapanColor profile. + Expand and tidy coverage of IDEAlliance profiles. + Expand coverage of ICC profiles. + Fix tighten coverage of ECI profiles. + Relicense packaging as GPL-3+. + Use License-Grant and License-Reference. * Add lintian override for license in License-Reference field. See bug#786450. * Add copyright-check maintainer script to source. icc-profiles (2.1-1) unstable; urgency=medium . [ upstream ] * New release. + Add documentation for ECI 2007 and 2008 offset profiles. + Add ECI 2009 gravure profiles. + Add ECI 2015 offset profiles. + Add license for ECI RGB profiles. + Add documentation for ICC ROMM RGB profile. + Add ICC ITU profile, with documentation scraped from source webpage. + Add ICC RGM gamut warning profile, with documentation scraped from source webpage. + Add ICC Probe profiles, with (additional) documentation scraped from source webpage. + Extend ICC sRGB profiles with displayclass, appearance, and (non-legacy) v2 forms, and documentation. + Add G7 GRACoL/SWOP/CGATS 2013 profiles. + Add G7 XCMYK 2017 profile. + Add JC 2011 coated profile. + Add IFRA 26v5 profile. + Drop mysterious Fogra27L profile. + Drop documentation for previously removed LStar profile. . [ Jonas Smedegaard ] * Simplify installation. * Use debhelper compat level 9. * Relax to build-depend unversioned on debhelper: Needed version available even in oldstable. * Update copyright info: + Modernize identifier. + Drop info about files removed since 2.0.1-1. + Use License sections. + Wrap and sort Files listings. + Fix use proper upstream source URLs (not obsolete bundling URL). + Fix extend and generalize Files listings. + Add myself for recent packaging. idba (1.1.3-2) unstable; urgency=medium . * Team upload. . * Install all IDBA flavours, not only IDBA-Hybrid - added help2man-generated man pages - removed debian/links to save idba binary and .1 * Moved peripheral binaries to new dir usr/lib/idba/ * Added references to OMICtools registry * Bumped Debian policy compliance to 4.0.1 inspircd (2.0.24-1) unstable; urgency=high . * Team upload * New upstream version 2.0.24. Closes: #853455 * Fix filename in shipped MOTD file. Closes: #870851 * Remove Darren Blaber from the uploaders list. Closes: #858652 . inspircd (2.0.23-3) UNRELEASED; urgency=medium . * tests: Add alarm and respond to PING * debian/inspircd.conf: Don't log twice (Closes: #857758) * Remove Bradley Smith as uploader (Closes: #674890) jaaa (0.8.4-4) unstable; urgency=medium . * .gitignore file by postclone script. * Add patch to fix cross build (Closes: #870859). * Numbered patches. * Update copyright file. * Patch forwarded. * Tune dh version. * Bump Standards. * Append flags rather to LDFLAGS. knockpy (4.1.0-1) unstable; urgency=medium . * New upstream release * Bump std-version to 4.0.0 ledger (3.1.2~pre1+g3a00e1c+dfsg1-5) unstable; urgency=medium . * fix mangled patch exports (patching out deleted files) ledger (3.1.2~pre1+g3a00e1c+dfsg1-4) unstable; urgency=medium . * Add maintscripts to remove obsolete startup files. Bug fix: "emacs startup provided in wrong package", thanks to bdale@gag.com (Bdale Garbee); (Closes: #857585) libabigail (1.0~rc6-2) unstable; urgency=medium . * Bump standards version. * Build using GCC 7 and tighten dependency on the shared library. Closes: #871273. libgusb (0.2.11-1) unstable; urgency=medium . * New upstream release. libjava-jdbc-clojure (0.7.0-1) unstable; urgency=medium . * Team upload. * New upstream version 0.7.0 * d/rules: do not override dh_installchangelogs * Bump Standards to 4.0.0; no changes needed * Use dpkg/pkg-info.mk to get the upstream version * Install only README.md using dh_installdocs libp11 (0.4.7-1) unstable; urgency=medium . * New upstream release. * debian/control, debian/libp11-3.install, debian/libp11-3.symbols, debian/rules: Revert soname bump. * debian/control, debian/libengine-pkcs11-openssl.install, debian/rules: Go back to building agaisnt libssl 1.0 for the moment. libp11 (0.4.4-2) experimental; urgency=medium . * Target to experimental. * debian/control, debian/libengine-pkcs11-openssl.install, debian/rules: Patch from Luke Faraone to rebuild against libssl 1.1 and fix the path to the engine directory. (Closes: #846548) * debian/control, debian/libp11-3.install, debian/libp11-3.symbols, debian/rules: Moving to openssl 1.1 bumps libp11 soname. (Closes: #859547) libp11 (0.4.4-1) unstable; urgency=medium . * New upstream release. libp11 (0.4.3-1) unstable; urgency=medium . * New upstream release. (Closes: #846774) * debian/patches/0001-Add-enginesexecdir-use-it-instead-of-enginesdir.patch: Drop upstreamed enginesexecdir patch. * debian/control: Switch back to libssl 1.0 for the moment. * debian/compat, debian/control, debian/rules: Switch to debhelper 10. * debian/libp11-2.symbols: Add LIBP11_2 symbol versions. libp11 (0.4.2-1) unstable; urgency=medium . * New upstream release. * debian/control, debian/libengine-pkcs11-openssl.install, debian/rules: Move libengine-pkcs11-openssl package here. * debian/patches/0001-Add-enginesexecdir-use-it-instead-of-enginesdir.patch: Use enginesexecdir instead of enginesdir, to work around install-exec-hook issues. (Closes: #840728) libp11 (0.4.1-1) unstable; urgency=medium . * New upstream release. (Closes: #835585) libp11 (0.4.0-1) unstable; urgency=medium . * New upstream release. (Closes: #828406) * debian/libp11-2.symbols: Add new symbols introduced in 0.4.0. * debian/libp11-2.shlibs: Remove unnecessary shlibs file. * debian/control: Upgrade Standards-Version to 3.9.8. * debian/libp11-2.install, debian/libp11-dev.install: Tighten globs to only catch libp11. libp11 (0.3.1-1) unstable; urgency=medium . * New upstream release. * debian/watch: Switch signature extension. * debian/control: Update Vcs-* fields to use https. * debian/libp11-2.symbols: Add new symbols. libp11 (0.3.0-2) unstable; urgency=medium . * debian/control, debian/rules: Drop libp11-2-dbg and use the auto generated -dbgsym package. * debian/control: Bump Standards-Version to 3.9.6.1. * debian/libp11-dev.examples: Ship only the example *.c and README. libp11 (0.3.0-1) unstable; urgency=medium . * New upstream release. * debian/gbp.conf: Use upstream-vcs-tag. * debian/copyright, debian/libp11-dev.doc-base, debian/libp11-dev.docs: Docs have been dropped. * debian/upstream/signing-key.asc, debian/watch: Add upstream signing key. * debian/libp11-2.symbols: Add ECDSA symbols. * debian/libp11-2.shlibs: Bump shlibs version. libp11 (0.2.8-6) unstable; urgency=medium . * debian/gbp.conf: Use pristine-tar. * debian/control: Set the maintainer to pkg-opensc-maint and mark myself as an uploade. libp11 (0.2.8-5) unstable; urgency=medium . * debian/control: Standards-Version to 3.9.6 (no changes). * debian/control: Canonicalize the Vcs-* headers. * debian/control: Update Homepage field for new GitHub home. * debian/control: Run wrap-and-sort. libp11 (0.2.8-4) unstable; urgency=medium . * debian/control, debian/rules: Use dh-autoreconf. Thanks Breno Leitao. (Closes: #750494) * debian/watch: Update for new GitHub home. libp11 (0.2.8-3) unstable; urgency=low . * debian/control: Change build dependency on debhelper to >= 9. * debian/control: Upgrade Standards-Version to 3.9.4. * debian/control, debian/rules: Use autotools-dev. * debian/copyright: New DEP-5 copyright file. libp11 (0.2.8-2) unstable; urgency=low * debian/compat, debian/control: Use debhelper compat level v9. * debian/control, debian/libp11-2.install, debian/libp11-dev.install: Convert the package to Multi-Arch. * debian/control: Upgrade Standards-Version to 3.9.2.0 libp11 (0.2.8-1) unstable; urgency=low * New upstream release. * debian/libp11-dev.install: Remove unneeded .la file. (Closes: #622516) * debian/libp11-1.install, debian/libp11-2.install, debian/libp11-1.shlibs, debian/libp11-2.shlibs, debian/libp11-1.symbols, debian/libp11-2.symbols, debian/control, debian/rules: Bump soname to 2. libp11 (0.2.7-3) unstable; urgency=low * debian/libp11-dev.docs: Fix bad documentation paths. (Closes: #585402) * debian/compat, debian/control: Upgrade to debhelper level 8. * debian/source/format: Convert to 3.0 (quilt) source format. libp11 (0.2.7-2) unstable; urgency=high * debian/rules: Fix dh_strip invocation to use proper debug package. (Closes: #594504) * debian/control: - Bump debhelper Build-Depends to get override_ support. - Bump Standards-Version to 3.9.1.0. libp11 (0.2.7-1.1) unstable; urgency=high * Non-maintainer upload. * Add override for dh_strip to ensure the debug package istn't empty (Closes: #594504) * Bumped versioned build depends on debhelper to actually have dh overrides * Urgendcy set to high due to rc bug fix libp11 (0.2.7-1) unstable; urgency=low * New upstream release. libp11 (0.2.6-1) unstable; urgency=low * New upstream release. * debian/compat: Upgrade to version 7. * debian/rules, debian/control: Use dh instead of debhelper. * debian/control: Upgrade Standards-Version to 3.8.3. * debian/libp11-1.install, debian/libp11-1.shlibs, debian/libp11-1.symbols, debian/control: Rename libp11-0 to libp11-1 libp11 (0.2.3-2) unstable; urgency=low * debian/control: - Set Priority to extra for the -dbg package, as the override file says. - Add Homepage and Vcs-* headers. * debian/libp11-0.symbols: Add symbols file for new symbol based dependency resolution. * debian/libp11-0.shlibs: Bump version for last upstream release. libp11 (0.2.3-1) unstable; urgency=low * New upstream release. * debian/control: - Bump Standards-Version to 3.7.2.2. - Use ${binary:Version} instead of ${Source-Version}. libp11 (0.2.2-2) unstable; urgency=low * debian/watch: Fix completely screwed up watch file, looks like it was still half example. * debian/libp11-0.shlibs: Bump shlibs version, I think there are new symbols in this version. libp11 (0.2.2-1) unstable; urgency=low * New upstream release. * debian/control: - Standards-Version to 3.7.2.0. - Add -dbg package. - Need at least debhelper 5. * debian/compat: Debhelper level to 5. libp11 (0.2.1-2) unstable; urgency=low * debian/control: - libp11-dev needs to depend of pkg-config. - Rename libp11-1 to libp11-0, since that is the real soname. - Conflict and Replace libp11-1. * debian/libp11-1.*: Rename to debian/libp11-0.*. * debian/libp11-0.shlibs: Fix soname and shlib dependency. libp11 (0.2.1-1) unstable; urgency=low * New upstream release. * debian/libp11-1.shlibs: Bump dependency. * debian/copyright: Include RSA license info. svn2cl license is not necessary, it's not in the tarball. libsbml (5.15.2+dfsg-1) unstable; urgency=medium . * New upstream version * Standards-Version: 4.0.0 (no changes needed) * Removed debian/libsbml5.triggers since now trigger is properly set by dh_makeshlibs/10.7.2 * Rebuild with gcc7 Closes: #871291 libsmraw (20170803-1) unstable; urgency=medium . * New upstream version 20170803 * Drop dh-autoreconf build-dependency, it is integrated with Debhelper 10 * Drop patch live-build (1:20170807) unstable; urgency=medium . * Add keyboard shortcut on the "Advanced options" syslinux menu entry. Closes: #864386 Thanks to Daniel Reichelt for the patch. * Drop the --hardlinks option from xorriso command line call. It's not needed to avoid duplication of files since this is a native feature of the IS0 filesystem. cf https://bugs.kali.org/view.php?id=4109 for a discussion about this. meshlab (1.3.2+dfsg1-4) unstable; urgency=medium . * Team upload * Fix FTBFS with GCC 7 (Closes: #853545) * Update upstream homepage and debian/watch * Switch to debhelper 10 * Bump Standards-Version to 4.0.1, no further changes mimetic (0.9.8-6) unstable; urgency=medium . * Adapt to C++ name mangling in GCC 7: - Build-Depend on g++ (>= 4:7) - Override dh_makeshlibs for new symbols from gcc 7 Thank to James Cowgill for the bug report. Closes: #871307 * Update years of packaging copyright. * Bump debhelper compat level and dependency to 10. Drop manual autoreconf fragments. * Support DEB_BUILD_OPTIONS/DEB_BUILD_PROFILES "nodoc". * Use HTTPS for Format URL in debian/copyright. * Add linitian override about insecure Vcs URLs. * Add all hardening options in debian/rules. * Declare compliance with Debian Policy 4.0.1. mutagen (1.38-1) unstable; urgency=medium . * Update watch file. * New upstream release. * Use Python 3.6 docs instead of 3.5 (closes: #871426). * Run wrap-and-sort -t -s. * Bump Standards-Version to 4.0.0 (no changes). openjdk-9 (9~b181-2) unstable; urgency=medium . * Update the jdk-8067331 patch (Adrian Glaubitz). Closes: #871009. * Build zero on armhf again. openjdk-9 (9~b181-1) unstable; urgency=medium . * OpenJDK 9, b181. * Don't hard-code multiarch-support dependency. Closes: #870521. * Just configure m68k --with-debug-level=slowdebug. Closes: #868255. * Fix atomic_copy64 on powerpc (Andrew Haley). Closes: #870403. openjdk-9 (9~b179-2) unstable; urgency=medium . * Really configure --with-debug-level=slowdebug on Zero-only architectures. Closes: #868255. * Really enable the zero-sparc patch (Adrian Glaubitz). Closes: #864359. * Try again building zero on arm64 with slowdebug. openjdk-9 (9~b179-1) unstable; urgency=medium . * OpenJDK 9, b179. * Drop armel as a hotspot architecture. Closes: #864464. * Configure --with-debug-level=slowdebug on Zero-only architectures. Closes: #868255. * Fix recommendation of microhei/zenhei font packages. Closes: #868205. * Enable the zero-sparc patch (Adrian Glaubitz). Closes: #864359. * Update the disable-doclint patch (Chris West ). Closes: #866908. * Disable the jamvm autopkg tests. openjdk-9 (9~b177-3) unstable; urgency=medium . * Fix applying the s390x-thread-stack-size patch. openjdk-9 (9~b177-2) unstable; urgency=medium . * Try to build zero again on amd64, arm64, ppc64el and s390x. * Keep the conf/* symlinks in the JAVA_HOME directory. Closes: #866924, #863080. * Drop armel from the list of hotspot architectures. See #864464. * Stop using deprecated GNOME libraries. Closes: #850268. * Apply sparc64 build fixes (Adrian Glaubitz). Closes: #864351. * Update the zero-sparc patch (Adrian Glaubitz). Closes: #864359. * Update the m68k-support patch (Adrian Glaubitz). Closes: #864595. * Disable generation of jvmti.html on m68k (Adrian Glaubitz). Closes: #864596. * Update the zero-sh patch (Adrian Glaubitz). Closes: #864643. * Update the jdk-target-arch-define patch. Closes: #865129. * Provide jvmdir symlink in /usr/lib/debug. Addresses: #867314. * Fix pt_BR translation in awt message. Addresses: #863331. * Drop the 8073754-stack-overflow-9-build patch. Closes: #864288. * Use sigset_t to store the signals used by the JVM (James Cowgill). Closes: #841173. openjdk-9 (9~b177-1) unstable; urgency=medium . * OpenJDK 9, b177. openjdk-9 (9~b170-2) unstable; urgency=medium . * OpenJDK 9, b170. openjdk-9 (9~b170-1) unstable; urgency=medium . * OpenJDK 9, b170. openjdk-9 (9~b169-1) unstable; urgency=medium . * OpenJDK 9, b169. openjdk-9 (9~b168-1) unstable; urgency=medium . * OpenJDK 9, b168. openjdk-9 (9~b161-1) unstable; urgency=medium . * OpenJDK 9, b161. * Don't build the zero JRE on Ubuntu/s390x. * Fix changelog format. openjdk-9 (9~b159-1) unstable; urgency=medium . * OpenJDK 9, b159. openjdk-9 (9~b158-1) unstable; urgency=medium . * OpenJDK 9, b158. * Add OpenJDK Stack Unwinder and Frame Decorator for gdb. openjdk-9 (9~b155-1) unstable; urgency=medium . * OpenJDK 9, b155. openjdk-9 (9~b154-1) unstable; urgency=medium . * OpenJDK 9, b154. * Fix libjpeg dependency. Closes: #852420. openjdk-9 (9~b153-2) unstable; urgency=medium . * Lower cpu requirements for Debian/s390x. openjdk-9 (9~b153-1) unstable; urgency=medium . * OpenJDK 9, b153. openjdk-9 (9~b151-2) unstable; urgency=medium . * Fix builds with zero and jamvm as an alternate VM. openjdk-9 (9~b151-1) experimental; urgency=medium . * OpenJDK 9, b151. openjdk-9 (9~b149-1) experimental; urgency=medium . * OpenJDK 9, b149. openjdk-9 (9~b148-1) experimental; urgency=medium . * OpenJDK 9, b148. openjdk-9 (9~b147-1) experimental; urgency=medium . * OpenJDK 9, b147. * Use sigset_t to store the signals used by the JVM (James Cowgill). Addresses: #841173. openjdk-9 (9~b144-1) experimental; urgency=medium . * OpenJDK 9, b144. openjdk-9 (9~b143-2) experimental; urgency=medium . * Fix 8168567, unbreaking the build on arm64. openjdk-9 (9~b143-1) experimental; urgency=medium . * OpenJDK 9, b143. openjdk-9 (9~b142-1) experimental; urgency=medium . * OpenJDK 9, b142. openjdk-9 (9~b140-1) experimental; urgency=medium . * OpenJDK 9, b140. openjdk-9 (9~b139-1) experimental; urgency=medium . * OpenJDK 9, b139. * Stop building zero on amd64, fails to build with hardening defaults. openjdk-9 (9~b136-1) experimental; urgency=medium . * OpenJDK 9, b136. openjdk-9 (9~b135-1) experimental; urgency=medium . * OpenJDK 9, b135. openjdk-9 (9~b134-2) experimental; urgency=medium . * Build using GCC 6. * Enable zero build on arm64 and ppc64el. * Increase thread stack size for ppc* zero builds. * Don't use Solaris compiler flags on sparc64. * Port x32 zero patch. * Don't use the just built jdk for zero builds. * Don't use getFileStore() during the build, chroots throw an exception while running jlink. * Fix removal of jre-headless alternatives. Closes: #788445. openjdk-9 (9~b134-1) experimental; urgency=medium . * Build using GCC 6. * Enable zero build on arm64 and ppc64el. * Increase thread stack size for ppc* zero builds. * Don't use Solaris compiler flags on sparc64. * Port x32 zero patch. * Don't use the just built jdk for zero builds. * Don't use getFileStore() during the build, chroots throw an exception while running jlink. openjdk-9 (9~b133-2) experimental; urgency=medium . * Don't do bootcycle builds for zero builds. * Fix macro settings for zero builds. openjdk-9 (9~b133-1) experimental; urgency=medium . * OpenJDK 9, b133. openjdk-9 (9~b130-1) experimental; urgency=medium . * OpenJDK 9, b124. openjdk-9 (9~b124-1) experimental; urgency=medium . * OpenJDK 9, b124. * Fix an issue with libatk-wrapper (Samuel Thibault). Closes: #827796. openjdk-9 (9~b117-1) experimental; urgency=medium . * OpenJDK 9, b117. * Fix zero builds, next try. openjdk-9 (9~b116-1) experimental; urgency=medium . * OpenJDK 9, b116. openjdk-9 (9~b115-2) experimental; urgency=medium . * Fix zero builds: - Backport 8132051, 8146518, 8150654, 8154210 from the hs repo. - Apply proposed patch for 8153275. * Set initial VMThreadStackSize to 1600 on s390x. * Tighten openjdk build dependency on s390x. openjdk-9 (9~b115-1) experimental; urgency=medium . * OpenJDK 9, b115. * Fix header file conflict. Closes: #816440. LP: #1550950. openjdk-9 (9~b113-1) experimental; urgency=medium . * OpenJDK 9, b113. openjdk-9 (9~b112-2) experimental; urgency=medium . * OpenJDK 9, b112. openjdk-9 (9~b107-1) experimental; urgency=medium . * OpenJDK 9, b107. * Build-depend on openjdk-9-jdk-headless . * Build with GCC 5 on mips*. * Split out an openjdk-9-jdk-headless package. * Update libgconf/libgnome jre recommendations. Addresses: #813943. * Update package reference in README. Addresses: #814605. * Add french translation for policytool desktop file. Addresses: #813851. * Install app icons again. openjdk-9 (9~b102-1) experimental; urgency=medium . * OpenJDK 9, b102. openjdk-9 (9~b101-2) experimental; urgency=medium . * Disable the zero build on ppc64el, currently fails to build. openjdk-9 (9~b101-1) experimental; urgency=medium . * OpenJDK 9, b101. * Fix cross builds. * Build again using GCC 4.9 on mips*, fails to build with GCC 5. openjdk-9 (9~b96-1) experimental; urgency=medium . * OpenJDK 9, b96. * openjdk-9-jdk: Fix typo in sdk provides. Addresses: #803150. * Build using giflib 5. * Build using GCC 5 everywhere. openjdk-9 (9~b94-1) experimental; urgency=medium . * OpenJDK 9, b94. * Update configury for sparc64 (Steven Chamberlain). Addresses: #806202. * Fix stripping packages (use bash instead of expr substring). openjdk-9 (9~b88-1) experimental; urgency=medium . * OpenJDK 9, b88. openjdk-9 (9~b87-2) experimental; urgency=medium . * Prefer openjdk-8-jdk for the build. openjdk-9 (9~b87-1) experimental; urgency=medium . * OpenJDK 9, b87. openjdk-9 (9~b80-2) experimental; urgency=medium . * Fix build for armel, armhf and "unknown" zero architectures. * Fix build error on AArch64. openjdk-9 (9~b80-1) experimental; urgency=medium . * OpenJDK 9, b80. * Fix installing the openjdk.desktop file when cautious-launch is available. * Define _alpha_ / _sh_ preprocessor macros instead of alpha / sh. * Re-enable the atk bridge for releases with a fixed atk bridge. * Make derivatives builds the same as the parent distro. * Add m68k support for Zero (Andreas Schwab). openjdk-9 (9~b74-1) experimental; urgency=medium . * OpenJDK 9, b74. * Fix jdk build on x32. * JDK-8073754, increase stack size limits on powerpc and ppc64. * Configure --with-boot-jdk-jvmargs="-XX:ThreadStackSize=2240" on powerpc and ppc64. openjdk-9 (9~b71-1) experimental; urgency=medium . * OpenJDK 9, b71. * openjdk-9-jre: Recommend the real libgconf2-4 and libgnome2-0 packages. Addresses: #786594. openjdk-9 (9~b68-4) experimental; urgency=medium . * Fix 32bit detection for the build jdk; try to build again for mips and mipsel (James Cowgill). * openjdk-jre-headless: Add dependency on the package containing the mountpoint binary. openjdk-9 (9~b68-3) experimental; urgency=medium . * Enable bootcycle zero builds everywhere. * Re-enable running the testsuite. openjdk-9 (9~b68-2) experimental; urgency=medium . * Fix 8080684, PPC64 little-endian build. * Fix installation of zero based builds. openjdk-9 (9~b68-1) experimental; urgency=medium . * OpenJDK 9, b68. * Fix the build on AArch64 (Ed Nevill). openjdk-9 (9~b64-1) experimental; urgency=medium . * OpenJDK 9, b64. * Fix build error in zero. openmsx-debugger (0.1~git20170806-1) unstable; urgency=medium . * New snapshot. * Increase debhelper compat level to 10. * Add get-orig-source target. * Upgrade standards version to 4.0.0. * Convert menu entry to desktop entry. osc (0.159.0-1) unstable; urgency=medium . * New upstream release. - All patches integrated upstream. * Change priority to optional. * Bump standards to 4.0.1. pam-p11 (0.1.6-2) unstable; urgency=medium . * Upload to unstable. * debian/control: Standards-Version to 4.0.0. pam-p11 (0.1.6-1) experimental; urgency=medium . * New upstream release. * debian/gbp.conf: Add upstream-vcs-tag. * debian/patches/0001-Use-INSTALL-instead-of-libLTLIBRARIES_INSTALL.patch: Drop now unnecessary patch. * debian/libpam-p11.docs: Drop now removed docs. * debian/rules: Remove ChangeLog install, it's gone. pam-p11 (0.1.5-7) unstable; urgency=medium . * debian/patches/0002-Read-certs-again-on-token-login.patch: Read certs again on token login. Thanks Sam Hartman. (Closes: #852039) pam-p11 (0.1.5-6) unstable; urgency=medium . * debian/control: Explicit build-deps on libssl1.0-dev. * debian/control: Standards-Version to 3.9.8. * debian/compat, debian/control, debian/rules: Switch to debhelper 10. * debian/patches/0001-Use-INSTALL-instead-of-libLTLIBRARIES_INSTALL.patch: Patch to us $(INSTALL) instead of $(libLTLIBRARIES_INSTALL). pam-p11 (0.1.5-4) unstable; urgency=medium . * debian/control: Bump Standards-Version to 3.9.6 (no changes). * debian/control: Canonicalize Vcs-* fields. * debian/control: Update Homepage field to GitHub home. * debian/watch: Update for new GitHub home. * debian/control: Run wrap-and-sort. pam-p11 (0.1.5-3) unstable; urgency=low . * debian/copyright: Update to DEP5 copyright file. * debian/control, debian/rules: Use autotools-dev. * debian/control: Upgrade Standards-Version to 3.9.4. pam-p11 (0.1.5-2) unstable; urgency=low * debian/compat, debian/control, debian/rules: Convert to debhelper 9 and drop cdbs. * debian/control: Upgrade Standards-Version to 3.9.3. * debian/control, debian/rules: Multi-Arch enable package. * debian/source/format: Convert to 3.0 quilt source package format. pam-p11 (0.1.3-1) unstable; urgency=low * New upstream release. * debian/control: Bump Standards-Version to 3.7.2.2. pam-p11 (0.1.2-3) unstable; urgency=low * debian/watch: Update watchfile with new location. * debian/control: Standards-Version to 3.7.2.1. pam-p11 (0.1.2-2) unstable; urgency=low * debian/copyright: Fix copyright so it correctly says this is licensed under the LGPL. pomegranate-clojure (0.4.0~alpha1-2) unstable; urgency=medium . * Bump standards version to 4.0.0. * Release to unstable. pomegranate-clojure (0.4.0~alpha1-1) experimental; urgency=medium . * Fix classpath (Closes: #862272) * Import new upstream version (Closes: #862233) . [ Emmanuel Bourg ] * Build with maven-debian-helper instead of javahelper * Removed the htmlized readme pomegranate-clojure (0.3.1-1) unstable; urgency=medium . * Upgrade version to most recent (Closes: #852246) pomegranate-clojure (0.2.0-1) unstable; urgency=low . * Initial Release. (Closes: #719764) pytango (9.2.1-1) unstable; urgency=medium . * debian/patch - apply upstream patch to fix gcc-7 compilation (Closes: #853624) * Bump Standards-Version to 4.0.0, no changes. pytango (9.2.1-1~exp1) experimental; urgency=medium . * Import Upstream version 9.2.1 * debian/patch - drop 0001-correct-typo-s-lenght-length.patch (aplied upstream) * Use compat level 10 (Closes: #843728) python-astropy-affiliated (1.3) unstable; urgency=low . * Add pyvo, galpy, gwcs, imexam * Remove wcsaxes (superseded by astropy) * Push Standards-Version to 4.0.0. Use https for Vcs fields. python-sparse (0.1.1-1) unstable; urgency=medium . * New upstream version 0.1.1 * Ensure tests are run in isolation * Bump standards version to 4.0.1, no changes required qbs (1.8.1+dfsg-3) unstable; urgency=medium . * Make sure qbs tries to find qbs_processlauncher in correct place, by specifying QBS_RELATIVE_LIBEXEC_PATH (closes: #869909). * Update symbols files for GCC 7. rheolef (6.7-3) unstable; urgency=medium . * Team upload * Do not treat all compilers warnings as errors, this avoids a FTBFS with GCC 7 (Closes: #853641) rtv (1.17.1+dfsg-1) unstable; urgency=medium . * New upstream release (1.17.1): - Refreshes 00-warning-new-config-file.patch. * debian/control: - Removes python3-praw from Build-Depends and install Depends since own praw is included. - Bumps standards version to 4.0.1, no changes required. ruby-cairo (1.15.9-3) unstable; urgency=medium . * Team upload. . [ HIGUCHI Daisuke (VDR dai) ] * Bump debhelper compatibility level to 10. ruby-pkg-config (1.2.4-1) unstable; urgency=medium . * Team upload. . [ HIGUCHI Daisuke (VDR dai) ] * New upstream release. * d/p/fix_libz_bug870850.patch: dropped. applied upstream. * d/p/rubygem-pkg-config-1.1.3-cflags-result-sort.patch: dropped. fixed upstream. * d/tests/gem2deb-test-runner-wrapper: removed, patch applied upstream. * Added myself to Uploaders. * Bump debhelper compatibility level to 10. ruby-pkg-config (1.2.3-3) unstable; urgency=medium . * Team upload. . [ HIGUCHI Daisuke (VDR dai) ] * d/control: mark Multi-Arch as foreign * d/p/fix_libz_bug870850.patch: new file. Fix test failure on --libs-only-l with libz (Closes: #870850) simgear (1:2017.2.1+dfsg-2) unstable; urgency=medium . * Bump S-V: change priority to optional. * Really drop the patch use_debian_udns.patch. * Extend the spelling fixes patch. singularity-container (2.3.1-2) unstable; urgency=medium . * Provide version for help2man from this changelog (Closes: #871371) speedcrunch (0.12.0-2) unstable; urgency=medium . * debian/patches: - Backport some docs build fixes (closes: #871207). - Install appdata file into new metadata path * debian/copyright: use https:// for Format URL. * debian/control: - Update VCS url. - Bump Standards-Version. - Specify minimum CMake version in Build-Depends. stardict-english-czech (20170801-1) unstable; urgency=medium . * New upstream release. * Bump standards to 4.0.1. stress-ng (0.08.10-1) unstable; urgency=medium . * Makefile: bump version * stress-dirdeep: fix warning on unused variable ret on BSD systems * Update manual description for the --all option * job: allow classes to be run as jobs (LP: #1706970) * stress-dirdeep: don't remove directories in main exercise function * return EXIT_SUCCESS for class cpu? class command * stress-dirdeep: exercise files rather than create/delete * manual: fix wording in memthrash table * stress-dirdeep: Fix inode accounting, add more -v information feedback * Add --dirdeep-inodes option to limit of inodes being consumed: * parse-opts: don't allow negative percentages * Add stress_get_filesystem_available_inodes to get inode number * Add generialized percentage opt parser get_uint64_percent * helper: remove debug message from stress_get_filesystem_size * stress-ng: ensure --version option terminates immediately sysdig (0.17.0-1) unstable; urgency=medium . * New upstream version 0.17.0 * Update priority to optional for Policy v4.0. syslog-ng (3.11.1-1) unstable; urgency=medium . * [1601fce] New upstream version 3.11.1 * [e33d51d] Refreshed debian/patches. Removed patches merged upstream and fixed a conflict caused by upstream changes. * [2c0ec3c] Added python dependency for syslog-ng-dev * [5584829] Re-added the old system control file. The new upstream version contains an enhanced systemd control file which allow one to start more than one instance. Unfortunately this change would cause issues with already installed systems. Until that situation can be enhanced, the old systemd file will be used. * [4f4c274] Added the new man pages * [3e5e19f] Upgrade configs version 3.11 syslog-ng (3.10.1-3) unstable; urgency=medium . * [6318b4b] getent module conflicts with old incubator package. The getent module was moved from the incubator and therefore contains the same files. (Closes: #869159) syslog-ng (3.10.1-2) unstable; urgency=medium . * [a776121] Added new plugins. - getent - stardate - mod-value-pairs - snmptrapd-parser * [b030059] Added scl to the .install file * [e4f5ac4] Bump the debhelper compat level to 10 * [4e27f27] Fixed debhelper dependency * [ff8e0ff] Install new scl files and explicitly mention skipped ones * [50b4c13] Fixed 32 bit compile issues. This patch is suggested by upstream in github issue 1545. * [ae5e271] Remove obsoleted files from debian/ * [cccc2bb] Added the new packages to the testing * [8661982] Removed unneeded prebuild step syslog-ng (3.10.1-1) unstable; urgency=medium . * [e47c9a6] Re-generated openssl patch to make the gbp pq happy And a patch were a next session start before the previous is finished can be called weird anyway. * [114f0e0] Try again using tagged git release as orig.tar.gz Now, after some time I'm a bit more confident that using a naked git release is better than the full-featured and all-including release. First, it is much smaller. Especially because it does not contain all of the third party libraries which are not used in Debian. Second reason is that this can be followed much easily, because this is the same as any particular state in the git repo, so a snapshot can be more easily used if this is the daily routine. * [9c410bb] New upstream version 3.10.1 (closes: #866056) * [fa5c024] Preparing for upstream version 3.10.X * [c0f99c0] Updated the patches to the new upstream version This mainly means deleting patches which already merged upstream. * [a7b8153] Added new build dependency (autoconf-archive) * [9a197e2] Removed version fixation * [f52837d] Upgrade test config version * [bf45a65] Upgraded default config version to 3.10 * [fc82e19] Added a new test to test the default config syslog-ng (3.8.1-10) unstable; urgency=medium . * Fix segfault in X509_STORE_CTX_get_app_data(ctx) (closes: #850743). syslog-ng (3.8.1-9) unstable; urgency=medium . * Fix build with OpenSSL 1.1 (closes: #848786). syslog-ng (3.8.1-8) unstable; urgency=medium . * [ee388fd] Declaring breaks because of file moving (Closes: 847708) * [1ebe21f] Switch to unstable repo * [18653b3] Added testing upgrade capability syslog-ng (3.8.1-7) unstable; urgency=medium . * [45109e3] Moved templates depending on json to mod-json (Closes: #845799) * [023a862] Added some more testcases to autopkg syslog-ng (3.8.1-6) unstable; urgency=medium . * [41f337f] Updated configuration. Removed the deprecated defines from scl.conf and upgraded the version of the configuration file. (Closes: #843937) syslog-ng (3.8.1-5) unstable; urgency=medium . * [05e9749] Revert export method to head. Much cleaner and can be changed in parameter list if needed * [6b49e04] Added basic test to check if syslog-ng can start * [80260f3] Added tzdata dependency, needed by a testcase. Because tzdata is neither essential nor build-essential package explicit build-dependency is needed. (Closes: #839449) * [e68e244] Upgraded ABI version to 3.8 * [1241045] Temporally stay with the libssl-1.0 until upstream fix this (Closes: #828565) * [c8dc698] Added dependency to lsb-base as lintian suggested syslog-ng (3.8.1-4) experimental; urgency=medium . * [6b459d5] Bumped policy version to 3.9.8 * [de6480c] Added patch to fix man page line breaking issue * [221a51e] Added new module: add-contextual-data * [6733853] Removing unnecessary parts. Removing commented out parts and also parts which are obsoleted. * [bb61029] Fixed Vcs field in debian/control * [3d07696] Changed export method to Workspace. With this change it is possible to build a debian package from syslog-ng with the help of git-buildpackage and without committing the change first. * [f7a25e3] Enforce re-generating the man pages * [abc4899] Remove unneeded files from build stage dir. To make the --list-missing more practical. syslog-ng (3.8.1-3) experimental; urgency=medium . * [e1adb55] Fixed debian/changelog wrapping * [c3d1395] Do not use embedded libraries when possible * [6f73327] Follow the upstream decision to change mongodb library * [f893b95] Added patch to fix compile issue with system provided mongodbc * [46ff5cd] Enabled rabbitmq module syslog-ng (3.8.1-2) experimental; urgency=medium . * [fc743d9] Added upstream patch fixing hurd-i386 compilation * [0efe489] Do not try to install systemd related things on kfreebsd syslog-ng (3.8.1-1) experimental; urgency=medium . * [469c62c] Revert to the old watch file. The tags does not work, because the downloaded archive does not contain some essential part of the distribution. * [b1f13dc] Imported Upstream version 3.8.1 * [da4ae60] Added import-orig options to exclude the .git files and the debian directory * [c29eaa1] Removed test patches * [f7197f1] Added new dependencies needed by new test cases * [cdfc0cc] Removed datadir which is not needed any more * [e16ea28] Added new files to the appropriate package. Also removed hack installing system init script. * [da85f54] Added native connector to the dev package syslog-ng (3.7.3-3) unstable; urgency=medium . * [469c62c] Revert to the old watch file. The tags does not work, because the downloaded archive does not contain some essential part of the distribution. * [80260f3] Added tzdata dependency, needed by a testcase. Because tzdata is neither essential nor build-essential package, explicit build-dependency is needed. (Closes: #839449) syslog-ng (3.7.3-2) experimental; urgency=medium . * [db0cb33] Removed unneeded file mode change. The install type is changed to script for that file, so this is not needed any more. syslog-ng (3.7.3-1) unstable; urgency=low . * New upstream release (Closes: #802888, #794585, #804667). * Adapt to upstream changes handling PYSETUP_OPTIONS. * I do not know how that files appeared there, but now definitively not there. (Closes: #801546) * Check if we handled everything installed by the upstream installer. syslog-ng (3.7.1-3) experimental; urgency=medium . * [d340beb] Re-add debian directory cleanup. For some reason neither in the quilt format will the upstream files removed from the debian directory. So we should do it by hand. syslog-ng (3.6.1+git20141206-g4d90138-4) experimental; urgency=medium . [ Gergely Nagy ] * Run the test suite with VERBOSE=1, so we see the actual test results. * Add a Replaces: to syslog-ng-mod-journal, for smooth upgrades. syslog-ng (3.6.1+git20141206-g4d90138-3) experimental; urgency=low . [ Gergely Nagy ] * Move the systemd-journal() source to a separate package, which is depended on by syslog-ng-core on linux-any. This allows building the binaries without gross hacks on all architectures. syslog-ng (3.6.1+git20141206-g4d90138-2) experimental; urgency=low . [ Gergely Nagy ] * Only force systemd on Linux, disable it everywhere else. This should allow syslog-ng to build again on non-linux architectures. syslog-ng (3.6.1+git20141206-g4d90138-1) experimental; urgency=low . [ Gergely Nagy ] * New snapshot release, based on upstream git commit 4d90138. . * In scl.conf, include scl/*/*.conf, not just plugin.conf, so that all SCL plugins are included. * Use an updated systemd service file, that does not pull in syslog.socket (we're reading directly from the Journal, and do not need the forwarding socket). * Update the Vcs-* fields in debian/control, packaging was moved to a separate repository. syslog-ng (3.6.1-1) experimental; urgency=low . [ Gergely Nagy ] * New upstream stable release. + Uploading to experimental, due to the Jessie freeze. * Standards-Version bumped to 3.9.6 (no changes necessary). * Homepage changed to www.syslog-ng.org. * Updated copyrights in debian/copyright. * Dropped the Lintian overrides, they're not needed anymore. * Major packaging cleanup: + Dropped all triggers, because they're not used anymore (since 3.5.6-2). + Allow parallel building. + Enabled the test suite. + Greatly simplified the packaging, dropping support for ancient distributions like Ubuntu Lucid. + Use a virtual package for ABI tracking. + Switched the packaging to a git-buildpackage compatible workflow. syslog-ng (3.5.6-2.1) unstable; urgency=medium . * Non-maintainer upload. * Build against libsystemd-dev. (Closes: #779765) syslog-ng (3.5.6-2) unstable; urgency=high . [ Gergely Nagy ] * Use dh_installinit --restart-after-upgrade instead of hand-coding essentially the same thing, badly. * Urgency high, as this moderates the effect of #757903. syslog-ng (3.5.6-1) unstable; urgency=high . [ Gergely Nagy ] * New upstream release, fixing a major memory leak (thus the urgency) * Loosen the shlibs dependency on syslog-ng-core, so that syslog-ng-incubator need not be rebuilt for every single syslog-ng upload. * Fixed a typo in debian/rules. syslog-ng (3.5.5-2) unstable; urgency=high . [ Gergely Nagy ] * Explicitly disable linux capability support on non-linux platforms, instead of relying on auto-detection (which doesn't always work). syslog-ng (3.5.5-1) unstable; urgency=high . [ Gergely Nagy ] * New upstream release, fixing major leaks (hence the urgency) * Build-Depend on libjson-c-dev | libjson0-dev. (Closes: #745014) * Add /var/log/error to the logrotate file. (Closes: #747020) * Include libsyslog-ng-test.a and the related pkg-config file in the syslog-ng-dev package. * Added an upstart init script (mostly for the benefit of older Ubuntu releases and backports). * syslog-ng-mod-redis no longer (mistakenly) recommends geoip-database. syslog-ng (3.5.4.1-1) unstable; urgency=medium . [ Gergely Nagy ] * New upstream release. * Handle the shlibs file correctly, and install it to the syslog-ng-core package. syslog-ng (3.5.3-1) unstable; urgency=medium . [ Gergely Nagy ] * New upstream release. + Based on 3.5/master, which includes a couple of bison3 fixes. syslog-ng (3.5.2-1) unstable; urgency=high . [ Gergely Nagy ] * New upstream release. + Fix the system() source on older Linux kernels (Closes: #729991) + Fix kernel timestamp computation on 32-bit systems (Closes: #729575) * Added a missing GPL-2+ license block to debian/copyright. * Correctly install the pkg-config file to /usr/lib/pkgconfig. * Updated the Vcs-* fields to point to debian.org resources. * Updated the package descriptions to be more similar to the upstream one. * Urgency set to high, due to the RC bugfix on 32-bit architectures. syslog-ng (3.5.1-1) unstable; urgency=low . [ Gergely Nagy ] * New upstream release. + Support auto-loading modules (Closes: #650814) + The SMTP module is available in syslog-ng-mod-smtp (Closes: #722746) + New modules: amqp, geoip, stomp, redis and smtp. + Multi-line input support (indented multiline and regexp-based) + Template type hinting for the MongoDB destination and $(format-json) + Support for unit suffixes in the configuration file + New filters, template functions and other miscellaneous changes * New (team) maintainer, Laszlo Boszormenyi, Attila Szalay and myself added to Uploaders. * Ship /var/lib/syslog-ng in the syslog-ng-core package, instead of creating it in the init script. Thanks Michael Biebl for the report & assistance. (Closes: #699942, #719910) * Use dh-systemd for proper systemd-related maintainer scripts. Based on a patch by Michael Biebl . (Closes: #713982, #690067) * Do not wait for syslog-ng to settle down during installation / update. This also fixes installing via debootstrap and a fake start-stop-daemon. (Closes: #714254) syslog-ng (3.3.9-1) unstable; urgency=low . * New upstream release. * Include missed ivykis header (closes: #708793). syslog-ng (3.3.6-2) unstable; urgency=low . [ Gergely Nagy ] * Use /dev/ttyva on kFreeBSD as the target of the d_console_all destination (closes: #697042). * Use the standard /var/log/mail.{info,err,warn} location for the various mail-related logs (closes: #692056). * Don't mark systemd symlinks in /etc as conffiles. * Instead of installing systemd service file symlinks, install a conffile, that includes the real service file (closes: #690067). * Do not forcibly remove the systemd service files, that code is not needed anymore. syslog-ng (3.3.6-1) unstable; urgency=low . * New upstream release: - fixes disconnect on charset decoding error when using UDP sources (closes: #674099), - use upstream, packaged ivykis. * Backport upstream fix of cfg-lexer to fix glob-based include order. . [ Gergely Nagy ] * Add NEWS.Debian, with a note about OpenSSL changing the default dir hashing from MD5 to SHA1, and its effect on syslog-ng users. * Fix build-indep and multiple builds in a row * Explicitly remove systemd unit and service files from /etc upon purge (closes: #674020). syslog-ng (3.3.5-4) testing-proposed-updates; urgency=low . [ Dominic Hargreaves ] * Remove previous symlink conffiles. . [ Laszlo Boszormenyi (GCS) ] * Fix remaining systemd configuration issues. syslog-ng (3.3.5-3) testing-proposed-updates; urgency=low . [ Gergely Nagy ] * Don't mark systemd symlinks in /etc as conffiles. * Instead of installing systemd service file symlinks, install a conffile, that includes the real service file (closes: #690067). * Do not forcibly remove the systemd service files, that code is not needed anymore. * Use the standard /var/log/mail.{info,err,warn} location for the various mail-related logs (closes: #692056). * Use /dev/ttyva on kFreeBSD as the target of the d_console_all destination (closes: #697042). . [ Laszlo Boszormenyi (GCS) ] * Fix ivykis fallback on eventfd2 errors with the addition of ivykis_fallback_fix.patch (closes: #702131). syslog-ng (3.3.5-2) unstable; urgency=low [ Gergely Nagy ] * Fix FTBFS on non-Linux architectures (closes: #672457). syslog-ng (3.3.5-1) unstable; urgency=low [ Gergely Nagy ] * New upstream release. + afsocket: handle DNS failures as if it was a connection failure (Closes: #660897) * All patches dropped, they're applied upstream. * Include upstream man pages, as they're DFSG-free now. * Update debian/copyright for 1.0 of the spec. * Bump Standards-Version to 3.9.3 (no changes required) * Fix squeeze->wheezy install-remove-install upgrade path. (Closes: #665905) * Fix the init script to create /dev/xconsole properly on GNU/kFreeBSD. syslog-ng (3.3.4.dfsg-2) unstable; urgency=medium * Get important bugfixes from upstream git tree. * Correct short description of -dbg package (closes: #659119). syslog-ng (3.3.4.dfsg-1) unstable; urgency=low * New upstream release: - remove backported patches as this release contains them, - fix FTBFS on Hurd, patch from Svante Signell (closes: #648987). * Add dfsg target to make the source DFSG compliant. * Use debhelper compatibility level 9 for hardening flags to be effective (closes: #655163). * Make the package multiarch. [ Gergely Nagy ] * Introduced a syslog-ng-dbg package. * Init script updates: + Silence mknod errors, they're not interesting, and adds noise on kFreeBSD. + Use set -e. + Use s-s-d's --oknodo options instead of checking the existence of a pidfile ourselves. * Refresh debian/copyright. syslog-ng (3.3.1.dfsg-1) unstable; urgency=low * New upstream release with important fixes from upstream git tree with non-free manpages removed. * Drop syslog-ng.conf(5) (closes: #496521). * syslog-ng(8) is generated, and does not mention -Q anymore (closes: #616069). * Supports CAP_SYSLOG on recent kernels (closes: #630172). * Does not use g_timeout_add_seconds anymore (closes: #609154). [ Gergely Nagy ] * Update debian/copyright to DEP-5 format. * Simplified the logrotate file by merging identical entries. * Include local configuration files from /etc/syslog-ng/conf.d/ (Closes: #609050). * Update syslog-ng.conf to be fully 3.3 compliant. * Compress both source and binaries (except the syslog-ng meta package) with xz, instead of gzip. * Use dpkg triggers to restart syslog-ng when appropriate. * Include DFSG-free manual pages for all binaries. * Build with Hardening enabled. * Mention syslog(3) in /etc/default/syslog-ng, instead of (Closes: #608605) * Support 'status' in the init script. Patch from Peter Eisentraut (Closes: #644458) * Build-Depend on libevtlog-dev (>= 0.2.12-5~) for correct shlibs. * Use [linux-any] in Build-Depends instead of hardcoded links. (Closes: #634715) * Use $SYSLOGNG_OPTS in the init script when reloading syslog-ng. (Closes: #589081) syslog-ng (3.2.4-1) unstable; urgency=high * New upstream release, fixing infinite loop via PCRE and global. No CVE number yet, Vigil@nce id is 10648. * Remove all patches, they were applied upstream. syslog-ng (3.1.3-3) unstable; urgency=high * Fix capability support for unix streams and files when dir_owner() and/or dir_group() is used (closes: #608791). Urgency set to high to fix this grave bug which can break logging. syslog-ng (3.1.3-2) unstable; urgency=high * Security fix on kFreeBSD archs, don't set 7777 rigths on logfiles (closes: #608491). syslog-ng (3.1.3-1) unstable; urgency=medium * Medium urgency due to the number of serious bugs fixed. * New upstream version, fixing configuration version detection (closes: #603617). syslog-ng (3.1.2-3) unstable; urgency=low * Apply upstream patch for config file version detection. * Correct debian/watch . syslog-ng (3.1.2-2) unstable; urgency=low * Don't set options on reload as it's not needed (closes: #599276). syslog-ng (3.1.2-1) unstable; urgency=low * New upstream release. * Update to Standards-Version 3.9.1 . * Build depend on libcap-dev to add capability support on Linux archs. * Disable statistics logging (closes: #586749) and restore logging to /var/log/syslog . syslog-ng (3.1.1-3) unstable; urgency=low * Update initscript not to fail if syslog-ng is already running or stopped. * Don't just enable SSL support, but make it really built. * Don't leave files behind on remove and purge. syslog-ng (3.1.1-2) unstable; urgency=low * Add missing messages filter and add rotate of error log (closes: #579620). * Enable SSL support. * Update debian/copyright and add OpenSSL exception. * Enable support for spoofed source addresses and for TCP wrappers. * Suggest libdbd-mysql, libdbd-pgsql and libdbd-sqlite3 for SQL logging (closes: 582948). syslog-ng (3.1.1-1) unstable; urgency=low * New upstream release. * Correct program_override for kernel messages (closes: #576550). syslog-ng (3.1.0-1) unstable; urgency=low * New upstream release. * Fix path of syslog logfile (closes: #575722) and use tty10 instead of vc/10 to log on console. * Provide syslog-ng in initscript (closes: #575723). syslog-ng (3.0.5-3) unstable; urgency=low * Correct log socket path on kFreeBSD (closes: #574781). * Clean up packaging a bit, correct watch file. syslog-ng (3.0.5-2) unstable; urgency=low * Updated configuration to be 3.0 compilant (closes: #574496) and use source, destination and filter prefixes in their names. * Update logcheck ignore file (closes: #499526), thanks to Gábor Gombás. * Version 3.0 is available in Sid now (closes: #556941). syslog-ng (3.0.5-1) unstable; urgency=low * New upstream release, new maintainer. syslog-ng (3.0.1-1) experimental; urgency=low * New upstream version syslog-ng (2.0.9-4.2) unstable; urgency=low * Non-maintainer upload to fix release goal. * Add support for status in init.d script (Closes: #533076). Patch from Peter Eisentraut. * Correct init.d script provide to avoid duplicate provide issues when switching from one syslog implementation to another (Closes: #542606) * Update to debhelper version 7. * Change standards-version 3.7.3.0 to 3.8.3. No change needed. * Remove ylwrap in clean target, the symlink is created during build. syslog-ng (2.0.6-1) unstable; urgency=high * New upstream version. * This release addresses the following security issue: - A remote attacker can cause a denial of service (crash) via a crafted log message that is missing a whitespace at the end of the timestamp (CVE-2007-6437; Closes: #457334) syslog-ng (2.0.5-3) unstable; urgency=low * Added watchfile. * Added anonymizer patch created by Micah Anderson. (Closes: #449569) syslog-ng (2.0.5-1) unstable; urgency=low * New upstream version. syslog-ng (2.0.0-1) unstable; urgency=low * New upstream version. I hope it's really fix it. (Closes: #384021) * Remove util-linux dependecy. This dependency won't needed because util-linux is essential. (Closes: #398640) syslog-ng (2.0rc3-2) unstable; urgency=medium * Fixed NULL dereference when (Closes: #384021) syslog-ng (2.0rc3-1) unstable; urgency=low * New upstream version. * Print a message in reload function. (Closes: #384174) syslog-ng (2.0rc1-2) unstable; urgency=low * Added upstream fix about filters in powerpc. (Closes: #380207) * Added upstream fix to prevent DOS with zero size UDP packets. * Created and modified logcheck rules by artin f. krafft added (Closes: #380628) syslog-ng (2.0rc1-1) unstable; urgency=low * New upstream version. - Bazsi swear that this release really fix facility and priority problems. (Closes: #350120, #350344, #374056) - Do not reconnect to target immediately but wait for time_reopen first. (Closes: #352695) - dir_gid was not initialized because of a typo, thus dir_group() did not take effect, fixed. (Closes: #351095) * Added logcheck rules created by martin f krafft with two one exception (Closes: #369489, #376750, #355213) - I do not remove Log statistics line from logcheck.ignore.paranoid. syslog-ng (1.9.11-1.1) unstable; urgency=low * Non-maintainer upload * Update license file (Closes: #375236) * Updated Standard Version to 3.7.2 * Fix invoke-rc.d call to remove lintian warnings syslog-ng (1.9.11-1) unstable; urgency=low * New upstream version - Fixed log facility and priority detecting. (Closes: #350120, #350344, #357071, #367256) * Added bison to Build-Dependency. (Closes: #368765) syslog-ng (1.9.9-2) unstable; urgency=low * Switch to the latest snapshot version, with some un-released upstream bug-fixes. (Closes: #352362) * Fixed misspelled KERNEL_RINGBUF_SIZE. Again. (Closes: #324813) * Stop syslog-ng when removing. (Closes: #356002) * Added some new logckeck lines. (Closes: #357692) * Disable statistic messages in default config file. (Closes: #355833) syslog-ng (1.9.9-1) unstable; urgency=low * New upstream version. - Added missing macro definitions. (Closes: #349571) - Fixed Source reference counting. (Closes: #351312) syslog-ng (1.9.8.1+20060128-1) unstable; urgency=low * New upstream version. (Closes: #349697, #349840, #350014) * Added html documentatuin again. (Closes: #344028) * Added NEWS file to the package. (Closes: #349912) syslog-ng (1.9.8.1) unstable; urgency=low * Added flex to Build-depends. syslog-ng (1.9.8) unstable; urgency=low * New upstream version * First not experimental version. * Added pkg-confg and libglib2.0-0 dependencies. (Closes: #344795) * Fixed config file place back to /etc/syslog-ng/ (Closes: #336981) syslog-ng (1.6.9-1) unstable; urgency=low * New upstream version. * Changed accepted Console log level to 1-8. (Closes: #318757) * Fixed misspelled KERNEL_RINGBUF_SIZE. (Closes: #324813) * Fixed a copy & paste bug in a manpage. (Closes: #312112) syslog-ng (1.6.8-1) unstable; urgency=low * New upstream version. * Debian patch cleaned up. If something needed dropped out please tell me! * Create /dev/xconsole if not exists. (Closes: #312690) * Check the config file for syntax errors before reload. (Closes: #294888) * Fixed a typo in syslog-ng.conf (Closes: #312114) * Created a directory. Put debian specific patches into it. * Added the new version of syslog-ng-annon patch. (Closes: #303808) syslog-ng (1.6.7-2) unstable; urgency=high * Added syslog-ng-anon IP anonymizing patch, see /usr/share/doc/README.syslog-ng-anon for more information (Closes: #303808) * Restart syslog-ng manually and start it only if installed and not upgraded. (Closes: #297190) Set urgency to high because of this. * In int change start-stop-damon call parameter from --exec to --name to enable restart syslog-ng after upgrade. syslog-ng (1.6.7-1) unstable; urgency=low * New upstream version. (Closes: #301617, #304894, #304966, #282782) * Check if CONSOLE_LOG_LEVEL and KERNEL_RINGBUF_SIZE has value and not complain about wrong value, if not. (Closes: #296315, #304215) * Removed unneeded code from postrm. (This code was to remove divertion, but syslog-ng does not divert any file any more.) * Removed KERNEL_RINGBUF_SIZE option. (Closes: #298022) * Added AC_PREREQ(2.50) to configure.in. (Closes: #299543) syslog-ng (1.6.5-2.2) unstable; urgency=low * Fixed missing space in versioned-depends on util-linux * Fixed improper UTF-8 conversion of debian/changelog, thanks cjwatson@debian.org syslog-ng (1.6.5-2.1) unstable; urgency=high * Non-maintainer upload to fix security hole for sarge * Added upstream patch to fix log messages getting dropped which allowed certain forms of attacks to be performed without getting logged. (Closes: #304894) * Changed debian/control to use a versioned depends on util-linux to fix lintian error * Converted debian/changelog to be valid UTF-8 by to fix lintian error * Updated documentation: doc/syslog-ng.conf.5, doc/syslog-ng.8 to fix outdated information and typos and language clarification on klogd in doc/sgml/syslog-ng.sgml syslog-ng (1.6.5-2) unstable; urgency=low * Checks if UDP ends in NL or NUL. Closes: #282782 * Merged in _second_ version of Loic's syslog-ng.conf. Closes: #268686 * Made kernel logging parameters configureable through /etc/defaults/syslog-ng. Closes: #283091 syslog-ng (1.6.5-1) unstable; urgency=low * New upstream version syslog-ng (1.6.0rc4-1) unstable; urgency=low * New upstream version * New libol version * removed duplicate restart in postinst. Closes: #204631 * added Mag as co-maintainer * incremented Standards-Version to 3.6.1 syslog-ng (1.6.0rc1+20030310-2) unstable; urgency=low * Forward port bugfix. Log every new log. * Remove unwanted 'x' char from conffile. Closes: #184985 syslog-ng (1.6.0rc1+20030310-1) unstable; urgency=low * New upstream version. Closes: #184026. * Set gconfd as bad hostname. Closes: #107189. * Fix a typo in postinst srcipt (becouse->because). Closes: #170499. texlive-base (2017.20170808-1) unstable; urgency=medium . [ Gregor Herrmann ] * Fix "Unescaped left brace in regex is deprecated": add patch thumbpdf-unescaped-left-brace to fix unescaped literal curly. (Closes: #826465) . [ Norbert Preining ] * new upstream checkout - new xecjk fixes undefined boolean (Closes: #870280) texlive-lang (2017.20170808-1) unstable; urgency=medium . * new upstream checkout trollius-redis (0.1.4-2) unstable; urgency=medium . * Disable Python 3 version of the package. The package does not build with Python 3 anymore (actually, Trollius has been deprecated upstream), but the Python 2 version is still used by other upstream packages, so I am keeping that. (Closes: #868194) * Updating policy to 4.0.0. webauth (4.7.0-5) unstable; urgency=medium . * Update build dependency to libssl-dev (OpenSSL 1.1). (Closes: #859788) * Remove old transitional packages for the Apache module renaming. * Update standards version to 4.0.1. - Change all extra priorities to optional. wings3d (2.1.5-2) unstable; urgency=medium . * Added a patch by upstream which fixes FTBFS when building with Erlang/OTP 20 (closes: #871369). xdebug (2.5.5-3) unstable; urgency=medium . * Fix max << PHP 7.2.0 dependency xml-rpc-el (1.6.12-2) unstable; urgency=medium . * Upload to unstable. * Bump std-ver to 4.0.1 (no changes required). xml-rpc-el (1.6.12-1) experimental; urgency=medium . * Initial release (Closes: #850849). Upload to experimental pending resolution of #419510. xmoto (0.5.11+dfsg-7) unstable; urgency=medium . * Avoid comparing pointers with booleans. (Closes: #853712.) * Update debian/copyright. * Standards-Version 4.0.0, no further change required. * Switch to debhelper compatibility level 10. * Update forwarded patches. zim (0.67-1) unstable; urgency=medium . * New upstream release. Closes: #869553 * Drop patches merged upstream. * Bump Standards-Version to 4.0.0. * Bump debhelper compat level to 10. zim (0.67~rc2-2) experimental; urgency=medium . * Add upstream patches to fix quicknote plugin. zim (0.67~rc2-1) experimental; urgency=medium . * New upstream release candidate. * Update watch file to support release candidates tarballs. * Drop all patches, issues fixed upstream. For reload-pages.patch, there's an e-tag mechanism to detect when files have been changed underneath.