diff -Nru erlang-p1-yaml-1.0.32/CHANGELOG.md erlang-p1-yaml-1.0.33/CHANGELOG.md --- erlang-p1-yaml-1.0.32/CHANGELOG.md 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/CHANGELOG.md 2022-05-02 10:19:45.000000000 +0000 @@ -1,3 +1,9 @@ +# Version 1.0.33 + +* Updating p1_utils to version 1.0.25. +* Fix order in which dependencies are started +* Fix document generation in hex packages + # Version 1.0.32 * Updating p1_utils to version 1.0.23. diff -Nru erlang-p1-yaml-1.0.32/c_src/fast_yaml.c erlang-p1-yaml-1.0.33/c_src/fast_yaml.c --- erlang-p1-yaml-1.0.32/c_src/fast_yaml.c 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/c_src/fast_yaml.c 2022-05-02 10:19:45.000000000 +0000 @@ -1,5 +1,5 @@ /* - * Copyright (C) 2002-2021 ProcessOne, SARL. All Rights Reserved. + * Copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff -Nru erlang-p1-yaml-1.0.32/debian/changelog erlang-p1-yaml-1.0.33/debian/changelog --- erlang-p1-yaml-1.0.32/debian/changelog 2021-12-20 18:39:33.000000000 +0000 +++ erlang-p1-yaml-1.0.33/debian/changelog 2022-06-02 10:48:06.000000000 +0000 @@ -1,3 +1,12 @@ +erlang-p1-yaml (1.0.33-1) unstable; urgency=medium + + * New upstream version 1.0.33 + * Updated Standards-Version: 4.6.1 (no changes needed) + * Updated Erlang dependencies + * Updated years in debian/copyright + + -- Philipp Huebner Thu, 02 Jun 2022 12:48:06 +0200 + erlang-p1-yaml (1.0.32-2) unstable; urgency=medium * Updated debian/watch diff -Nru erlang-p1-yaml-1.0.32/debian/control erlang-p1-yaml-1.0.33/debian/control --- erlang-p1-yaml-1.0.32/debian/control 2021-12-20 18:39:33.000000000 +0000 +++ erlang-p1-yaml-1.0.33/debian/control 2022-06-02 10:48:06.000000000 +0000 @@ -5,13 +5,13 @@ Priority: optional Rules-Requires-Root: no Build-Depends: debhelper-compat (= 13), - dh-rebar, - erlang-base (>= 1:19.2), + dh-rebar (>= 0.0.6), + erlang-base, erlang-eunit, - erlang-p1-utils (>= 1.0.23), + erlang-p1-utils (>= 1.0.25), erlang-syntax-tools, libyaml-dev -Standards-Version: 4.6.0 +Standards-Version: 4.6.1 Vcs-Browser: https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-yaml Vcs-Git: https://salsa.debian.org/ejabberd-packaging-team/erlang-p1-yaml.git Homepage: https://github.com/processone/fast_yaml @@ -20,9 +20,9 @@ Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, - erlang-base (>= 1:19.2) | ${erlang-abi:Depends}, + erlang-base, ${erlang-abi:Depends}, ${erlang:Depends}, - erlang-p1-utils (>= 1.0.23) + erlang-p1-utils (>= 1.0.25) Multi-Arch: allowed Description: erlang wrapper for libyaml C library This library was written for ejabberd which still uses it. diff -Nru erlang-p1-yaml-1.0.32/debian/copyright erlang-p1-yaml-1.0.33/debian/copyright --- erlang-p1-yaml-1.0.32/debian/copyright 2021-12-20 18:39:33.000000000 +0000 +++ erlang-p1-yaml-1.0.33/debian/copyright 2022-06-02 10:48:06.000000000 +0000 @@ -3,9 +3,9 @@ Source: https://github.com/processone/fast_yaml Files: * -Copyright: 2013-2021 ProcessOne - 2013-2021 Evgeniy Khramtsov - 2015-2021 Mickael Remond +Copyright: 2013-2022 ProcessOne + 2013-2022 Evgeniy Khramtsov + 2015-2022 Mickael Remond 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. @@ -30,7 +30,7 @@ gives unlimited permission to copy, distribute and modify it. Files: debian/* -Copyright: 2014-2021 Philipp Huebner +Copyright: 2014-2022 Philipp Huebner License: GPL-2+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru erlang-p1-yaml-1.0.32/debian/patches/remove-deps.diff erlang-p1-yaml-1.0.33/debian/patches/remove-deps.diff --- erlang-p1-yaml-1.0.32/debian/patches/remove-deps.diff 2021-12-20 18:39:33.000000000 +0000 +++ erlang-p1-yaml-1.0.33/debian/patches/remove-deps.diff 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -Description: remove deps in rebar.config - Without this patch, rebar would download and compile the listed deps - at compile time. -Author: Philipp Huebner - -Index: erlang-p1-yaml/rebar.config -=================================================================== ---- erlang-p1-yaml.orig/rebar.config -+++ erlang-p1-yaml/rebar.config -@@ -25,7 +25,6 @@ - {"CFLAGS", "$CFLAGS"}, {"LDFLAGS", "$LDFLAGS -lyaml"}]}. - {port_specs, [{"priv/lib/fast_yaml.so", ["c_src/fast_yaml.c"]}]}. - --{deps, [{p1_utils, ".*", {git, "https://github.com/processone/p1_utils", {tag, "1.0.23"}}}]}. - - {clean_files, ["c_src/fast_yaml.gcda", "c_src/fast_yaml.gcno"]}. - diff -Nru erlang-p1-yaml-1.0.32/debian/patches/series erlang-p1-yaml-1.0.33/debian/patches/series --- erlang-p1-yaml-1.0.32/debian/patches/series 2021-12-20 18:39:33.000000000 +0000 +++ erlang-p1-yaml-1.0.33/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -remove-deps.diff diff -Nru erlang-p1-yaml-1.0.32/rebar.config erlang-p1-yaml-1.0.33/rebar.config --- erlang-p1-yaml-1.0.32/rebar.config 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/rebar.config 2022-05-02 10:19:45.000000000 +0000 @@ -4,7 +4,7 @@ %%% Purpose : Rebar build script. Compliant with rebar and rebar3. %%% Created : 11 Dec 2015 by Mickael Remond %%% -%%% Copyright (C) 2002-2021 ProcessOne, SARL. All Rights Reserved. +%%% Copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved. %%% %%% Licensed under the Apache License, Version 2.0 (the "License"); %%% you may not use this file except in compliance with the License. @@ -25,7 +25,7 @@ {"CFLAGS", "$CFLAGS"}, {"LDFLAGS", "$LDFLAGS -lyaml"}]}. {port_specs, [{"priv/lib/fast_yaml.so", ["c_src/fast_yaml.c"]}]}. -{deps, [{p1_utils, ".*", {git, "https://github.com/processone/p1_utils", {tag, "1.0.23"}}}]}. +{deps, [{p1_utils, ".*", {git, "https://github.com/processone/p1_utils", {tag, "1.0.25"}}}]}. {clean_files, ["c_src/fast_yaml.gcda", "c_src/fast_yaml.gcno"]}. diff -Nru erlang-p1-yaml-1.0.32/rebar.config.script erlang-p1-yaml-1.0.33/rebar.config.script --- erlang-p1-yaml-1.0.32/rebar.config.script 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/rebar.config.script 2022-05-02 10:19:45.000000000 +0000 @@ -4,7 +4,7 @@ %%% Purpose : Rebar build script. Compliant with rebar and rebar3. %%% Created : 11 Dec 2015 by Mickael Remond %%% -%%% Copyright (C) 2002-2021 ProcessOne, SARL. All Rights Reserved. +%%% Copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved. %%% %%% Licensed under the Apache License, Version 2.0 (the "License"); %%% you may not use this file except in compliance with the License. diff -Nru erlang-p1-yaml-1.0.32/rebar.lock erlang-p1-yaml-1.0.33/rebar.lock --- erlang-p1-yaml-1.0.32/rebar.lock 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/rebar.lock 2022-05-02 10:19:45.000000000 +0000 @@ -1,6 +1,8 @@ -{"1.1.0", -[{<<"p1_utils">>,{pkg,<<"p1_utils">>,<<"1.0.17">>},0}]}. +{"1.2.0", +[{<<"p1_utils">>,{pkg,<<"p1_utils">>,<<"1.0.23">>},0}]}. [ {pkg_hash,[ - {<<"p1_utils">>, <<"563449D130B7D37426DCAD38815944356B2716713A70E16ABB82E3410EDC2C72">>}]} + {<<"p1_utils">>, <<"7F94466ADA69BD982EA7BB80FBCA18E7053E7D0B82C9D9E37621FA508587069B">>}]}, +{pkg_hash_ext,[ + {<<"p1_utils">>, <<"47F21618694EEEE5006AF1C88731AD86B757161E7823C29B6F73921B571C8502">>}]} ]. diff -Nru erlang-p1-yaml-1.0.32/src/fast_yaml_app.erl erlang-p1-yaml-1.0.33/src/fast_yaml_app.erl --- erlang-p1-yaml-1.0.32/src/fast_yaml_app.erl 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/src/fast_yaml_app.erl 2022-05-02 10:19:45.000000000 +0000 @@ -5,7 +5,7 @@ %%% Created : 7 Aug 2013 by Evgeniy Khramtsov %%% %%% -%%% Copyright (C) 2002-2021 ProcessOne, SARL. All Rights Reserved. +%%% Copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved. %%% %%% Licensed under the Apache License, Version 2.0 (the "License"); %%% you may not use this file except in compliance with the License. diff -Nru erlang-p1-yaml-1.0.32/src/fast_yaml.app.src erlang-p1-yaml-1.0.33/src/fast_yaml.app.src --- erlang-p1-yaml-1.0.32/src/fast_yaml.app.src 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/src/fast_yaml.app.src 2022-05-02 10:19:45.000000000 +0000 @@ -5,7 +5,7 @@ %%% Created : 4 Apr 2013 by Evgeniy Khramtsov %%% %%% -%%% Copyright (C) 2002-2021 ProcessOne, SARL. All Rights Reserved. +%%% Copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved. %%% %%% Licensed under the Apache License, Version 2.0 (the "License"); %%% you may not use this file except in compliance with the License. @@ -23,10 +23,10 @@ {application, fast_yaml, [{description, "Fast YAML native library for Erlang / Elixir"}, - {vsn, "1.0.32"}, + {vsn, "1.0.33"}, {modules, []}, {registered, []}, - {applications, [p1_utils, kernel, stdlib]}, + {applications, [kernel, stdlib, p1_utils]}, {mod, {fast_yaml_app,[]}}, %% hex.pm packaging: diff -Nru erlang-p1-yaml-1.0.32/src/fast_yaml.erl erlang-p1-yaml-1.0.33/src/fast_yaml.erl --- erlang-p1-yaml-1.0.32/src/fast_yaml.erl 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/src/fast_yaml.erl 2022-05-02 10:19:45.000000000 +0000 @@ -5,7 +5,7 @@ %%% Created : 7 Aug 2013 by Evgeniy Khramtsov %%% %%% -%%% Copyright (C) 2002-2021 ProcessOne, SARL. All Rights Reserved. +%%% Copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved. %%% %%% Licensed under the Apache License, Version 2.0 (the "License"); %%% you may not use this file except in compliance with the License. diff -Nru erlang-p1-yaml-1.0.32/src/fast_yaml_sup.erl erlang-p1-yaml-1.0.33/src/fast_yaml_sup.erl --- erlang-p1-yaml-1.0.32/src/fast_yaml_sup.erl 2021-07-21 09:08:36.000000000 +0000 +++ erlang-p1-yaml-1.0.33/src/fast_yaml_sup.erl 2022-05-02 10:19:45.000000000 +0000 @@ -5,7 +5,7 @@ %%% Created : 7 Aug 2013 by Evgeniy Khramtsov %%% %%% -%%% Copyright (C) 2002-2021 ProcessOne, SARL. All Rights Reserved. +%%% Copyright (C) 2002-2022 ProcessOne, SARL. All Rights Reserved. %%% %%% Licensed under the Apache License, Version 2.0 (the "License"); %%% you may not use this file except in compliance with the License.