<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/utils/gptfdisk, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git-03.infra.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/'/>
<updated>2024-04-13T21:03:21Z</updated>
<entry>
<title>gptfdisk: update to 1.0.10</title>
<updated>2024-04-13T21:03:21Z</updated>
<author>
<name>krant</name>
</author>
<published>2024-04-11T19:27:13Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=ad6344d0455038e374f57a7fb15d3d1ace8d889b'/>
<id>urn:sha1:ad6344d0455038e374f57a7fb15d3d1ace8d889b</id>
<content type='text'>
- Delete upstreamed patch

Signed-off-by: krant &lt;aleksey.vasilenko@gmail.com&gt;
</content>
</entry>
<entry>
<title>gptfdisk: fix incorrect TARGET on non-linux host</title>
<updated>2023-08-09T21:54:45Z</updated>
<author>
<name>Georgi Valkov</name>
</author>
<published>2023-08-08T07:27:26Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=94315cfaa896756bcd8e088d3dc609b6232beb23'/>
<id>urn:sha1:94315cfaa896756bcd8e088d3dc609b6232beb23</id>
<content type='text'>
Fixed by defining TARGET=linux, as suggested in the README.

By default TARGET is derived from the host using uname -s,
which produces build errors on a non-linux hosts:

TARGET is not set; trying to determine target based on host OS....
Detected OS is Darwin
Build target is macos
...
x86_64-openwrt-linux-musl-g++: error: unrecognized command-line option '-arch'

Helped-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
Signed-off-by: Georgi Valkov &lt;gvalkov@gmail.com&gt;
</content>
</entry>
<entry>
<title>Revert "gptfdisk: fix some warnings treated as errors"</title>
<updated>2023-05-17T05:16:02Z</updated>
<author>
<name>Tianling Shen</name>
</author>
<published>2023-05-17T02:27:37Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=e44c45fd23688166ca42d3b14acfb1ac52f0bb86'/>
<id>urn:sha1:e44c45fd23688166ca42d3b14acfb1ac52f0bb86</id>
<content type='text'>
The bug was fixed in 1.0.9, so remove this hack.

This reverts commit 5899a16f4ba70689055f7276e84aa96adce14373.

Signed-off-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
</content>
</entry>
<entry>
<title>gptfdisk: Update to 1.0.9</title>
<updated>2023-05-17T05:16:02Z</updated>
<author>
<name>Tianling Shen</name>
</author>
<published>2023-05-17T02:22:20Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=fa2dce3b5b166f44ae71e808aa31d37807775299'/>
<id>urn:sha1:fa2dce3b5b166f44ae71e808aa31d37807775299</id>
<content type='text'>
Backported an upstream commit to fix build with musl 1.2.4.

Signed-off-by: Tianling Shen &lt;cnsztl@immortalwrt.org&gt;
</content>
</entry>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: refactor to use PKG_BUILD_FLAGS:=lto</title>
<updated>2023-04-08T06:38:54Z</updated>
<author>
<name>Andre Heider</name>
</author>
<published>2023-03-23T08:27:01Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=e7d9c865036d7bc2ac30604e8573f25ae601aed1'/>
<id>urn:sha1:e7d9c865036d7bc2ac30604e8573f25ae601aed1</id>
<content type='text'>
See commit 07730ff3 "treewide: add support for "lto" in PKG_BUILD_FLAGS"
on the main repository.

Note: Some packages only added `-flto` to CFLAGS and not LDFLAGS. This
fixes it and properly enables LTO.

Signed-off-by: Andre Heider &lt;a.heider@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: refactor to use PKG_BUILD_FLAGS:=gc-sections</title>
<updated>2023-04-08T06:38:54Z</updated>
<author>
<name>Andre Heider</name>
</author>
<published>2023-03-23T08:09:13Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=35f4ef76e0c88b690ec55f26aed072c4c5989eff'/>
<id>urn:sha1:35f4ef76e0c88b690ec55f26aed072c4c5989eff</id>
<content type='text'>
See commit da370098 "treewide: add support for "gc-sections" in
PKG_BUILD_FLAGS" on the main repository.

Note: This only touches packages which use all three parts
(-ffunction-sections, -fdata-sections and -Wl,--gc-sections) enabled by
this build flag. Some packages only use a subset, and these are left
unchanged for now.

Signed-off-by: Andre Heider &lt;a.heider@gmail.com&gt;
</content>
</entry>
<entry>
<title>gptfdisk: fix some warnings treated as errors</title>
<updated>2022-03-04T07:13:34Z</updated>
<author>
<name>Oskari Rauta</name>
</author>
<published>2022-03-04T08:11:01Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=5899a16f4ba70689055f7276e84aa96adce14373'/>
<id>urn:sha1:5899a16f4ba70689055f7276e84aa96adce14373</id>
<content type='text'>
fixes error: format not a string literal and no format arguments [-Werror=format-security] during compile

Signed-off-by: Oskari Rauta &lt;oskari.rauta@gmail.com&gt;
</content>
</entry>
<entry>
<title>gptfdisk: remove myself from maintainer</title>
<updated>2021-12-18T07:02:27Z</updated>
<author>
<name>Alif M. Ahmad</name>
</author>
<published>2021-12-18T06:53:22Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=9d1bbd7949f1fb76c3f651d11fcdf97fab57478f'/>
<id>urn:sha1:9d1bbd7949f1fb76c3f651d11fcdf97fab57478f</id>
<content type='text'>
Returning package maintainership to OpenWrt developers.
Feel free to adopt this package.

Signed-off-by: Alif M. Ahmad &lt;alive4ever@live.com&gt;
</content>
</entry>
<entry>
<title>gptfdisk: update to 1.0.8</title>
<updated>2021-07-21T07:12:03Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-07-21T03:43:32Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/feed/packages/commit/?id=00da88bc70bde48ea9b4deeda021f347b2019c72'/>
<id>urn:sha1:00da88bc70bde48ea9b4deeda021f347b2019c72</id>
<content type='text'>
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
</feed>
