From: Jean Baptiste Favre Date: Mon, 3 Dec 2018 13:15:07 +0000 (+0000) Subject: trafficserver (8.0.1-1) unstable; urgency=medium X-Git-Tag: archive/raspbian/8.0.2+ds-1+rpi1~1^2^2^2~7 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=4f2eec63bbb3f9b48c4e62057ef41fd23291a40a;p=trafficserver.git trafficserver (8.0.1-1) unstable; urgency=medium * New upstream version 8.0.1 * Patches refresh for 8.0.1 * Removed patches which have been merged upstream: - 0002-add-mips64-support - 0004-fix_arm_build - 0005-fix_build_kfreebsd - 0007-fix-uri_signing - 0010-fix-32bits-build - 0012-fix-traffic_via * Fix lintian warning public-upstream-key-not-minimal [dgit import unpatched trafficserver 8.0.1-1] --- 4f2eec63bbb3f9b48c4e62057ef41fd23291a40a diff --cc debian/CONFIGURATION.Debian index 00000000,00000000..206614a7 new file mode 100644 --- /dev/null +++ b/debian/CONFIGURATION.Debian @@@ -1,0 -1,0 +1,99 @@@ ++trafficserver for Debian ++------------------------ ++ ++Here are some configuration hints related to Traffic Server. Unless you already ++noted, configuration files are located in /etc/trafficserver. Traffic Server ++has some uncommon behaviour here: Please note, those files are generated auto- ++matically and some may not even be intended to be edited manually. Moreover it ++will rotate and synchronize configuration files if you run a cluster. Hence be ++careful when editing them, chances are Traffic Server WILL OVERWRITE them. This ++is especially true for comments which are not kept when using `traffic_line' ++(as explained below). ++ ++* To get a general idea about traffic server and its architecture, read [4]. It ++ is crucial to understand the internal architecture before trying to start. ++ ++* The main configuration file is `records.config'. You may either edit the main ++ configuration file by hand, but it is suggested to use the `traffic_line' ++ command instead. More on editing configuration files can be found on [1]. The ++ `traffic_line' command is used like this: ++ ++ traffic_line -s proxy.config.proxy_name -v www.example.com ++ ++ You might need to tell Traffic Server about your changes. If it is already ++ running use `traffic_line -x' to inform it about your changes. Please note ++ that you must restart your `traffic_server' daemon for some changes. ++ ++* If you used Squid before you might find [2] helpful which lists Traffic Serv- ++ er configuration directives along their Squid equivalent. Use this as resour- ++ ce to understand Traffic Server. ++ ++* To help you to get started, I am going to introduce you very briefly to Traf- ++ fic Server. Note, lines starting with `#' are remarks: ++ ++ Open `records.config'. ++ ++ # Configure the cluster interface ++ CONFIG proxy.config.cluster.ethernet_interface STRING eth0 ++ ++ ++ # You may also want to bind your proxy server to a specific IP: ++ # Please note the security warning below as well ++ CONFIG proxy.local.incoming_ip_to_bind 1.2.3.4 ++ ++ # Next configure the listening port for incoming connections ++ CONFIG proxy.config.http.server_port INT 80 ++ ++ # Now tell Traffic Server how much Memory it is allowed to consume ++ # Set this value to -1 for best results which will instruct Traffic Server ++ # to consume roughly 1 MB for each GB of your disk backend storage size ++ # for memory caching. If you can afford it, go on and trash as much as ++ # you want and put here any positive value indicating the memory cache ++ # in bytes. ++ CONFIG proxy.config.cache.ram_cache.size LLONG 131072 # (128 MB) ++ ++ Next edit `storage.config'. Debian ships with a default configuration poin- ++ ting to a cache file in `/var/cache/trafficserver' sized 256MB. This is fair- ++ ly ok for testing, otherwise feel free to change (value is in KB): ++ ++ /var/cache/trafficserver 262144 ++ ++ Finally open `remap.config' where you need to tell Traffic Server about ++ your origin server(s): ++ ++ map http://www.example.com/ http://www.example.com:8080/ ++ # ---------------------- ---------------------------- ++ # ^- This is your client This is your origin -^ ++ # Host: header that server. ++ # is to be mappend ++ ++* For a more comprehensive documentation about Traffic Server and its configu- ++ ration directives consult [3]. ++ ++ Yet the documentation on the web page can not be considered up to date for some ++ parts. Feel free to ask for help on the Apache Traffic Server mailing list: ++ ++ E-Mail ++ URL: ++ ++ More information may be found on either resource among those: ++ Project Website: ++ IRC: #traffic-server on irc.freenode.net. ++ Project Wiki: https://cwiki.apache.org/TS/traffic-server.html ++ ++* Traffic Server can basically act in two modes: As forward proxy and as a rever- ++ se proxy. Traffic Servers primary purpose is to act as reverse proxy (e.g. ++ different to Squid). Nonetheless you can Traffic Server still instruct to act ++ as forward proxy as well. If you know what you are doing, you need to set ++ ++ CONFIG proxy.config.url_remap.remap_required INT 0 ++ ++ for that purpose. ++ ++ ++[1] https://docs.trafficserver.apache.org/en/latest/admin-guide/configuring-traffic-server.en.html ++[2] https://cwiki.apache.org/confluence/display/TS/SquidConfigTranslation ++[3] https://docs.trafficserver.apache.org/en/latest/admin-guide/files/records.config.en.html ++[4] https://docs.trafficserver.apache.org/en/latest/admin-guide/introduction.en.html ++ ++ -- Arno Töll Wed, 21 Mar 2012 14:10:21 +0100 diff --cc debian/NEWS index 00000000,00000000..d4253168 new file mode 100644 --- /dev/null +++ b/debian/NEWS @@@ -1,0 -1,0 +1,23 @@@ ++trafficserver (6.0.0-3) unstable; urgency=medium ++ ++ If you are using 32-bits package, please not that upstream has ++ discontinued 32-bit support. ++ 32-bits Debian package will still be built, but is subject to removal ++ whenever 32-bit fails. ++ ++ -- Jean Baptiste Favre Mon, 14 Dec 2015 10:29:12 +0100 ++ ++trafficserver (3.0.0-1) unstable; urgency=low ++ ++ If you are upgrading from v2.1.8 or earlier to ATS 3.0 you need to migrate ++ to the new `records.config' configuration file. If possible, let Debian ++ overwrite your `records.config' configuration file. ++ ++ Moreover you should clear all caches after upgrading (e.g. do "traffic_server ++ -Cclear"). ++ ++ The host.db data abse isn't required anymore. Therefore you can delete ++ `/etc/trafficserver/internal/hostdb.config' and `/var/cache/trafficserver/ ++ host.db'. ++ ++ -- Arno Töll Wed, 15 Jun 2011 16:23:13 +0200 diff --cc debian/README.Debian index 00000000,00000000..cd6a3cae new file mode 100644 --- /dev/null +++ b/debian/README.Debian @@@ -1,0 -1,0 +1,44 @@@ ++trafficserver for Debian ++------------------------ ++ ++* ATS 8.0.0 comes with slight changes in config files. ++ Following ones has been removed: ++ - /etc/trafficserver/vaddrs.config ++ - /etc/trafficserver/metrics.config ++ - /etc/trafficserver/logging.config ++ - /etc/trafficserver/log_hosts.config ++ - /etc/trafficserver/congestion.config ++ - /etc/trafficserver/cluster.config ++ - /etc/trafficserver/body_factory/default/congestion#retryAfter ++ ++* New config files have been added and now use yaml format. ++ More files will be migrated in the future: ++ - /etc/trafficserver/logging.yaml ++ - /etc/trafficserver/ssl_server_name.yaml ++ ++* gzip pluging has been renamed into compress. ++ Existing configuration won't be updated ++ ++* traffic_cop has been removed. Now, init and systemd files use traffic_manager ++ ++ -- Jean Baptiste Favre Fri, 21 Sep 2018 09:04:07 +0200 ++ ++* If you are using 32-bits package, please note that upstream has ++ discontinued 32-bit support. ++ 32-bits Debian package will still be built, but is subject to removal ++ whenever 32-bit fails. ++ ++ -- Jean Baptiste Favre Mon, 14 Dec 2015 10:29:12 +0100 ++ ++* Please read the CONFIGURATION.Debian file to get started with Traffic Server. ++ ++* Currently Apache Traffic Server lacks man pages of binaries shipped along the ++ package. That's a known problem which is being worked on. Please read the ++ upstream documentation on the website instead. ++ ++* If you read upstream's documentation about Traffic Server you will sometimes ++ find references to a program `/usr/bin/trafficserver`. Debian does not ship ++ this script. This is intentional. Use Debian's /etc/init.d/trafficserver ++ script instead. ++ ++ -- Arno Töll Tue, 31 Dec 2011 13:54:18 +0100 diff --cc debian/README.conf-remap.Debian index 00000000,00000000..28d9e4dc new file mode 100644 --- /dev/null +++ b/debian/README.conf-remap.Debian @@@ -1,0 -1,0 +1,26 @@@ ++Trafficserver-plugin-conf-remap for Debian ++----------------------------------------- ++ ++* The conf_remap plug-in allows you to override configuration directives ++ dependent on actual remapping rules. ++* This plug-in replaces older legacy functionality which allowed to achieve a ++ similar behaviour previously by configuring remap rules for example with ++ switches like "@pristine_host_hdr=1" in your remap configuration. ++* If you want to achieve this behaviour now, configure a remap rule like this: ++ ++ map http://cdn.example.com/ http://some-server.example.com \ ++ @plugin=conf_remap.so @pparam=/etc/trafficserver/cdn.conf ++ ++ where cdn.conf would look like records.config, e.g. ++ ++ CONFIG proxy.config.url_remap.pristine_host_hdr INT 1 ++ ++ Doing this, you will override your global default configuration on a per map- ++ ping rule. ++ ++* You may want to look on ++ ++ for a full list of options which are allowed to be overridden and perhaps ++ some updated information. ++ ++ -- Arno Toell Tue, 12 Jan 2011 19:30:18 +0100 diff --cc debian/change_config.pl index 00000000,00000000..01072dfb new file mode 100755 --- /dev/null +++ b/debian/change_config.pl @@@ -1,0 -1,0 +1,32 @@@ ++#! /usr/bin/perl ++ ++use strict; ++ ++our @config_lines; ++our %defaults = ( ++ "proxy.config.alarm_email" => "trafficserver", ++ "proxy.config.admin.user_id" => "trafficserver", ++ "proxy.config.log.max_space_mb_for_logs" => 2000, ++); ++ ++die("Usage: $0 ") unless $#ARGV == 0; ++ ++open(F, "+<", $ARGV[0]) || die("Cannot open $ARGV[0]: $!"); ++while(my $line = ) ++{ ++ if ($line =~ /^CONFIG/) ++ { ++ foreach my $pattern (keys %defaults) ++ { ++ $line =~ s/(?<=CONFIG $pattern)(\s+[A-Z]+)\s+.+$/$1 $defaults{$pattern}/; ++ } ++ } ++ push(@config_lines, $line); ++} ++seek(F, 0, 0); ++foreach my $line (@config_lines) ++{ ++ print F $line; ++} ++print F "CONFIG proxy.config.admin.user_id STRING trafficserver\n"; ++close(F); diff --cc debian/changelog index 00000000,00000000..aabcde1b new file mode 100644 --- /dev/null +++ b/debian/changelog @@@ -1,0 -1,0 +1,729 @@@ ++trafficserver (8.0.1-1) unstable; urgency=medium ++ ++ * New upstream version 8.0.1 ++ * Patches refresh for 8.0.1 ++ * Removed patches which have been merged upstream: ++ - 0002-add-mips64-support ++ - 0004-fix_arm_build ++ - 0005-fix_build_kfreebsd ++ - 0007-fix-uri_signing ++ - 0010-fix-32bits-build ++ - 0012-fix-traffic_via ++ * Fix lintian warning public-upstream-key-not-minimal ++ ++ -- Jean Baptiste Favre Mon, 03 Dec 2018 14:15:07 +0100 ++ ++trafficserver (8.0.0-4) unstable; urgency=medium ++ ++ [ Emanuele Rocca ] ++ * Update descriptions in d/control ++ ++ [ Jean Baptiste Favre ] ++ * Update patch to fix kfreebsd FTBFS ++ ++ -- Jean Baptiste Favre Mon, 05 Nov 2018 10:13:03 +0100 ++ ++trafficserver (8.0.0-3) unstable; urgency=medium ++ ++ * Remove webptransform experimental plugin ++ * Update patch to fix kfreebsd FTBFS ++ * Update d/copyright to fix lintian error ++ * Update d/rules to fix FTBFS for mips & mipsel archs ++ * Update d/rules to spare call to dpkg-parsechangelog ++ * Update d/copyright after 8.0.0 file moves ++ ++ -- Jean Baptiste Favre Fri, 02 Nov 2018 14:24:38 +0100 ++ ++trafficserver (8.0.0-2) unstable; urgency=medium ++ ++ * Add a patch to fix FTBFS with MySQL 8 (LP: #1795362) ++ * Update 0009-fix-mysql-8-build.patch which has been merged upstream ++ * Bump Standards-Version in d/control ++ * Add patch to fix 32bits arm & mips arch build ++ * Backport upstream patch to fix segmentation fault ++ * Backport upstream patch to fix traffic_via ++ ++ -- Jean Baptiste Favre Wed, 17 Oct 2018 20:40:51 +0200 ++ ++trafficserver (8.0.0-1) unstable; urgency=medium ++ ++ [ Aron Xu ] ++ * Remove .vscode directory ++ * systemd: After=network-online.target ++ ++ [ Jean Baptiste Favre ] ++ * Update d/changelog for 8.0.0 ++ * Update init and service file after traffic_cop removal ++ * Update d/README.Debian to reflect configuration changes ++ * Add d/gitlab-ci.yml to use Salsa CI ++ * Update d/control ++ * Add build-deps against graphviz, python3-sphinxcontrib.plantuml ++ and plantuml to build documentation & manpages ++ * Add build-deps against libcrypto++-dev, libjansson-dev, libcjose-dev to ++ build uri_signing plugin ++ * Update Breaks to manage plugins transition from experimental to stable ++ * Update postinst maintainer script, add postrm & preinst scripts to remove ++ obsolete config files ++ - /etc/trafficserver/vaddrs.config, ++ - /etc/trafficserver/metrics.config, ++ - /etc/trafficserver/logging.config, ++ - /etc/trafficserver/log_hosts.config, ++ - /etc/trafficserver/congestion.config, ++ - /etc/trafficserver/cluster.config, ++ - /etc/trafficserver/body_factory/default/congestion#retryAfter ++ * Update d/trafficserver and d/trafficserver-experimental-plugins install ++ files ++ - Stable plugin gzip renamed to compress ++ - Promoted stable plugins: ++ - cachekey, ++ - cache_promote, ++ - escalate, ++ - test_cppapi, ++ - tslua ++ - Added new experimental plugins: ++ - access_control, ++ - fq_pacing, ++ - prefetch, ++ - server_push_preload, ++ - system_stats, ++ - tls_bridge, ++ - traffic_dump, ++ - uri_signing ++ - Remove deprecated plugins collapsed_connection, epic ++ * Remove obsolete config option --enable-system-luajit from d/rules ++ * Add --with-build-version option to d/rule to have a deterministic ++ build-version ++ * Update d/copyright to remove .vscode during import at repack stage ++ * Update patches for 8.0.0 ++ - Refresh patches for 8.0.0 ++ - Removed patches: ++ - 0004-force-use-luajit-system*, updated upstream ++ - 0005-fix_documentation_build_option, updated upstream ++ - 0008-fix_build_lua, updated upstream ++ - 0009-fix-doc-python3, update upstream ++ - 0010-Remove-custom-memory-barriers-from-header_rewrite-an patches, ++ updated upstream ++ - Renamed remaining patches: ++ - 0006-fix_arm_build -> 0004-fix_arm_build, ++ - 0007-fix_build_kfreebsd -> 0005-fix_build_kfreebsd, ++ - 0009-fix-doc-git -> 0006-fix-doc-build ++ - Add patch to fix uri_signing experimental plugin build ++ - Add patch to fix check-unused-dependencies ++ * New upstream version 8.0.0 ++ ++ -- Jean Baptiste Favre Sat, 06 Oct 2018 12:43:13 +0200 ++ ++trafficserver (7.1.4+ds-1) unstable; urgency=medium ++ ++ [ Aron Xu ] ++ * Use libunwind for mips* ++ ++ [ Jean Baptiste Favre ] ++ * Update Debian standards version ++ * New upstream version 7.1.4+ds ++ * Patches refresh for 7.1.4 ++ * Add lintian override for trafficserver package ++ ++ -- Jean Baptiste Favre Mon, 06 Aug 2018 10:56:14 +0200 ++ ++trafficserver (7.1.3+ds-4) unstable; urgency=medium ++ ++ * Fix FTBS on armel (Closes: #902112) ++ ++ -- Jean Baptiste Favre Fri, 22 Jun 2018 17:13:53 +0200 ++ ++trafficserver (7.1.3+ds-3) unstable; urgency=medium ++ ++ * Add systemd tmpfile support (LP: #1756207) ++ * Update Build-Depends (Closes: #887503) ++ ++ -- Jean Baptiste Favre Wed, 13 Jun 2018 22:39:58 +0200 ++ ++trafficserver (7.1.3+ds-2) unstable; urgency=medium ++ ++ * Update build-deps to libncurses6 ++ * Update patch to fix arm* builds ++ ++ -- Jean Baptiste Favre Fri, 18 May 2018 17:25:22 +0200 ++ ++trafficserver (7.1.3+ds-1) unstable; urgency=medium ++ ++ * Update Vcs URLs. Replace alioth with salsa ++ * Add patch to make documentation build with python3. Fix lintian warning ++ * New upstream version 7.1.3+ds ++ * Update d/gbp.conf ++ * Patches refresh for 7.1.3 ++ * Add a patch to fix doc build outside of git repository ++ * Update standards version ++ * Remove chown command from postinst script. Fix lintian warning ++ ++ -- Jean Baptiste Favre Tue, 24 Apr 2018 10:17:21 +0200 ++ ++trafficserver (7.1.2+ds-3) unstable; urgency=medium ++ ++ * Add upstream changelog file to trafficserver package ++ * Add systemd units file ++ * Fix documentation. Update links ++ * Update d/rules to remove examples binary files from package ++ ++ -- Jean Baptiste Favre Fri, 16 Feb 2018 15:05:07 +0100 ++ ++trafficserver (7.1.2+ds-2) unstable; urgency=medium ++ ++ * Drop patch for lua source code removal (Handled with repack) ++ * Drop patch for documentation build (merged upstream) ++ * Add a patch to make man pages being built ++ * Update d/compat ++ * Fix lintian warnings ++ * Update d/rule to fix lintian warning. ++ * Disable auto_test (again) ++ * Install CHANGELOG file in /usr/share/doc ++ * Enable documentation built (if not, man pages aren't either) ++ ++ -- Jean Baptiste Favre Thu, 25 Jan 2018 23:38:51 +0100 ++ ++trafficserver (7.1.2+ds-1) unstable; urgency=medium ++ ++ * New upstream version 7.1.2+ds ++ * Update d/patches for 7.1.2+ds ++ * Update build dependencies ++ * Update compilation flags ++ * Enable experimental plugin cache_key_genid ++ ++ -- Jean Baptiste Favre Tue, 16 Jan 2018 18:18:40 +0100 ++ ++trafficserver (7.1.1-1) unstable; urgency=medium ++ ++ * Fix trafficserver-dev dependencies. (Closes: #877457) ++ * Fix d/gbp.conf. Remove duplicate filter option ++ * Update standards version in d/control ++ * Fix debian-rules-sets-dpkg-architecture-variable lintian warning ++ * Fix debian-watch-uses-insecure-uri lintian info ++ * Update d/patches ++ * Update d/rules to reflect healthcheck being managed as a stable plugin ++ * Add a patch to fix kfreebsd build ++ * Add a patch to fix arm build ++ * New upstream version 7.1.0 ++ * Remove broken 0008-fix_build_armel patch ++ * Patches refresh for 7.1.0 ++ * Add new patch to fix build with luajit 2.1 (Closes: #873328) ++ * Update experimental modules list ++ * Update Debian Standards-Version & d/compat ++ * Update Vcs-* fields to use secure communication ++ * Lintian fix for d/NEWS ++ * Add new build option to use system luajit ++ * Update build dependencies (Closes: #859750) ++ * Fix lintian warning in d/copyright ++ * New upstream version 7.1.1 ++ * Patches refresh for 7.1.1 ++ ++ -- Jean Baptiste Favre Tue, 02 Jan 2018 13:30:43 +0100 ++ ++trafficserver (7.0.0-5) unstable; urgency=medium ++ ++ * Add patch to fix arm* build. (Closes: #857389) ++ ++ -- Jean Baptiste Favre Wed, 22 Mar 2017 09:31:14 +0100 ++ ++trafficserver (7.0.0-4) unstable; urgency=medium ++ ++ * Add Conflicts for file overwrites (Closes: #850775) ++ ++ -- Aron Xu Wed, 11 Jan 2017 14:49:15 +0800 ++ ++trafficserver (7.0.0-3) unstable; urgency=medium ++ ++ * Fix documentation build for docutils >= 0.13 (Closes: #848800) ++ * Update LuaJIT patches serie to fallback using Lua if LuaJIT not found ++ * Update luajit patch. ++ - Remove hardcoded value ++ - Add luajit dynamic detection ++ ++ -- Jean Baptiste Favre Wed, 04 Jan 2017 15:13:43 +0100 ++ ++trafficserver (7.0.0-2) unstable; urgency=medium ++ ++ * Add patches to use system luajit and not the internal one any more ++ * Update d/rules to remove luajit exception. ++ ++ -- Jean Baptiste Favre Fri, 25 Nov 2016 17:51:25 +0100 ++ ++trafficserver (7.0.0-1) unstable; urgency=medium ++ ++ [ Arno Töll ] ++ * Remove myself as maintainer. Thanks to Aron and Jean Baptiste for stepping ++ in on my place and keeping the package up to date. It makes the confident ++ the package is in good hands now. ++ ++ [ Jean Baptiste Favre ] ++ * New upstream release 7.0.0 ++ * Patches refresh for 7.0.0 ++ * Update plugins list ++ * Update build dependencies ++ * Add pkgconfig .pc file in trafficserver-dev package ++ * Enable experimental plugins webp_transform ++ * Enable traffic_top build (Closes: #836126) ++ * Remove Linux AIO support (Closes: #803661, #836124) ++ * Fix FTBFS for mips64el (Closes: #830856) ++ * Add patch to make the build reproductible (Closes: #833176) ++ ++ [ Aron Xu ] ++ * Set myself as Maintainer at the moment ++ * Build-Depends on default-libmysqlclient-dev ++ ++ -- Jean Baptiste Favre Wed, 16 Nov 2016 09:48:10 +0100 ++ ++trafficserver (6.2.0-1) unstable; urgency=medium ++ ++ * Add upstream gpg keys for uscan pgpsigurlmangle option ++ * Imported Upstream version 6.2.0 ++ * Patch refresh for 6.2.0 ++ * Update trafficserver manpages list ++ * Update trafficserver install list ++ * Update trafficserver-experimental-plugins install list ++ * Update build dependencies (Add libmariadbclient-dev in experimental) ++ * Bump standards version ++ ++ -- Jean Baptiste Favre Sat, 23 Jul 2016 19:15:58 +0200 ++ ++trafficserver (6.1.1-1) unstable; urgency=medium ++ ++ * Imported Upstream version 6.1.1 ++ * Update d/watch for gpg signature check ++ ++ -- Jean Baptiste Favre Sat, 06 Feb 2016 10:37:41 +0100 ++ ++trafficserver (6.1.0-1) unstable; urgency=medium ++ ++ * New upstream release ++ * Use -mcx16 on x86 platforms only (Closes: #805124) ++ ++ -- Aron Xu Tue, 02 Feb 2016 12:18:10 +0800 ++ ++trafficserver (6.0.0-3) unstable; urgency=medium ++ ++ * Update d/NEWS & d/README.Debian with 32-bit upstream support drop ++ ++ -- Jean Baptiste Favre Mon, 14 Dec 2015 10:48:20 +0100 ++ ++trafficserver (6.0.0-2) unstable; urgency=medium ++ ++ * Re-enable 32-bit builds ++ * Add some optional build dependencies ++ * Use -O3 by default ++ ++ -- Aron Xu Sat, 31 Oct 2015 03:05:20 +0800 ++ ++trafficserver (6.0.0-1) unstable; urgency=medium ++ ++ [ Aron Xu ] ++ * Avoid possible-missing-colon-in-closes ++ ++ [ Jean Baptiste Favre ] ++ * Imported Upstream version 6.0.0 ++ * Update experimental plugins list ++ - Remove channel_stats ++ - Add cache promote cache_promote.so ++ - Add cache ranage request cache_range_requests.so ++ - Add mp4 streaming media mp4.so ++ - Add Stream editor stream_editor.so ++ ++ -- Aron Xu Sat, 10 Oct 2015 11:19:19 +0200 ++ ++trafficserver (5.3.1-1) unstable; urgency=medium ++ ++ [ Arno Töll ] ++ * Add proxy.config.admin.user_id setting ++ ++ [ Aron Xu ] ++ * Add myself back to Uploaders ++ * Use dh compat 9 ++ ++ [ Jean Baptiste Favre ] ++ * Imported Upstream version 5.3.1 ++ * Removed patch for TS-3632 (merged upstream) ++ * Upstream changes allow ftbfs with GCC-5 (Closes: #778148) ++ ++ -- Jean Baptiste Favre Sat, 04 Jul 2015 23:20:49 +0200 ++ ++trafficserver (5.3.0-2) unstable; urgency=medium ++ ++ * Avoid installing tslua.so on archs built without LuaJIT ++ (Closes: #770353) ++ ++ -- Aron Xu Thu, 11 Jun 2015 15:28:39 +0800 ++ ++trafficserver (5.3.0-1) unstable; urgency=medium ++ ++ * Imported Upstream version 5.3.0 ++ - CVE-2014-10022: remote DoS ++ * Remove fix_TS3316_i386_build patch ++ * Fix traffic_wccp build, missing OpenSSL symbol ++ * Add experimental plugin generator ++ * Format patch for TS-3632 ++ * Update Uploader field in d/control ++ ++ -- Jean Baptiste Favre Wed, 03 Jun 2015 20:06:13 +0200 ++ ++trafficserver (5.2.0-2) unstable; urgency=medium ++ ++ * Disable LuaJIT for arm64 ++ ++ -- Aron Xu Sat, 28 Feb 2015 23:51:00 +0800 ++ ++trafficserver (5.2.0-1) unstable; urgency=medium ++ ++ [ Jean Baptiste Favre ] ++ * New upstream release. ++ * Add support for following experimental modules: ++ - epic ++ - header_normalize ++ - mysql_remap ++ - ssl_cert_loader ++ - sslheaders ++ * Remove missing file related to removed traffic_shell ++ * Backport patch for TS-3316 to solve i386 build issue ++ * Fix misconfigured call to dh_makeshlibs (used system dir instead ++ of temporary build one) ++ ++ [ Aron Xu ] ++ * Enable all hardening features. ++ * Update copyright file. ++ ++ -- Aron Xu Thu, 12 Feb 2015 22:22:44 +0100 ++ ++trafficserver (5.1.1-1) unstable; urgency=medium ++ ++ * New upstream release. This release includes fixes for these security ++ related vulnerabilities: ++ - CVE-2014-3566: Do not enable SSL3 by default ++ - CVE-2014-3624: Ensure remap requests are properly tunneled using CONNECT ++ requests to avoid an open relay ++ * Add support for ppc64el, patch merged upstream (Closes: #754134, #754808) ++ * Fix "ftbfs on kfreebsd" by conditionally building healthchecks.so on Linux ++ only. Patch supplied by Steven Chamberlain, thanks (Closes: #767287) ++ ++ -- Arno Töll Sun, 02 Nov 2014 12:40:44 -1100 ++ ++trafficserver (5.1.0-1) unstable; urgency=medium ++ ++ * New upstream release ++ * Bump standards version to 3.9.6 (no changes needed) ++ ++ [Jean Baptiste Favre] ++ * Add a debug package with debug symbols for those who need it. ++ * Split out experimental trafficserver plugins into a separate package so ++ that users are aware of their experimental character before using them. ++ * Add a libhwloc b-d so that ATS has a better idea about the underlying ++ hardware it runs at to improve the runtime performance ++ ++ -- Arno Töll Wed, 08 Oct 2014 23:50:49 -1100 ++ ++trafficserver (5.0.1-1) unstable; urgency=medium ++ ++ * New upstream release including a fix for CVE-2014-3525 that allowed ++ attackers by special crafted packets to obtain privileges for services bound ++ to localhost ++ ++ -- Arno Töll Wed, 23 Jul 2014 04:43:00 -1100 ++ ++trafficserver (5.0.0-1) unstable; urgency=medium ++ ++ * Acknowledge previous NMUs, thanks to Anibal Monsalve Salazar for ++ coordination. ++ * New upstream version. Patch changes: ++ + drop 0001-TS-1821.patch: released upstream in 5.0.0 ++ + drop 0001-TS-2454-Fix-undefined-reference-to-__sync_fetch_and_.patch: ++ released upstream in 4.2 ++ + drop add-mips-support.patch: released upstream in 5.0.0 ++ + drop pthread_setname_np.patch: This was a Debian specific issue which is ++ being worked around in eglibc's commit r5460. ++ * Add "support for mips64": merged upstream (Closes: #750807) ++ * Build with dh-autoreconf to avoid build time issues with Automake 1.13 ++ which is not in Debian yet. ++ ++ -- Arno Töll Sun, 06 Jul 2014 00:20:59 -1100 ++ ++trafficserver (4.1.2-1.2) unstable; urgency=medium ++ ++ * Non-maintainer upload. ++ * Add missing prototype for pthread_setname_np() ++ Add pthread_setname_np.patch ++ Patch by Petr Salinger ++ Closes: #743584 ++ ++ -- Anibal Monsalve Salazar Fri, 04 Apr 2014 08:59:48 +0100 ++ ++trafficserver (4.1.2-1.1) unstable; urgency=medium ++ ++ * Non-maintainer upload. ++ * Fix undefined reference to `__sync_fetch_and_sub_8' on ARM 32bit ++ Add 0001-TS-2454-Fix-undefined-reference-to-__sync_fetch_and_.patch ++ from https://issues.apache.org/jira/browse/TS-2454 ++ Patch by Yunkai Zhang ++ * Add support for MIPS ++ Add add-mips-support.patch ++ Submitted: https://issues.apache.org/jira/browse/TS-2687 ++ Merged: https://git-wip-us.apache.org/repos/asf?p=trafficserver.git;h=2f81790 ++ Patch by Dejan Latinovic ++ Closes: 743395 ++ * Build-depend on libboost-dev ++ Patch by Dejan Latinovic ++ Closes: #737510 ++ ++ -- Anibal Monsalve Salazar Thu, 03 Apr 2014 04:18:23 +0100 ++ ++trafficserver (4.1.2-1) unstable; urgency=medium ++ ++ * Merge the experimental branch of trafficserver to unstable ++ * New upstram release (Closes: #711530, #733377) ++ + Refresh 0001-TS-1821.patch until it is fixed upstream ++ + Don't run autoreconf anymore, we do not need it anymore ++ + build depend on libaio-dev to support AIO on Linux systems ++ * Push standards version ++ ++ -- Arno Töll Wed, 29 Jan 2014 03:01:12 -1100 ++ ++trafficserver (3.3.2-1) experimental; urgency=low ++ ++ [ Arno Töll ] ++ * Drop --with-arg-max from configure ++ * Update changelog in view of the new upstream version ++ ++ [ Aron Xu ] ++ * Imported Upstream version 3.3.2 ++ * Drop patch for enabling experimental plugins ++ * Add liblua5.1-dev and liboost1.53-dev to B-D ++ * Try on all archs for experimental builds ++ * Permit parallel building ++ * Fix typo in dep5 copyright file ++ * Do not install staticly linked library ++ * Enable Linux native AIO support for linux-any ++ * Enable reclaimable freelist ++ ++ -- Aron Xu Thu, 09 May 2013 01:00:04 +0800 ++ ++trafficserver (3.3.0+git20121208-0exp1) experimental; urgency=low ++ ++ * Upstream git snapshot. ++ * Enable most of experimental plugins, install related libraries. ++ * Run dh_autoreconf. ++ * Make dh_auto_test errors non-fatal. ++ ++ -- Aron Xu Thu, 06 Dec 2012 23:32:25 +0800 ++ ++trafficserver (3.3.0-1) experimental; urgency=low ++ ++ * Upload upstream development release to experimental. ++ ++ -- Aron Xu Thu, 29 Nov 2012 22:13:55 +0800 ++ ++trafficserver (3.2.5-1) unstable; urgency=low ++ ++ * New upstream release ++ + Fix FTBFS on ARM (Closes: #691179) ++ + Fix FTBS with gcc 4.8 (Closes: #701427) ++ * Promote trafficserver to depend for trafficserver-dev to fix a broken ++ library symlink. The library is not required for all users, but those who ++ need it don't need to install it manually anymore (Closes: #715134) ++ ++ -- Arno Töll Sun, 21 Jul 2013 11:55:38 +0200 ++ ++trafficserver (3.2.4-1) unstable; urgency=low ++ ++ * New upstream release ++ + Delete upstream's .gitignore file in our source tree ++ * Switch packaging repository to Git. ++ + Add gbp.conf file for those using git-buildpackage ++ * Fix "Upgrade fails if purging of cache fails" by not dying in a fire when ++ the postinst fails to purge the cache (Closes: #687698) ++ * Drop --with-arg-max from ./configure, it's not needed anymore. ++ ++ -- Arno Töll Tue, 29 Jan 2013 23:54:44 +0100 ++ ++trafficserver (3.2.0-1) unstable; urgency=low ++ ++ * New upstream release ++ + If you are using SSL or HTTP filtering, please update your configuration. ++ proxy.config.http.quick_filter.mask and ++ proxy.config.ssl.server.cert.filename is not recognized anymore. Please ++ use ip_allow.config and ssl_multicert.config respectively instead. ++ There is no automated migration for this in Debian, as this affects your ++ site-specific configuration files. ++ + See https://cwiki.apache.org/confluence/display/TS/Upgrading+to+3.2 for ++ full upgrade instructions. ++ * Upstream decided to ship more plug-ins with the trafficserver core ++ distribution. These are all bundled into the main package now. Therefore, ++ the trafficserver-plugin-conf-remap package is not provided anymore. ++ * Update the default configuration file to ship with more moderate values ++ for the log configuration. ++ * Now do start ATS by default for fresh installations. The default ++ out-of-the box configuration is much more secure than past defaults. ++ * Purge the host and data cache on upgrades ++ * Let's welcome Aron Xu to the Uploaders of Trafficserver. Hi Aron! :) ++ ++ -- Arno Töll Fri, 14 Sep 2012 22:56:29 +0200 ++ ++trafficserver (3.0.5-1) unstable; urgency=low ++ ++ * New upstream release. ++ * No kudos for the previous hostile NMU, but include the changelog to denote ++ this upload does not introduce a regression. ++ * Update my maintainer address ++ * Make the init script look much better when using fancy outputs. ++ * Fix "status" output of the init script ++ * Remove "DM-Upload-Allowed". I don't need that flag anymore. ++ ++ ++ -- Arno Töll Sat, 09 Jun 2012 18:48:23 +0200 ++ ++trafficserver (3.0.4-1.1) unstable; urgency=low ++ ++ * Non maintainer upload ++ * Fix build failure with GCC 4.7. Closes: #667396. ++ ++ -- Matthias Klose Wed, 30 May 2012 04:40:28 +0000 ++ ++trafficserver (3.0.4-1) unstable; urgency=high ++ ++ * New upstream release ++ + Fix CVE-2012-0256: A request with a very large Host header caused ATS to ++ crash. ++ * Setting urgency to high because of security updates ++ * Push standards to 3.9.3 - no further changes ++ * Stilistic adaptions in debian/copyright, but not content changes ++ * Remove cluster interface warning from README.Configuration. ATS now binds on ++ lo by default ++ ++ -- Arno Töll Wed, 21 Mar 2012 12:34:35 +0100 ++ ++trafficserver (3.0.2-1) unstable; urgency=low ++ ++ * New upstream release ++ + Includes former Debian specific patch which makes sure the upstream ++ configure script does not override any -O flags passed by the user ++ anymore. ++ * Adapt to dpkg 1.16.1 API changes regarding build flags. This enables ++ hardening build flags. This means, trafficserver is now being built with ++ -fstack-protector and other security related build flags. ++ * Add dpkg-dev (>= 1.16.1~) to build-depends to make sure our buildflags are ++ properly supported. That's guaranteed for Testing, but might be helpful to ++ know for backporters. ++ * Fix several issues in the DEP-5 syntax. Unfortunately there is no way to ++ express that a file is subject to different license agreements so far. ++ * Do not install the upstream changelog twice anymore ++ * Finally run regression checks again, now as build failures are sorted out. ++ ++ -- Arno Töll Sun, 11 Dec 2011 00:45:45 +0100 ++ ++trafficserver (3.0.1-2) unstable; urgency=low ++ ++ * Fix "please add armhf to the arch list" - add armhf to the list of supported ++ architectures. Thanks Konstantinos Margaritis for the hint (Closes: #636338) ++ * Remove IA64 from the list of supported architectures. The upgrade to the gcc ++ 4.6 toolchain disclosed portability issues with it, which caused the resul- ++ ting binary package to produce no-op code in some functions. ++ ++ -- Arno Töll Tue, 02 Aug 2011 22:58:37 +0200 ++ ++trafficserver (3.0.1-1) unstable; urgency=low ++ ++ * New upstream release. Fixes several important issues which caused ++ `traffic_cop' and `traffic_server' to crash. ++ * Fix "FTBFS with ld --as-needed" re-order libraries upon linkage, patch ++ committed upstream. Thanks Ilya Barygin (Closes: #632546) ++ * Fix "trafficserver: Getting rid of unneeded *.la / emptying ++ dependency_libs", remove *.la files from the installation target completely ++ (Closes: #633192) ++ * Set "DM-Upload-Allowed: yes" in agreement with Asheesh Laroia ++ ++ ++ -- Arno Töll Mon, 01 Aug 2011 19:29:58 +0200 ++ ++trafficserver (3.0.0-1) unstable; urgency=low ++ ++ * New upstream release. Major changes (since 2.1.9): ++ + `traffic_server' won't crash anymore when using non-existent plugin in ++ remap rule ++ + Don't cache HTTP 401, 303 and 407 error responses anymore, when negative ++ caching is enabled. ++ * Re-enable kfreebsd support, it was accidentally not available in ++ 2.1.9-unstable-1 because of non installable dependencies, as libcap-dev is ++ installable (and required) on Linux only ++ * debian/rules: ++ + Simplify dh_auto_configure flags (upstream incorporated our build layout) ++ + Enable WCCP (Web Cache Communication Protocol; Linux only) ++ * debian/control: ++ + Add flex and bison to build dependencies, both are required for WCCP ++ (Linux only) ++ ++ -- Arno Töll Wed, 15 Jun 2011 15:56:29 +0200 ++ ++trafficserver (2.1.9-unstable-1) unstable; urgency=low ++ ++ * New upstream release. Major features (since 2.1.8): ++ + Bring back support for $DESTDIR and "make check" which makes Debian ++ patches obsolete ++ + Allow larger working sets than 512G ++ + Disable cluster autodiscovery when cluster mode is disabled ++ + Cleanup `records.config' ++ + Disable SSLv2 by default ++ * debian/control: Add build dependency to libcap-dev, because when running ++ traffic_server standalone, it is unable to bind restricted ports otherwise ++ (Upstream: TS-804) ++ * debian/rules: ++ + Remove override for dh_clean, but put options to debian/source/options ++ instead ++ + Remove DH_OPTIONS (unused anyway) ++ * Source package: Minor change to improving package quality and usability ++ (i.e. grammar, verbosity of comments) ++ * Make the init script more robust ++ * Base the origin of the package source on the untouched upstream tarball, ++ instead of the versioned SVN branch. ++ * Bring back IA64 support, this time actually working (upstream merged my ++ patch TS-783) ++ * Remove patch `build-quirks.patch'. Changes have been committed upstream ++ by now. ++ ++ -- Arno Töll Tue, 31 May 2011 21:56:12 +0200 ++ ++trafficserver (2.1.8-unstable-1) unstable; urgency=low ++ ++ * New upstream release. Major features (since 2.1.5): ++ + Many bug fixes (none reported in Debian's BTS) ++ + Set source address for origin Servers ++ + Major API changes for the SDK ++ + Provide traffic_logstats ++ + traffic_shell does not hang anymore on any command ++ * Fix "FTBFS on architectures not supported upstream": (Closes: #622800) ++ + Don't execute regression checks for now (fixes x86) ++ + Upstream merges a Debian patch originally for 2.1.7 which enables ++ kFreeBSD support (originally provided by myself) ++ + Restrict Architectures (drop S390, IA64, MIPS[EL], PPC, SPARC) ++ * Remove ts-ui-disable-conf.patch (applied upstream) ++ * Update `build-quirks.patch' to make TS handle $DESTDIR correctly ++ (upstream: TS-759) ++ * Remove .deps from SDK binary package examples (they were incidentally ++ included before). ++ * Fix permissions for /var/cache/trafficserver in postinst ++ * Bump standards to 3.9.2, depend on debhelper 8.0, adapt VCS links ++ * Simplify debian/rules ++ ++ -- Arno Töll Thu, 05 May 2011 21:49:52 +0200 ++ ++trafficserver (2.1.5-unstable-1) unstable; urgency=low ++ ++ * Initial release (Closes: #609285) ++ * Added some configuration and informational hints ++ * New upstream release. Major features: ++ + Better AMD64 support ++ + Override configuration per transaction ++ + IPv6 ++ + Support ARM architectures ++ + SDK-API changes ++ * Differences to upstream version: ++ + Ship some documentation. Well, really a few hints ++ + Split source into three packages (core, plug-in, SDK) ++ + Ship our own init script ++ ++ -- Arno Toell Tue, 13 Jan 2011 11:49:18 +0100 diff --cc debian/compat index 00000000,00000000..b4de3947 new file mode 100644 --- /dev/null +++ b/debian/compat @@@ -1,0 -1,0 +1,1 @@@ ++11 diff --cc debian/control index 00000000,00000000..a093e169 new file mode 100644 --- /dev/null +++ b/debian/control @@@ -1,0 -1,0 +1,62 @@@ ++Source: trafficserver ++Section: web ++Priority: optional ++Maintainer: Aron Xu ++Uploaders: Jean Baptiste Favre ++Build-Depends: debhelper (>= 11), libssl-dev, tcl-dev, libexpat1-dev, ++ libpcre3-dev, libtool, libcap-dev [linux-any], graphviz, ++ bison [linux-any], flex [linux-any], dpkg-dev (>= 1.16.1~), pkg-config, libgeoip-dev, ++ libluajit-5.1-dev, libboost-dev, libhwloc-dev, default-libmysqlclient-dev, ++ python3-sphinx [!kfreebsd-any], python-sphinx [kfreebsd-any], plantuml, ++ python3-sphinxcontrib.plantuml [!kfreebsd-any], python-sphinxcontrib.plantuml [kfreebsd-any], ++ libxml2-dev, libncurses-dev, libcurl4-openssl-dev, ++ libkyotocabinet-dev, libmemcached-dev, libbrotli-dev, ++ libcrypto++-dev, libjansson-dev, libcjose-dev, ++ libunwind-dev [i386 amd64 ppc64el armhf arm64 mipsel mips64el mips] ++Standards-Version: 4.2.1 ++Homepage: http://trafficserver.apache.org/ ++Vcs-Git: https://salsa.debian.org/debian/trafficserver.git ++Vcs-Browser: https://salsa.debian.org/debian/trafficserver ++ ++Package: trafficserver ++Architecture: any ++Depends: ${shlibs:Depends}, ${misc:Depends}, lsb-base (>= 3.2-14), adduser, ++ ${perl:Depends} ++Provides: trafficserver-plugin-conf-remap ++Replaces: trafficserver-plugin-conf-remap (<< 3.2~), ++ trafficserver-experimental-plugins (<< 8.0.0~) ++Suggests: trafficserver-experimental-plugins (= ${binary:Version}) ++Breaks: trafficserver-plugin-conf-remap (<< 3.2~), ++ trafficserver-experimental-plugins (<< 8.0.0~) ++Description: fast, scalable and extensible HTTP/1.1 and HTTP/2.0 compliant caching proxy server ++ This package provides the Apache Traffic Server, a fast, scalable reverse ++ proxy server which may operate as forward proxy as well. Apache Traffic Server ++ supports: ++ . ++ * Caching: improve response time while reducing server load and bandwidth ++ needs by caching and reusing frequently-requested web pages, images, and ++ web service calls. ++ * Proxying: add keep-alive, filter or anonymize content requests, or add ++ load balancing by adding a proxy layer. ++ * Scaling: handle 10s of thousands of requests per second on modern SMP ++ hardware. ++ * Extensions: use the API to do anything from modifying HTTP headers to ++ handling ESI requests to writing your own cache algorithm. ++ ++Package: trafficserver-experimental-plugins ++Architecture: any ++Depends: ${shlibs:Depends}, ${misc:Depends} ++Pre-Depends: trafficserver (= ${binary:Version}) ++Breaks: trafficserver (<< 8.0.0~) ++Description: experimental plugins for Apache Traffic Server ++ This package provides the Apache Traffic Server plugins marked as ++ experimental. ++ ++Package: trafficserver-dev ++Architecture: any ++Depends: ${misc:Depends}, trafficserver (= ${binary:Version}) ++Description: Apache Traffic Server Software Developers Kit (SDK) ++ This package provides the Apache Traffic Server Software Developers Kit, which ++ consists of: a collection of development header and bindings for the C ++ programming language, the tsxs linking helper and examples to write your own ++ plug-ins for the Apache Traffic Server. diff --cc debian/copyright index 00000000,00000000..4409e182 new file mode 100644 --- /dev/null +++ b/debian/copyright @@@ -1,0 -1,0 +1,127 @@@ ++Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ ++Upstream-Name: Traffic Server ++Upstream-Contact: dev@trafficserver.apache.org ++Source: http://trafficserver.apache.org/ ++Comment: ++ The upstream repository provides libraries which are also available ++ in Debian. Because we'll use libraries packaged in Debian, we don't ++ need embedded ones. ++ ++Files: * ++Copyright: 2010 - 2011 The Apache Software Foundation ++ 2009 Yahoo! Inc. ++License: Apache-2.0 ++ ++Files: debian/* ++Copyright: 2011 Arno Töll ++License: Apache-2.0 ++Comment: Packaging for Debian was done by Arno Toell, and I hereby grant ++ distribution of it under the same terms as Apache Traffic Server itself. ++ ++License: Apache-2.0 ++ Licensed under the Apache License, Version 2.0 (the "License"); ++ you may not use this file except in compliance with the License. ++ You may obtain a copy of the License at ++ . ++ http://www.apache.org/licenses/LICENSE-2.0 ++ . ++ Unless required by applicable law or agreed to in writing, software ++ distributed under the License is distributed on an "AS IS" BASIS, ++ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++ See the License for the specific language governing permissions and ++ limitations under the License. ++ . ++ On Debian systems, the full text of the e Apache License, Version 2.0 ++ can be found in the file `/usr/share/common-licenses/Apache-2.0'. ++ ++Files: include/tscore/ink_rand.* ++Copyright: 1997 - 2002, Makoto Matsumoto and Takuji Nishimura ++License: BSD-3-clause ++ ++Files: include/tscore/ink_resolver.h src/tscore/ink_res_init.cc src/tscore/ink_res_mkquery.cc ++Copyright: 1983, 1987, 1989 The Regents of the University of California ++License: BSD-3-clause ++ ++License: BSD-3-clause ++ For the University of California part: ++ . ++ Redistribution and use in source and binary forms, with or without ++ modification, are permitted provided that the following conditions ++ are met: ++ 1. Redistributions of source code must retain the above copyright ++ notice, this list of conditions and the following disclaimer. ++ 2. Redistributions in binary form must reproduce the above copyright ++ notice, this list of conditions and the following disclaimer in the ++ documentation and/or other materials provided with the distribution. ++ 3. Neither the name of the University nor the names of its contributors ++ may be used to endorse or promote products derived from this software ++ without specific prior written permission. ++ . ++ THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ++ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE ++ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ++ ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE ++ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL ++ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ++ OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ++ HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT ++ LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY ++ OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ++ SUCH DAMAGE. ++ . ++ For the Internet Systems Consortium, Inc. part: ++ See Apache-2.0 ++ . ++ For the Digital Equipment Corporation part: ++ Permission to use, copy, modify, and distribute this software for any ++ purpose with or without fee is hereby granted, provided that the above ++ copyright notice and this permission notice appear in all copies, and that ++ the name of Digital Equipment Corporation not be used in advertising or ++ publicity pertaining to distribution of the document or software without ++ specific, written prior permission. ++ . ++ THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL ++ WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES ++ OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT ++ CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL ++ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR ++ PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ++ ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS ++ SOFTWARE. ++ ++Files: src/tscore/ink_string.cc ++Comment: For the strlcat, strlcpy in inktomi++/ink_string.cc ++Copyright: 1998 Todd C. Miller ++License: ISC ++ Permission to use, copy, modify, and distribute this software for any ++ purpose with or without fee is hereby granted, provided that the above ++ copyright notice and this permission notice appear in all copies. ++ . ++ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES ++ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF ++ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ++ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES ++ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ++ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF ++ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ++ ++Files: include/tscore/fastlz.h src/tscore/fastlz.c ++Copyright: 2005-2007 Ariya Hidayat (ariya@kde.org) ++License: Expat ++ Permission is hereby granted, free of charge, to any person obtaining a copy ++ of this software and associated documentation files (the "Software"), to deal ++ in the Software without restriction, including without limitation the rights ++ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ++ copies of the Software, and to permit persons to whom the Software is ++ furnished to do so, subject to the following conditions: ++ . ++ The above copyright notice and this permission notice shall be included in ++ all copies or substantial portions of the Software. ++ . ++ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ++ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ++ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ++ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ++ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ++ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ++ THE SOFTWARE. diff --cc debian/docs index 00000000,00000000..356cb60e new file mode 100644 --- /dev/null +++ b/debian/docs @@@ -1,0 -1,0 +1,9 @@@ ++LAYOUT ++NOTICE ++STATUS ++REVIEWERS ++README ++README-EC2 ++debian/README.Debian ++debian/CONFIGURATION.Debian ++debian/README.conf-remap.Debian diff --cc debian/gbp.conf index 00000000,00000000..b0d19e7a new file mode 100644 --- /dev/null +++ b/debian/gbp.conf @@@ -1,0 -1,0 +1,8 @@@ ++[DEFAULT] ++pristine-tar = True ++builder=dpkg-buildpackage -i\.git -I.git ++#cleaner=true ++ ++[import-orig] ++filter = [ '.gitignore', '.git', '.vscode' ] ++merge = True diff --cc debian/gitlab-ci.yml index 00000000,00000000..5aa8111e new file mode 100644 --- /dev/null +++ b/debian/gitlab-ci.yml @@@ -1,0 -1,0 +1,102 @@@ ++stages: ++ - build ++ - lintian ++ - piuparts ++# - reprotest ++ ++.build: &build ++ before_script: ++ - apt-get update ++ - apt-get -qy upgrade ++ - apt-get -qy install devscripts autoconf automake adduser fakeroot sudo ++ - mk-build-deps -t "apt-get -y -o Debug::pkgProblemResolver=yes --no-install-recommends" -i -r ++ - adduser --disabled-password --gecos "" builduser ++ - chown -R builduser:builduser . ++ - chown builduser:builduser .. ++ stage: build ++ script: ++ - sudo -u builduser dpkg-buildpackage -b -rfakeroot ++ ++.lintian: &lintian ++ before_script: ++ - apt-get update ++ - apt-get -y install lintian ++ stage: lintian ++ script: ++ - echo "performing general and experimental lintian checks" ++ - lintian --color always -EviIL +pedantic built/*.changes || true ++ - echo "performing ftp-master-rejects lintian checks" ++ - lintian --color always -viF built/*.changes ++ ++.piuparts: &piuparts ++ stage: piuparts ++ services: ++ - docker:dind ++ before_script: ++ - export CHROOT_PATH=/tmp/debian-sid ++ - CONTAINER_ID=$(docker run --rm -d debian:sid sleep infinity) ++ - docker exec ${CONTAINER_ID} bash -c "apt-get update && apt-get -qy dist-upgrade && apt-get -qy install eatmydata" ++ - mkdir -p ${CHROOT_PATH} ++ - docker export ${CONTAINER_ID} | tar -C ${CHROOT_PATH} -xf - ++ - mknod -m 666 ${CHROOT_PATH}/dev/urandom c 1 9 ++ artifacts: ++ name: "$CI_BUILD_NAME" ++ expire_in: 180 day ++ paths: ++ - ./piuparts.log ++ when: always ++ script: ++ - piuparts --hard-link -e ${CHROOT_PATH} -l piuparts.log built/*.changes ++ ++#.reprotest: &reprotest ++# stage: reprotest ++# before_script: ++# - apt-get update ++# - apt-get -qy dist-upgrade ++# - eatmydata apt-get build-dep -y . ++# artifacts: ++# name: "$CI_BUILD_NAME" ++# expire_in: 180 day ++# paths: ++# - ./reprotest.log ++# when: always ++# script: ++# - export DEB_BUILD_OPTIONS=nocheck ++# - eatmydata reprotest --min-cpus $(nproc --all) . -- null &> reprotest.log ++ ++### End of generic stage declaration ++ ++build:testing: ++ <<: *build ++ image: debian:testing ++ ++build:unstable: ++ <<: *build ++ image: debian:sid ++ artifacts: ++ name: "$CI_BUILD_NAME" ++ expire_in: 180 day ++ paths: ++ - built ++ when: always ++ after_script: ++ - mkdir built ++ - dcmd mv ../*.changes built/ ++ ++lintian:unstable: ++ <<: *lintian ++ dependencies: ++ - build:unstable ++ image: debian:sid ++ ++piuparts:unstable: ++ <<: *piuparts ++ dependencies: ++ - build:unstable ++ image: registry.salsa.debian.org/salsa-ci-team/images/piuparts ++ ++#reprotest:unstable: ++# <<: *reprotest ++# dependencies: ++# - build:unstable ++# image: registry.salsa.debian.org/salsa-ci-team/images/reprotest diff --cc debian/patches/0001-Use-mcx16-on-x86-platforms-only.patch index 00000000,00000000..4852f89c new file mode 100644 --- /dev/null +++ b/debian/patches/0001-Use-mcx16-on-x86-platforms-only.patch @@@ -1,0 -1,0 +1,26 @@@ ++From: Aron Xu ++Date: Tue, 2 Feb 2016 12:17:24 +0800 ++Subject: Use -mcx16 on x86 platforms only ++ ++--- ++ configure.ac | 3 +++ ++ 1 file changed, 3 insertions(+) ++ ++--- a/configure.ac +++++ b/configure.ac ++@@ -1495,12 +1495,15 @@ CFLAGS="${__saved_CFLAGS}" ++ AC_LANG_POP ++ AC_SUBST(has_128bit_cas) ++ +++case "$host_cpu" in +++ amd64|x86_64|i*86) ++ AS_IF([test "x$has_128bit_cas" = "x1"], [ ++ AS_IF([test "x$ax_cv_c_compiler_vendor" != "xintel"], [ ++ TS_ADDTO(AM_CFLAGS, [-mcx16]) ++ TS_ADDTO(AM_CXXFLAGS, [-mcx16]) ++ ]) ++ ]) +++esac ++ ++ # Check for POSIX capabilities library. ++ # If we don't find it, disable checking for header. diff --cc debian/patches/0003-reproductible-build.patch index 00000000,00000000..dc2cc8d9 new file mode 100644 --- /dev/null +++ b/debian/patches/0003-reproductible-build.patch @@@ -1,0 -1,0 +1,22 @@@ ++Description: make the build reproducible ++Author: Reiner Herrmann ++Origin: other, https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833176 ++Reviewed-by: Jean Baptiste Favre ++Last-Update: 2016-11-18 ++--- ++This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ++--- a/configure.ac +++++ b/configure.ac ++@@ -144,9 +144,9 @@ AC_ARG_WITH([build-number], ++ # ++ # Build environment ++ # ++-build_person="`id -nu | sed -e 's/\\\\/\\\\\\\\/g'`" ++-build_group="`id -ng | sed -e 's/\\\\/\\\\\\\\/g'`" ++-build_machine="`uname -n | sed -e 's/\\\\/\\\\\\\\/g'`" +++build_person="root" +++build_group="root" +++build_machine="localhost" ++ AC_SUBST([build_machine]) ++ AC_SUBST([build_person]) ++ AC_SUBST([build_group]) diff --cc debian/patches/0006-fix-doc-build.patch index 00000000,00000000..47ee27ec new file mode 100644 --- /dev/null +++ b/debian/patches/0006-fix-doc-build.patch @@@ -1,0 -1,0 +1,51 @@@ ++Description: Make documentation build works outside of git repository ++ Current documentation build requires git and curl to get some stuff from the internet ++ This patch aims to delete those dependencies, forcing git branch to master, ++ and using Debian provided plantuml instead of downloading it from apache mirror ++Author: Jean Baptiste Favre ++Origin: other ++Last-Update: 2018-04-24 ++--- ++This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ++--- a/doc/ext/traffic-server.py +++++ b/doc/ext/traffic-server.py ++@@ -380,7 +380,7 @@ with open('../configure.ac', 'r') as f: ++ autoconf_version = '.'.join(match.group(1).split('.', 2)[:2] + ['x']) ++ ++ # get the current branch the local repository is on ++-git_branch = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD']) +++git_branch = "master" ++ ++ ++ def make_github_link(name, rawtext, text, lineno, inliner, options={}, content=[]): ++--- a/doc/Makefile.am +++++ b/doc/Makefile.am ++@@ -61,7 +61,7 @@ I18NSPHINXOPTS = $(SPHINXOPTS) ++ # The PAPER setting variables requires recursive make variable expansion, which automake ++ # detects as non-portable. We bounce this through a shell script and do the expansion there. ++ SBUILD = PAPEROPT_a4="$(PAPEROPT_a4)" PAPEROPT_letter="$(PAPEROPT_letter)" PAPER="$(PAPER)" \ ++- PLANTUML_JAR="$(shell ./plantuml_fetch.sh | tail -1)" \ +++ PLANTUML_JAR="/usr/share/plantuml/plantuml.jar" \ ++ $(srcdir)/sbuild $(SPHINXBUILD) \ ++ -c $(srcdir) \ ++ $(ALLSPHINXOPTS) ++--- a/doc/uml/Makefile.am +++++ b/doc/uml/Makefile.am ++@@ -18,7 +18,7 @@ ++ ++ if BUILD_DOCS ++ images := $(patsubst %.uml,images/%.svg,$(wildcard *.uml)) ++-PLANTUML_JAR := $(shell ../plantuml_fetch.sh | tail -1) +++PLANTUML_JAR := /usr/share/plantuml/plantuml.jar ++ ++ all-am: jar-check $(images) ++ endif ++@@ -39,7 +39,7 @@ latex: all-am ++ man: all-am ++ ++ images/%.svg : %.uml ++- $(JAVA) -jar $(PLANTUML_JAR) -o images -tsvg $< +++ $(JAVA) -jar $(PLANTUML_JAR) -graphvizdot /usr/bin/dot -o images -tsvg $< ++ ++ clean-local: ++ rm -f images/*.svg diff --cc debian/patches/0008-fix-python-check-unused-dependencies.patch index 00000000,00000000..ff100004 new file mode 100644 --- /dev/null +++ b/debian/patches/0008-fix-python-check-unused-dependencies.patch @@@ -1,0 -1,0 +1,24 @@@ ++Description: Force python3 usage, add libfakeroot-sysv to blacklist ++Author: Jean Baptiste Favre ++Origin: other ++Last-Update: 2018-09-24 ++--- ++This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ++--- a/tools/check-unused-dependencies +++++ b/tools/check-unused-dependencies ++@@ -1,4 +1,4 @@ ++-#!/usr/bin/env python +++#!/usr/bin/env python3 ++ ++ # Licensed to the Apache Software Foundation (ASF) under one or more ++ # contributor license agreements. See the NOTICE file distributed with ++@@ -53,7 +53,8 @@ def get_dependencies(program): ++ 'libdl.so.', # Because we add -ldl to LIBS ++ 'libgcc_s.so.', ++ 'libm.so.', # Why does Libtool call ld with -lm? ++- 'libpthread.so.' # Because we add -lpthread to LIBS +++ 'libpthread.so.', # Because we add -lpthread to LIBS +++ 'libfakeroot-sysv.so' ++ ])): ++ continue ++ diff --cc debian/patches/0009-fix-mysql-8-build.patch index 00000000,00000000..b2615e37 new file mode 100644 --- /dev/null +++ b/debian/patches/0009-fix-mysql-8-build.patch @@@ -1,0 -1,0 +1,23 @@@ ++Description: Fix build issue with MySQL 8 ++ The my_bool type is no longer used in MySQL source code. ++ Any third-party code that used this type to represent C ++ boolean variables should use the bool or int C type instead. ++Author: Jean Baptiste Favre ++Origin: other, https://bugs.launchpad.net/ubuntu/+source/trafficserver/+bug/1795362 ++Forwarded: https://github.com/apache/trafficserver/pull/4360 ++Applied-Upstream: https://github.com/apache/trafficserver/commit/05b30527974416768515506f69da338652c23260 ++Reviewed-by: Jean Baptiste Favre ++Last-Update: 2018-10-06 ++--- ++This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ++--- a/plugins/experimental/mysql_remap/mysql_remap.cc +++++ b/plugins/experimental/mysql_remap/mysql_remap.cc ++@@ -187,7 +187,7 @@ TSPluginInit(int argc, const char *argv[ ++ my_data *data = (my_data *)malloc(1 * sizeof(my_data)); ++ ++ TSPluginRegistrationInfo info; ++- my_bool reconnect = 1; +++ bool reconnect = 1; ++ ++ info.plugin_name = const_cast(PLUGIN_NAME); ++ info.vendor_name = const_cast("Apache Software Foundation"); diff --cc debian/patches/0011-fix-segfault.patch index 00000000,00000000..d3db7fff new file mode 100644 --- /dev/null +++ b/debian/patches/0011-fix-segfault.patch @@@ -1,0 -1,0 +1,25 @@@ ++Description: Fix Segmentation fault in ShowCache::handleCacheEvent ++Author: zhang <15535135608@163.com> ++Origin: upstream ++Bug: https://github.com/apache/trafficserver/issues/4328 ++Applied-Upstream: https://github.com/apache/trafficserver/commit/616eb10bfc35599a2c93ff30879d584a05ddf83e ++Reviewed-by: Jean Baptiste Favre ++Last-Update: 2018-10-17 ++--- ++This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ ++--- a/iocore/cache/CachePages.cc +++++ b/iocore/cache/CachePages.cc ++@@ -337,6 +337,13 @@ ShowCache::handleCacheEvent(int event, E ++ CacheHTTPInfoVector *vec = &(cache_vc->vector); ++ int alt_count = vec->count(); ++ if (alt_count) { +++ // check cache_vc->first_buf is NULL, response cache lookup busy. +++ if (cache_vc->first_buf == nullptr) { +++ cache_vc->do_io_close(-1); +++ CHECK_SHOW(show("

Cache Lookup Busy, please try again

\n")); +++ return complete(event, e); +++ } +++ ++ Doc *d = (Doc *)(cache_vc->first_buf->data()); ++ time_t t; ++ char tmpstr[4096]; diff --cc debian/patches/series index 00000000,00000000..643c5ef5 new file mode 100644 --- /dev/null +++ b/debian/patches/series @@@ -1,0 -1,0 +1,6 @@@ ++0001-Use-mcx16-on-x86-platforms-only.patch ++0003-reproductible-build.patch ++0006-fix-doc-build.patch ++0008-fix-python-check-unused-dependencies.patch ++0009-fix-mysql-8-build.patch ++0011-fix-segfault.patch diff --cc debian/rules index 00000000,00000000..54e88b15 new file mode 100755 --- /dev/null +++ b/debian/rules @@@ -1,0 -1,0 +1,79 @@@ ++#!/usr/bin/make -f ++# -*- makefile -*- ++ ++# Uncomment this to turn on verbose mode. ++#export DH_VERBOSE=1 ++ ++export DEB_BUILD_MAINT_OPTIONS = hardening=+all ++export DEB_CFLAGS_MAINT_APPEND = -O3 ++export DEB_CXXFLAGS_MAINT_APPEND = -O3 ++# mips & mipsel need explicit libatomic link ++ifeq ($(DEB_HOST_ARCH),$(filter $(DEB_HOST_ARCH),mips mipsel)) ++ export DEB_LDFLAGS_MAINT_APPEND += -latomic ++endif ++ ++# Get build architecture. ./configure is different on Linux ++include /usr/share/dpkg/architecture.mk ++# Get rid f dpkg-parsechangelog ++include /usr/share/dpkg/pkg-info.mk ++ ++configure_flags = \ ++ --enable-layout=Debian \ ++ --sysconfdir=/etc/trafficserver --libdir=/usr/lib/trafficserver \ ++ --libexecdir=/usr/lib/trafficserver/modules \ ++ --with-user=root --with-group=root --disable-silent-rules \ ++ --enable-experimental-plugins --enable-32bit-build \ ++ --enable-mime-sanity-check --enable-docs \ ++ --with-build-version=$(DEB_VERSION) \ ++ $(shell dpkg-buildflags --export=configure) ++ ++ifeq ($(DEB_HOST_ARCH_OS),linux) ++ configure_flags += --enable-wccp ++endif ++ ++%: ++ dh $@ --with autoreconf ++ ++override_dh_auto_configure: ++ dh_auto_configure -- $(configure_flags) ++ ++override_dh_auto_install: ++ dh_auto_install -- INSTALLDIRS=vendor ++ rm -f debian/tmp/usr/bin/trafficserver # We install our own ++ # Satisfy §10.2 (http://wiki.debian.org/ReleaseGoals/LAFileRemoval) ++ rm -f debian/tmp/usr/lib/trafficserver/lib*.la ++ rm -f debian/tmp/usr/lib/trafficserver/modules/*.la ++ rm -f debian/tmp/usr/lib/trafficserver/lib*.a ++ifneq ($(DEB_HOST_ARCH_OS),linux) ++ # Remove Linux-specific plugin ++ sed -i '/\/healthchecks\.so$$/d' \ ++ debian/trafficserver.install ++endif ++ ++override_dh_install: ++ dh_install ++ dh_missing --list-missing ++ ./debian/change_config.pl debian/trafficserver/etc/trafficserver/records.config ++ # Lintian fixes ++ mkdir -p debian/trafficserver/usr/share/doc/trafficserver ++ cat CHANGELOG-* >> debian/trafficserver/usr/share/doc/trafficserver/changelog ++ #rm debian/trafficserver-dev/usr/share/doc/trafficserver-dev/examples/ssl-preaccept/ssl_preaccept.config ++ #(cd debian/trafficserver-dev/usr/share/doc/trafficserver-dev/examples/ssl-preaccept/; \ ++ #ln -s ssl_preaccept.config ssl_sni.config) ++ ++override_dh_fixperms: ++ dh_fixperms -Xvar/lib/trafficserver \ ++ -Xvar/log/trafficserver \ ++ -Xvar/cache/trafficserver \ ++ -Xvar/run/trafficserver ++ # Fix lintian warning ++ chmod -x debian/trafficserver-dev/usr/share/doc/trafficserver-dev/examples/remap_header_add/build.txt ++ ++override_dh_installexamples: ++ dh_installexamples -XMakefile -X.libs -X.dirstamp -X.deps -X.la -X.lo ++ ++override_dh_makeshlibs: ++ dh_makeshlibs -Xdebian/tmp/usr/lib/trafficserver ++ ++override_dh_auto_test: ++ -dh_auto_test diff --cc debian/source/format index 00000000,00000000..163aaf8d new file mode 100644 --- /dev/null +++ b/debian/source/format @@@ -1,0 -1,0 +1,1 @@@ ++3.0 (quilt) diff --cc debian/source/options index 00000000,00000000..9693b2ab new file mode 100644 --- /dev/null +++ b/debian/source/options @@@ -1,0 -1,0 +1,1 @@@ ++--extend-diff-ignore='examples/|diags.log|lib/perl/' diff --cc debian/trafficserver-dev.examples index 00000000,00000000..0bbe99ef new file mode 100644 --- /dev/null +++ b/debian/trafficserver-dev.examples @@@ -1,0 -1,0 +1,1 @@@ ++example/* diff --cc debian/trafficserver-dev.install index 00000000,00000000..973eea9a new file mode 100644 --- /dev/null +++ b/debian/trafficserver-dev.install @@@ -1,0 -1,0 +1,4 @@@ ++debian/tmp/usr/include/* ++debian/tmp/usr/bin/tsxs ++debian/tmp/usr/lib/trafficserver/lib*.so ++debian/tmp/usr/lib/trafficserver/pkgconfig/trafficserver.pc diff --cc debian/trafficserver-dev.lintian-overrides index 00000000,00000000..77c80dbf new file mode 100644 --- /dev/null +++ b/debian/trafficserver-dev.lintian-overrides @@@ -1,0 -1,0 +1,3 @@@ ++# changelog is already provided in trafficserver main package. ++# no need to duplicate it in each package ++no-upstream-changelog diff --cc debian/trafficserver-dev.manpages index 00000000,00000000..c1687793 new file mode 100644 --- /dev/null +++ b/debian/trafficserver-dev.manpages @@@ -1,0 -1,0 +1,2 @@@ ++debian/tmp/usr/share/man/man1/tsxs.1 ++debian/tmp/usr/share/man/man3/* diff --cc debian/trafficserver-experimental-plugins.install index 00000000,00000000..8c66459a new file mode 100644 --- /dev/null +++ b/debian/trafficserver-experimental-plugins.install @@@ -1,0 -1,0 +1,35 @@@ ++usr/lib/trafficserver/modules/access_control.so ++usr/lib/trafficserver/modules/acme.so ++usr/lib/trafficserver/modules/balancer.so ++usr/lib/trafficserver/modules/buffer_upload.so ++usr/lib/trafficserver/modules/cache_key_genid.so ++usr/lib/trafficserver/modules/cache_range_requests.so ++usr/lib/trafficserver/modules/collapsed_forwarding.so ++usr/lib/trafficserver/modules/custom_redirect.so ++usr/lib/trafficserver/modules/fq_pacing.so ++usr/lib/trafficserver/modules/geoip_acl.so ++usr/lib/trafficserver/modules/header_freq.so ++usr/lib/trafficserver/modules/header_normalize.so ++usr/lib/trafficserver/modules/hipes.so ++usr/lib/trafficserver/modules/hook-trace.so ++usr/lib/trafficserver/modules/inliner.so ++usr/lib/trafficserver/modules/tsmemcache.so ++usr/lib/trafficserver/modules/memcached_remap.so ++usr/lib/trafficserver/modules/metalink.so ++usr/lib/trafficserver/modules/money_trace.so ++usr/lib/trafficserver/modules/mp4.so ++usr/lib/trafficserver/modules/multiplexer.so ++usr/lib/trafficserver/modules/mysql_remap.so ++usr/lib/trafficserver/modules/prefetch.so ++usr/lib/trafficserver/modules/remap_purge.so ++usr/lib/trafficserver/modules/remap_stats.so ++usr/lib/trafficserver/modules/server_push_preload.so ++usr/lib/trafficserver/modules/ssl_cert_loader.so ++usr/lib/trafficserver/modules/sslheaders.so ++usr/lib/trafficserver/modules/stale_while_revalidate.so ++usr/lib/trafficserver/modules/stream_editor.so ++usr/lib/trafficserver/modules/system_stats.so ++usr/lib/trafficserver/modules/tls_bridge.so ++usr/lib/trafficserver/modules/traffic_dump.so ++usr/lib/trafficserver/modules/uri_signing.so ++usr/lib/trafficserver/modules/url_sig.so diff --cc debian/trafficserver-experimental-plugins.lintian-overrides index 00000000,00000000..a23247fe new file mode 120000 --- /dev/null +++ b/debian/trafficserver-experimental-plugins.lintian-overrides @@@ -1,0 -1,0 +1,1 @@@ ++trafficserver-dev.lintian-overrides diff --cc debian/trafficserver.default index 00000000,00000000..ca86af35 new file mode 100644 --- /dev/null +++ b/debian/trafficserver.default @@@ -1,0 -1,0 +1,41 @@@ ++## Defaults for trafficserver initscript ++## sourced by /etc/init.d/trafficserver ++## installed at /etc/default/trafficserver by the maintainer scripts ++ ++## ++## This is a POSIX shell fragment ++## ++ ++## Variable: RUNDIR ++## Default: /var/run/trafficserver ++## Description: Set this to the directory where runtime data is stored. The ++## default value should work fine for almost all users. ++# RUNDIR=/var/run/trafficserver ++ ++ ++## Configuration for `traffic_manager'. ++## Meaning of variables is analogous to traffic_cop above, but for the ++## `traffic_manager' binary. ++ ++TM_START=yes ++# TM_DAEMON_ARGS="" ++# TM_PIDFILE=$RUNDIR/manager.lock ++ ++## ++## NOTICE: ++## Typically you do not want to configure anything below. Note, generally Traffic ++## Server is started through `traffic_cop' which is a watchdog to control any local ++## Traffic Server instances. It starts both, traffic_manager and traffic_server, as ++## does it monitor these processes. While it is generally not advised, you can ++## choose to manage both processes yourself. In such cases do not set TC_START to ++## "yes" and enable any service you want below. ++## ++## Choose either alternative, but do not mix up both. ++ ++## Configuration for `traffic_server'. ++## Meaning of variables is analogous to traffic_cop above, but for the ++## `traffic_server' binary. ++ ++# TS_START=no ++# TS_DAEMON_ARGS="" ++# TS_PIDFILE=$RUNDIR/server.lock diff --cc debian/trafficserver.dirs index 00000000,00000000..91e6eaf4 new file mode 100644 --- /dev/null +++ b/debian/trafficserver.dirs @@@ -1,0 -1,0 +1,2 @@@ ++/var/cache/trafficserver ++/var/log/trafficserver diff --cc debian/trafficserver.example index 00000000,00000000..b9d32e1e new file mode 100644 --- /dev/null +++ b/debian/trafficserver.example @@@ -1,0 -1,0 +1,2 @@@ ++plugins/experimental/cacheurl/*.example ++plugins/experimental/mysql_remap/sample.ini diff --cc debian/trafficserver.init index 00000000,00000000..cc1179b0 new file mode 100644 --- /dev/null +++ b/debian/trafficserver.init @@@ -1,0 -1,0 +1,257 @@@ ++#! /bin/sh ++ ++### BEGIN INIT INFO ++# Provides: trafficserver ++# Required-Start: $remote_fs $syslog ++# Required-Stop: $remote_fs $syslog ++# Default-Start: 2 3 4 5 ++# Default-Stop: 0 1 6 ++# Short-Description: init script for the Apache Traffic Server ++# Description: Apache Traffic Server is fast, scalable and extensible ++# HTTP/1.1 compliant caching proxy server. ++### END INIT INFO ++ ++# Author: Arno Töll ++# ++# This init script is derived from the source package's version shipped ++# along the source tarball as rc/trafficserver. Therefore it is a derivative ++# work and licensed as follows: ++# ++# ++# Licensed to the Apache Software Foundation (ASF) under one or more ++# contributor license agreements. See the NOTICE file distributed with ++# this work for additional information regarding copyright ownership. ++# The ASF licenses this file to You under the Apache License, Version 2.0 ++# (the "License"); you may not use this file except in compliance with ++# the License. You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++ ++PATH=/sbin:/usr/sbin:/bin:/usr/bin ++DESC="Apache Traffic Server" ++NAME=trafficserver ++SCRIPTNAME=/etc/init.d/$NAME ++ ++ ++# Please do not touch TS_ROOT and TS_BASE. Traffic Server uses them ++# They are used to determine location of ATS components on the file ++# system. ++# According to DPM § 9.9 a program must not depend on the existance of ++# environment variables to work properly. Please report any errors if ++# you experience such a problem, for me it seems to work just fine with- ++# out ++ESED=/usr/bin/sed ++test -x $ESED || ESED=sed ++TS_PREFIX="/usr" ++TS_ROOT=${TS_ROOT:-$TS_PREFIX} ++ ++# TS_BASE is offset inside the file system from where the layout starts ++# For standard installations TS_BASE will be empty ++eval TS_BASE="`echo $TS_ROOT | ${ESED} -e 's;/usr$;;'`" ++ ++# Set some safe defaults. So not change values here, override them in ++# in /etc/default/trafficserver instead. ++# See there for a documentation as well ++ ++RUNDIR=${RUNDIR:-$TS_BASE/var/run/trafficserver} ++ ++TM_START=${TM_START:-no} ++TM_NAME=${TM_NAME:-traffic_manager} ++TM_DAEMON=${TM_DAEMON:-$TS_BASE/usr/bin/traffic_manager} ++TM_DAEMON_ARGS="" ++TM_PIDFILE=${TM_PIDFILE:-$RUNDIR/manager.lock} ++ ++TS_START=${TS_START:-no} ++TS_NAME=${TS_NAME:-traffic_server} ++TS_DAEMON=${TS_DAEMON:-$TS_BASE/usr/bin/traffic_server} ++TS_DAEMON_ARGS="" ++TS_PIDFILE=${TS_PIDFILE:-$RUNDIR/server.lock} ++ ++# Exit if the package is not installed ++[ -x "$TM_DAEMON" ] || exit 0 ++ ++ ++# Read configuration variable file if it is present ++[ -r /etc/default/$NAME ] && . /etc/default/$NAME ++ ++# Load the VERBOSE setting and other rcS variables ++. /lib/init/vars.sh ++ ++# Define LSB log_* functions. ++. /lib/lsb/init-functions ++ ++# Check permissions of /etc/trafficserver. ++# Traffic Server needs write permissions, so warn the user if we suppose it ++# wouldn't. ++# The sysadmin is welcome to change the user ID that ATS uses. However to do that ++# in a clean and supported way, the administrator should overwrite the `stat override' ++# Debian installs by default in Trafficserver's postinst maintainer script. ++# Print a warning only. ++# Since this can't be safely determined by this script print a warning only, but ++# don't fail. ++CONF_DIR='/etc/trafficserver' ++USER=$(dpkg-statoverride --list "$CONF_DIR" | awk '{print $1}') ++OWNER=$(env stat -c '%U' "$CONF_DIR") ++if [ -d "$CONF_DIR" ] && [ ! "x$OWNER" = "x$USER" ] ; then ++ log_warning_msg "Configuration directory '$CONF_DIR' is not owned by user '$USER'. " \ ++ "However Traffic Server needs write permissions to it." ++fi ++ ++ ++# Make sure $RUNDIR exists as the underlying file system ++# may be volatile (see § 9.3.2 from DPM) ++install -d -o trafficserver -g trafficserver -m 0755 "$RUNDIR" ++ ++ ++# A helper function, its purpose is to start a daemon. ++# Arguments are interpreted in order as follows: ++# 1) The executable path ++# 2) A string containing optional daemon arguments ++# 3) A (valid) path containing the PID file for the daemon ++# Returns: ++# 0 if daemon has been started ++# 1 if daemon was already running ++# 2 if daemon could not be started ++start_cmd() ++{ ++ # Args ++ DAEMON=$1 ++ DAEMON_ARGS=$2 ++ PID=$3 ++ ++ #echo "\n\n" ++ #echo "d:" $DAEMON ++ #echo "da:" $DAEMON_ARGS ++ #echo "pid:" $PID ++ ++ start-stop-daemon --start --quiet --pidfile $PID --exec $DAEMON --test > /dev/null \ ++ || return 1 ++ start-stop-daemon --start --quiet --background --pidfile $PID --exec $DAEMON -- \ ++ $DAEMON_ARGS \ ++ || return 2 ++ ++ return 0 ++} ++ ++ ++# A helper function, its purpose is to stop a daemon. ++# Arguments are interpreted in order as follows: ++# 1) The daemon name (i.e. the binary name) ++# 2) The executable path ++# 3) A (valid) path containing the PID file for the daemon ++# Returns: ++# 0 if daemon has been stopped ++# 1 if daemon was already stopped ++# 2 if daemon could not be stopped ++# Another value if a failure occurred ++stop_cmd() ++{ ++ NAME=$1 ++ DAEMON=$2 ++ PID=$3 ++ ++ start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PID --name $NAME ++ RETVAL="$?" ++ [ "$RETVAL" = 2 ] && return 2 ++ ++ start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON ++ [ "$?" = 2 ] && return 2 ++ ++ # Many daemons don't delete their pidfiles when they exit. ++ rm -f $PID ++ return "$RETVAL" ++} ++ ++# The start function ++# This function does everything required to bring up the service ++# at boot time. ++# It does not accept any arguments ++do_start() { ++ if [ "x$TM_START" != "xno" ]; then ++ [ "$VERBOSE" != no ] && log_daemon_msg "Starting $TM_NAME" ++ start_cmd "$TM_DAEMON" "$TM_DAEMON_ARGS" "$TM_PIDFILE" ++ case "$?" in ++ 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; ++ 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; ++ esac ++ fi ++ ++ if [ "x$TS_START" != "xno" ]; then ++ [ "$VERBOSE" != no ] && log_daemon_msg "Starting $TS_NAME" ++ start_cmd "$TS_DAEMON" "$TS_DAEMON_ARGS" "$TS_PIDFILE" ++ case "$?" in ++ 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; ++ 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; ++ esac ++ fi ++} ++ ++ ++# The stop function ++# This function does everything required to stop the service. ++# It does not accept any arguments ++do_stop() { ++ [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $TM_NAME" ++ stop_cmd "$TM_NAME" "$TM_DAEMON" "$TM_PIDFILE" ++ case "$?" in ++ 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; ++ 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; ++ esac ++ ++ [ "$VERBOSE" != no ] && log_daemon_msg "Stopping $TS_NAME" ++ stop_cmd "$TS_NAME" "$TS_DAEMON" "$TS_PIDFILE" ++ case "$?" in ++ 0|1) [ "$VERBOSE" != no ] && log_end_msg 0 ;; ++ 2) [ "$VERBOSE" != no ] && log_end_msg 1 ;; ++ esac ++} ++ ++case "$1" in ++ start) ++ if [ "x$TM_START" = "xno" ] && [ "x$TS_START" = "xno" ]; then ++ [ "$VERBOSE" != no ] && log_warning_msg "Not starting $DESC" ++ else ++ do_start ++ fi ++ ;; ++ stop) ++ do_stop ++ ;; ++ status) ++ if [ "x$TM_START" != "xno" ] ; then ++ status_of_proc "$TM_DAEMON" "$TM_NAME" -p "$TM_PIDFILE" && exit 0 || exit $? ++ else ++ status_of_proc "$TS_DAEMON" "$TS_NAME" -p "$TS_PIDFILE" || exit $? ++ fi ++ ;; ++ restart|force-reload) ++ log_daemon_msg "Restarting $DESC" "$NAME\n" ++ do_stop ++ case "$?" in ++ 0|1) ++ do_start ++ case "$?" in ++ 0) log_end_msg 0 ;; ++ 1) log_end_msg 1 ;; # Old process is still running ++ *) log_end_msg 1 ;; # Failed to start ++ esac ++ ;; ++ *) ++ # Failed to stop ++ log_end_msg 1 ++ ;; ++ esac ++ ;; ++ *) ++ echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 ++ exit 3 ++ ;; ++esac ++ ++: diff --cc debian/trafficserver.install index 00000000,00000000..aa971f52 new file mode 100644 --- /dev/null +++ b/debian/trafficserver.install @@@ -1,0 -1,0 +1,26 @@@ ++usr/bin/traffic_* ++usr/bin/tspush ++etc/trafficserver/* ++usr/lib/trafficserver/lib*.so.* ++usr/lib/trafficserver/modules/authproxy.so ++usr/lib/trafficserver/modules/background_fetch.so ++usr/lib/trafficserver/modules/cachekey.so ++usr/lib/trafficserver/modules/cache_promote.so ++usr/lib/trafficserver/modules/combo_handler.so ++usr/lib/trafficserver/modules/compress.so ++usr/lib/trafficserver/modules/conf_remap.so ++usr/lib/trafficserver/modules/escalate.so ++usr/lib/trafficserver/modules/esi.so ++usr/lib/trafficserver/modules/generator.so ++usr/lib/trafficserver/modules/header_rewrite.so ++usr/lib/trafficserver/modules/healthchecks.so ++usr/lib/trafficserver/modules/libloader.so ++usr/lib/trafficserver/modules/regex_remap.so ++usr/lib/trafficserver/modules/regex_revalidate.so ++usr/lib/trafficserver/modules/s3_auth.so ++usr/lib/trafficserver/modules/stats_over_http.so ++usr/lib/trafficserver/modules/tcpinfo.so ++usr/lib/trafficserver/modules/test_cppapi.so ++usr/lib/trafficserver/modules/tslua.so ++usr/lib/trafficserver/modules/xdebug.so ++usr/lib/perl5/* usr/share/perl5/ diff --cc debian/trafficserver.lintian-overrides index 00000000,00000000..ce68a22d new file mode 100644 --- /dev/null +++ b/debian/trafficserver.lintian-overrides @@@ -1,0 -1,0 +1,2 @@@ ++#might be a false positive from lintian ++wrong-path-for-interpreter diff --cc debian/trafficserver.manpages index 00000000,00000000..b2bfc3aa new file mode 100644 --- /dev/null +++ b/debian/trafficserver.manpages @@@ -1,0 -1,0 +1,4 @@@ ++debian/tmp/usr/share/man/man1/traffic_* ++debian/tmp/usr/share/man/man1/tspush.1 ++debian/tmp/usr/share/man/man8/traffic_* ++debian/tmp/usr/share/man/man5/* diff --cc debian/trafficserver.postinst index 00000000,00000000..badea6a4 new file mode 100755 --- /dev/null +++ b/debian/trafficserver.postinst @@@ -1,0 -1,0 +1,132 @@@ ++#! /bin/sh ++# postinst script for trafficserver ++# ++# see: dh_installdeb(1) ++# ++# Copyright 2011 Arno Toell ++# ++# Licensed under the Apache License, Version 2.0 (the "License"); ++# you may not use this file except in compliance with the License. ++# You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++ ++ ++set -e ++ ++USER='trafficserver' ++GROUP='trafficserver' ++USER_HOME='/var/run/trafficserver' ++OWNER=$(env stat -c '%U' /etc/trafficserver) ++OWNER_CACHE_DIR=$(env stat -c '%U' /var/cache/trafficserver) ++ ++# summary of how this script can be called: ++# * `configure' ++# * `abort-upgrade' ++# * `abort-remove' `in-favour' ++# ++# * `abort-deconfigure' `in-favour' ++# `removing' ++# ++# for details, see /usr/share/doc/packaging-manual/ ++# ++# quoting from the policy: ++# Any necessary prompting should almost always be confined to the ++# post-installation script, and should be protected with a conditional ++# so that unnecessary prompting doesn't happen if a package's ++# installation fails and the `postinst' is called with `abort-upgrade', ++# `abort-remove' or `abort-deconfigure'. ++ ++case "$1" in ++configure) ++ ++ if ! getent passwd -- "$USER" >/dev/null 2>&1 ; then ++ adduser --home "$USER_HOME" \ ++ --group \ ++ --system \ ++ --disabled-password \ ++ --no-create-home \ ++ --gecos "Debian Traffic Server user" \ ++ $USER ++ fi ++ ++ if [ -d /etc/trafficserver ] && [ "x$OWNER" = "xroot" ] ; then ++ # Ok, I admit I am lazy. I don't check every permission ++ # the user may have changed. If he didn't for /etc I can ++ # safely assume he neither has for other directories (I ++ # hope, since /etc requires write permissions by ATS). ++ echo 'Fixing permissions ...' ++ ++ if ! dpkg-statoverride --list /etc/trafficserver >/dev/null 2>&1; then ++ dpkg-statoverride --update --add "$USER" "$GROUP" 0755 /etc/trafficserver ++ fi ++ ++ if ! dpkg-statoverride --list /var/log/trafficserver >/dev/null 2>&1; then ++ dpkg-statoverride --update --add "$USER" adm 0750 /var/log/trafficserver ++ fi ++ ++ if [ -d /var/cache/trafficserver ] && [ "x$OWNER_CACHE_DIR" = "xroot" ] ; then ++ if ! dpkg-statoverride --list /var/cache/trafficserver >/dev/null 2>&1; then ++ dpkg-statoverride --update --add "$USER" adm 0750 /var/cache/trafficserver ++ fi ++ fi ++ fi ++ ++ if [ -n "$2" ] && dpkg --compare-versions "$2" 'le' '3.2~' ; then ++ RET=0 ++ invoke-rc.d trafficserver status > /dev/null 2>&1 || RET=$? ++ # 0 => ATS is running ++ # 4 => Status is unknown ++ # 1,2,3 => ATS is not running ++ ++ # using /bin/echo to make sure -e is supported ++ ECHO=`which echo` ++ if [ "$RET" -gt 0 ] && [ "$RET" -ne 4 ] && [ -f /var/cache/trafficserver/host.db ] ; then ++ echo "Purging TrafficServer cache upon upgrade." ++ RET=0 ++ traffic_server -Cclear > /dev/null 2>&1 || RET=$? ++ if [ "$RET" -ne 0 ] ; then ++ $ECHO "=======================================================================" ++ $ECHO -e "WARNING: Apache TrafficServer's cache couldn't be purged during the upgrade.\n" \ ++ "Please inspect the situation manually and call 'traffic_server -Cclear'\n" \ ++ "afterwards to purge the caches." ++ $ECHO "=======================================================================" ++ fi ++ else ++ $ECHO "=======================================================================" ++ $ECHO -e "WARNING: Apache TrafficServer is not running or its state couldn't be\n" \ ++ "determined. Please inspect the situation manually and call\n" \ ++ "'traffic_server -Cclear' afterwards to purge the caches.\n" ++ $ECHO "=======================================================================" ++ ++ fi ++ fi ++ CONFFILES="/etc/trafficserver/vaddrs.config /etc/trafficserver/metrics.config /etc/trafficserver/logging.config /etc/trafficserver/log_hosts.config /etc/trafficserver/congestion.config /etc/trafficserver/cluster.config /etc/trafficserver/body_factory/default/congestion#retryAfter /etc/trafficserver/icp.config /etc/trafficserver/snapshosts" ++ for CONFFILE in ${CONFFILES}; ++ do ++ dpkg-maintscript-helper rm_conffile ${CONFFILE} 8.0.0~ -- "$@" ++ done ++;; ++ ++abort-upgrade|abort-remove|abort-deconfigure) ++ ++;; ++ ++*) ++echo "postinst called with unknown argument \`$1'" >&2 ++exit 0 ++;; ++esac ++ ++# dh_installdeb will replace this with shell code automatically ++# generated by other debhelper scripts. ++ ++#DEBHELPER# ++ ++exit 0 diff --cc debian/trafficserver.postrm index 00000000,00000000..01f1e300 new file mode 100755 --- /dev/null +++ b/debian/trafficserver.postrm @@@ -1,0 -1,0 +1,57 @@@ ++#! /bin/sh ++# postrm script for trafficserver ++# ++# see: dh_installdeb(1) ++# ++# Copyright 2018 Jean Baptiste Favre ++# ++# Licensed under the Apache License, Version 2.0 (the "License"); ++# you may not use this file except in compliance with the License. ++# You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++ ++ ++set -e ++ ++# summary of how this script can be called: ++# * remove ++# * purge ++# * upgrade ++# * failed-upgrade ++# * abort-install ++# * abort-install ++# * abort-upgrade ++# for details, see /usr/share/doc/packaging-manual/ ++ ++case "$1" in ++upgrade|remove|purge) ++ CONFFILES="/etc/trafficserver/vaddrs.config /etc/trafficserver/metrics.config /etc/trafficserver/logging.config /etc/trafficserver/log_hosts.config /etc/trafficserver/congestion.config /etc/trafficserver/cluster.config /etc/trafficserver/body_factory/default/congestion#retryAfter /etc/trafficserver/icp.config /etc/trafficserver/snapshosts" ++ for CONFFILE in ${CONFFILES}; ++ do ++ dpkg-maintscript-helper rm_conffile ${CONFFILE} 8.0.0~ -- "$@" ++ done ++;; ++ ++failed-upgrade|abort-install|abort-upgrade) ++ ++;; ++ ++*) ++echo "postrm called with unknown argument \`$1'" >&2 ++exit 0 ++;; ++esac ++ ++# dh_installdeb will replace this with shell code automatically ++# generated by other debhelper scripts. ++ ++#DEBHELPER# ++ ++exit 0 diff --cc debian/trafficserver.preinst index 00000000,00000000..60eaa7ad new file mode 100755 --- /dev/null +++ b/debian/trafficserver.preinst @@@ -1,0 -1,0 +1,62 @@@ ++#! /bin/sh ++# preinst script for trafficserver ++# ++# see: dh_installdeb(1) ++# ++# Copyright 2018 Jean Baptiste Favre ++# ++# Licensed under the Apache License, Version 2.0 (the "License"); ++# you may not use this file except in compliance with the License. ++# You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++ ++ ++set -e ++ ++# summary of how this script can be called: ++ ++# * install ++# * install ++# * upgrade ++# * abort-upgrade ++# for details, see /usr/share/doc/packaging-manual/ ++# ++# quoting from the policy: ++# Any necessary prompting should almost always be confined to the ++# post-installation script, and should be protected with a conditional ++# so that unnecessary prompting doesn't happen if a package's ++# installation fails and the `postinst' is called with `abort-upgrade', ++# `abort-remove' or `abort-deconfigure'. ++ ++case "$1" in ++install|upgrade) ++ CONFFILES="/etc/trafficserver/vaddrs.config /etc/trafficserver/metrics.config /etc/trafficserver/logging.config /etc/trafficserver/log_hosts.config /etc/trafficserver/congestion.config /etc/trafficserver/cluster.config /etc/trafficserver/body_factory/default/congestion#retryAfter /etc/trafficserver/icp.config /etc/trafficserver/snapshosts" ++ for CONFFILE in ${CONFFILES}; ++ do ++ dpkg-maintscript-helper rm_conffile ${CONFFILE} 8.0.0~ -- "$@" ++ done ++;; ++ ++abort-upgrade) ++ ++;; ++ ++*) ++echo "preinst called with unknown argument \`$1'" >&2 ++exit 0 ++;; ++esac ++ ++# dh_installdeb will replace this with shell code automatically ++# generated by other debhelper scripts. ++ ++#DEBHELPER# ++ ++exit 0 diff --cc debian/trafficserver.service index 00000000,00000000..9219bb17 new file mode 100644 --- /dev/null +++ b/debian/trafficserver.service @@@ -1,0 -1,0 +1,31 @@@ ++# ++# Licensed to the Apache Software Foundation (ASF) under one ++# or more contributor license agreements. See the NOTICE file ++# distributed with this work for additional information ++# regarding copyright ownership. The ASF licenses this file ++# to you under the Apache License, Version 2.0 (the ++# "License"); you may not use this file except in compliance ++# with the License. You may obtain a copy of the License at ++# ++# http://www.apache.org/licenses/LICENSE-2.0 ++# ++# Unless required by applicable law or agreed to in writing, software ++# distributed under the License is distributed on an "AS IS" BASIS, ++# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. ++# See the License for the specific language governing permissions and ++# limitations under the License. ++# ++[Unit] ++Description=Apache Traffic Server is a fast, scalable and extensible caching proxy server. ++Documentation=man:traffic_server(8) ++After=network-online.target ++ ++[Service] ++Type=simple ++EnvironmentFile=-/etc/default/trafficserver ++PIDFile=/var/run/trafficserver/manager.lock ++ExecStart=/usr/bin/traffic_manager $TM_DAEMON_ARGS ++ExecReload=/usr/bin/traffic_ctl config reload ++ ++[Install] ++WantedBy=multi-user.target diff --cc debian/trafficserver.tmpfile index 00000000,00000000..231e3171 new file mode 100644 --- /dev/null +++ b/debian/trafficserver.tmpfile @@@ -1,0 -1,0 +1,1 @@@ ++d /run/trafficserver 0755 trafficserver trafficserver diff --cc debian/upstream/signing-key.asc index 00000000,00000000..14508773 new file mode 100644 --- /dev/null +++ b/debian/upstream/signing-key.asc @@@ -1,0 -1,0 +1,636 @@@ ++-----BEGIN PGP PUBLIC KEY BLOCK----- ++ ++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 ++=VvDM ++-----END PGP PUBLIC KEY BLOCK----- ++-----BEGIN PGP PUBLIC KEY BLOCK----- ++ ++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 ++yMLkPeLfh5LLCwL80fgxSp7Z+UB1 ++=MC/H ++-----END PGP PUBLIC KEY BLOCK----- ++-----BEGIN PGP PUBLIC KEY BLOCK----- ++ ++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 ++=3xB/ ++-----END PGP PUBLIC KEY BLOCK----- ++-----BEGIN PGP PUBLIC KEY BLOCK----- ++ ++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 ++DOI2xbN2Mhjbj0mkwaQ= ++=CIzB ++-----END PGP PUBLIC KEY BLOCK----- diff --cc debian/watch index 00000000,00000000..b39b7a76 new file mode 100644 --- /dev/null +++ b/debian/watch @@@ -1,0 -1,0 +1,5 @@@ ++version=4 ++opts="pgpsigurlmangle=s/$/.asc/,dversionmangle=s/\+ds\d*$//,repacksuffix=+ds,repack,compression=xz" \ ++ https://www.apache.org/dist/trafficserver \ ++ trafficserver-(\d+\.\d+.\d+)\.tar\.bz2 \ ++ debian uupdate