--- temporal-1.22.5.orig/debian/changelog +++ temporal-1.22.5/debian/changelog @@ -0,0 +1,30 @@ +temporal (1.22.5-0ubuntu1) jammy; urgency=medium + + * Temporal v1.22.5 + + -- Anton Troyanov Fri, 23 Feb 2024 09:43:00 +0000 + +temporal (1.21.5-1-0ubuntu1) jammy; urgency=medium + + * Temporal v1.21.5 + * Fixed install location + + -- Anton Troyanov Wed, 18 Oct 2023 22:36:00 +0000 + +temporal (1.21.5-0ubuntu1) jammy; urgency=medium + + * Temporal v1.21.5 + + -- Anton Troyanov Fri, 29 Sep 2023 13:32:00 +0000 + +temporal (1.20.3-1-0ubuntu1) jammy; urgency=medium + + * Temporal v1.20.3 with PostgreSQL schemas + + -- Anton Troyanov Fri, 22 Aug 2023 12:00:00 +0000 + +temporal (1.20.3-0ubuntu1) jammy; urgency=medium + + * Initial packaging of Temporal v1.20.3 + + -- Anton Troyanov Fri, 23 Jun 2023 01:54:24 +0000 --- temporal-1.22.5.orig/debian/compat +++ temporal-1.22.5/debian/compat @@ -0,0 +1 @@ +15 --- temporal-1.22.5.orig/debian/control +++ temporal-1.22.5/debian/control @@ -0,0 +1,23 @@ +Source: temporal +Section: net +Priority: optional +Maintainer: MAAS developers +Build-Depends: debhelper (>= 11), + git, + golang-1.20 +Standards-Version: 4.1.3 +Vcs-Browser: https://code.launchpad.net/~maas-committers/maas/+git/temporal-packaging +Vcs-Git: https://git.launchpad.net/~maas-committers/maas/+git/temporal-packaging +Homepage: https://github.com/temporalio/temporal + +Package: temporal +Architecture: any +Depends: ${misc:Depends} +Description: Temporal service + Temporal is a microservice orchestration platform which enables developers + to build scalable applications without sacrificing productivity or reliability. + . + Temporal server executes units of application logic, Workflows, in a resilient + manner that automatically handles intermittent failures, and retries failed + operations. + --- temporal-1.22.5.orig/debian/copyright +++ temporal-1.22.5/debian/copyright @@ -0,0 +1,52 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: temporal +Source: https://github.com/temporalio/temporal + +Files: * +Copyright: (c) 2020 Temporal Technologies Inc. + (c) 2020 Uber Technologies, Inc. +License: MIT + +Files: Makefile +Copyright: (c) 2023, Canonical Ltd +License: Apache-2 + +Files: debian/* +Copyright: (c) 2023, Canonical Ltd +License: Apache-2 + +License: MIT + 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. + +License: Apache-2 + 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-based systems the full text of the Apache version 2.0 license + can be found in `/usr/share/common-licenses/Apache-2.0'. + --- temporal-1.22.5.orig/debian/install +++ temporal-1.22.5/debian/install @@ -0,0 +1,4 @@ +debian/tmp/temporal-server usr/sbin +debian/tmp/temporal-sql-tool usr/bin +debian/tmp/tdbg usr/bin +debian/tmp/schema var/lib/temporal --- temporal-1.22.5.orig/debian/rules +++ temporal-1.22.5/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +BUILDHOME = $(CURDIR)/debian/build + +export PATH:=/usr/lib/go-1.20/bin:$(PATH) + +%: + dh $@ + +override_dh_auto_test: + # do nothing as we don't want the tests to run because they require + # internet access + +override_dh_auto_clean: + dh_auto_clean + rm -rf $(BUILDHOME) + +override_dh_dwz: + # do nothing