From 53619534832ecea2078df71bfa9dc0d666f1309a Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 2 Jan 2018 13:10:17 -0400 Subject: avoid bogus warning Avoid bogus warning about new upstream version when /usr/bin/propellor is run on a Debian system, but ~/.propellor was not cloned from the Debian git bundle. --- debian/changelog | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index f4204e06..8923b94a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +propellor (5.2.1) UNRELEASED; urgency=medium + + * Avoid bogus warning about new upstream version when /usr/bin/propellor + is run on a Debian system, but ~/.propellor was not cloned from the + Debian git bundle. + + -- Joey Hess Tue, 02 Jan 2018 13:06:45 -0400 + propellor (5.2.0) unstable; urgency=medium [ Joey Hess ] -- cgit v1.2.3 From bc6045c8b5333ac5d407e8f4b96bb0d9f50dfa9a Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sat, 6 Jan 2018 14:48:34 -0400 Subject: changes to allow GPT BIOS boot partitions * Parted: Allow partitions to have no filesystem, for eg, GPT BIOS boot partitions. (API change) * Added rawPartition to PartSpec, for specifying partitions with no filesystem. * Added BiosGrubFlag to PartFlag. Note that man parted does not list the "bios_boot" flag, but I found it in its html documentation. Other flags may also be missing. This commit was sponsored by Boyd Stephen Smith Jr. on Patreon. --- debian/changelog | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index 8923b94a..4545bcd1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,13 @@ -propellor (5.2.1) UNRELEASED; urgency=medium +propellor (5.3.0) UNRELEASED; urgency=medium * Avoid bogus warning about new upstream version when /usr/bin/propellor is run on a Debian system, but ~/.propellor was not cloned from the Debian git bundle. + * Parted: Allow partitions to have no filesystem, for eg, GPT BIOS boot + partitions. (API change) + * Added rawPartition to PartSpec, for specifying partitions with no + filesystem. + * Added BiosGrubFlag to PartFlag. -- Joey Hess Tue, 02 Jan 2018 13:06:45 -0400 -- cgit v1.2.3 From b3c795dc4784e64e2756d3736ce953a1e507f509 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 17 Jan 2018 15:13:35 -0400 Subject: Run su with --login To avoid inheriting some problematic environment variables, such as TMP, from the caller. The only potential breakage from this change would be if something used setEnv before one of the affected properties. Audited propellor's source for that, and nothing does. Anything that did would could fail in a concurrent context anyway. --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index 4545bcd1..acfbc895 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ propellor (5.3.0) UNRELEASED; urgency=medium * Added rawPartition to PartSpec, for specifying partitions with no filesystem. * Added BiosGrubFlag to PartFlag. + * Run su with --login, to avoid inheriting some problematic environment + variables, such as TMP, from the caller. -- Joey Hess Tue, 02 Jan 2018 13:06:45 -0400 -- cgit v1.2.3 From a730bbda2b91cf2bac9b63be8647ba322691e57f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 24 Jan 2018 13:32:04 -0400 Subject: Add HasCallStack constraint to pickOS and unsupportedOS, so the call stack includes the caller. This commit was sponsored by Jochen Bartl on Patreon. --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index 4545bcd1..2ffe4f8c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,8 @@ propellor (5.3.0) UNRELEASED; urgency=medium * Added rawPartition to PartSpec, for specifying partitions with no filesystem. * Added BiosGrubFlag to PartFlag. + * Add HasCallStack constraint to pickOS and unsupportedOS, so the + call stack includes the caller. -- Joey Hess Tue, 02 Jan 2018 13:06:45 -0400 -- cgit v1.2.3 From 2ac8353c96326f911768c985f638dabe36991e32 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 1 Feb 2018 11:51:51 -0400 Subject: Grub: Added properties to configure /etc/default/grub. This commit was sponsored by Ewen McNeill on Patreon. --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index acfbc895..7dc8c42a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,7 @@ propellor (5.3.0) UNRELEASED; urgency=medium * Added BiosGrubFlag to PartFlag. * Run su with --login, to avoid inheriting some problematic environment variables, such as TMP, from the caller. + * Grub: Added properties to configure /etc/default/grub. -- Joey Hess Tue, 02 Jan 2018 13:06:45 -0400 -- cgit v1.2.3 From 141cf24148a1258a94f95ba1a6b2265070675d30 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 1 Feb 2018 12:19:09 -0400 Subject: Laptop: New module, starting with powertopAutoTuneOnBoot. This commit was sponsored by Brock Spratlen on Patreon. --- debian/changelog | 1 + 1 file changed, 1 insertion(+) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index 7dc8c42a..23172a22 100644 --- a/debian/changelog +++ b/debian/changelog @@ -11,6 +11,7 @@ propellor (5.3.0) UNRELEASED; urgency=medium * Run su with --login, to avoid inheriting some problematic environment variables, such as TMP, from the caller. * Grub: Added properties to configure /etc/default/grub. + * Laptop: New module, starting with powertopAutoTuneOnBoot. -- Joey Hess Tue, 02 Jan 2018 13:06:45 -0400 -- cgit v1.2.3 From b6000d75626114c7234c67da5f9a665e084923c6 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Thu, 1 Feb 2018 12:28:13 -0400 Subject: releasing package propellor version 5.3.0 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index fcbd3951..b1fb27af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -propellor (5.3.0) UNRELEASED; urgency=medium +propellor (5.3.0) unstable; urgency=medium * Avoid bogus warning about new upstream version when /usr/bin/propellor is run on a Debian system, but ~/.propellor was not cloned from the @@ -15,7 +15,7 @@ propellor (5.3.0) UNRELEASED; urgency=medium * Grub: Added properties to configure /etc/default/grub. * Laptop: New module, starting with powertopAutoTuneOnBoot. - -- Joey Hess Tue, 02 Jan 2018 13:06:45 -0400 + -- Joey Hess Thu, 01 Feb 2018 12:27:01 -0400 propellor (5.2.0) unstable; urgency=medium -- cgit v1.2.3 From ab7a7f421c9b57b5963a44e57a6a4df7c594aca6 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 4 Feb 2018 11:58:42 -0400 Subject: Last release mistakenly contained my personal branch not master. * Last release mistakenly contained my personal branch not master. * contrib/post-merge-hook documentation updated to recommend also using it as a post-checkout hook, to avoid such problems. --- debian/changelog | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index b1fb27af..a0471182 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +propellor (5.3.1) UNRELEASED; urgency=medium + + * Last release mistakenly contained my personal branch not master. + * contrib/post-merge-hook documentation updated to recommend also using + it as a post-checkout hook, to avoid such problems. + + -- Joey Hess Sun, 04 Feb 2018 11:54:28 -0400 + propellor (5.3.0) unstable; urgency=medium * Avoid bogus warning about new upstream version when /usr/bin/propellor -- cgit v1.2.3 From e1fd45067b037876a69a3ef741970105f14afbc8 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Sun, 4 Feb 2018 12:05:14 -0400 Subject: releasing package propellor version 5.3.1 --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'debian/changelog') diff --git a/debian/changelog b/debian/changelog index a0471182..5d032b4c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,10 @@ -propellor (5.3.1) UNRELEASED; urgency=medium +propellor (5.3.1) unstable; urgency=medium * Last release mistakenly contained my personal branch not master. * contrib/post-merge-hook documentation updated to recommend also using it as a post-checkout hook, to avoid such problems. - -- Joey Hess Sun, 04 Feb 2018 11:54:28 -0400 + -- Joey Hess Sun, 04 Feb 2018 12:00:03 -0400 propellor (5.3.0) unstable; urgency=medium -- cgit v1.2.3