<feed xmlns='http://www.w3.org/2005/Atom'>
<title>busybox-w32/coreutils, branch wget-post-file</title>
<subtitle>A mirror of https://github.com/rmyorston/busybox-w32.git
</subtitle>
<id>https://git.lua4.win/busybox-w32/atom?h=wget-post-file</id>
<link rel='self' href='https://git.lua4.win/busybox-w32/atom?h=wget-post-file'/>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/'/>
<updated>2021-09-21T14:19:18+00:00</updated>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2021-09-21T14:19:18+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2021-09-21T14:19:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=90b3ba992ecb39e32e5a66b2e37579becc56d286'/>
<id>urn:sha1:90b3ba992ecb39e32e5a66b2e37579becc56d286</id>
<content type='text'>
</content>
</entry>
<entry>
<title>libbb: clarify what bb_mode_string() generates</title>
<updated>2021-09-17T15:10:38+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2021-09-17T15:10:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=6279aec03d4677424408a515a57aa83664b81311'/>
<id>urn:sha1:6279aec03d4677424408a515a57aa83664b81311</id>
<content type='text'>
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2021-09-17T10:38:52+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2021-09-17T10:36:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=46299d0c4f4c9a4bbad38bbbe26f196e1bccdc52'/>
<id>urn:sha1:46299d0c4f4c9a4bbad38bbbe26f196e1bccdc52</id>
<content type='text'>
Disable FEATURE_TIMEZONE for now.
</content>
</entry>
<entry>
<title>libbb: eliminate a static data array in bb_mode_string()</title>
<updated>2021-09-16T23:18:31+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2021-09-16T23:13:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=59ac467dc6429a48522ef7fbe40fcd819563e49a'/>
<id>urn:sha1:59ac467dc6429a48522ef7fbe40fcd819563e49a</id>
<content type='text'>
function                                             old     new   delta
print_stat                                           861     869      +8
header_verbose_list_ar                                73      77      +4
display_single                                       975     979      +4
header_verbose_list                                  237     239      +2
bb_mode_string                                       124     115      -9
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 4/1 up/down: 18/-9)               Total: 9 bytes
   text	   data	    bss	    dec	    hex	filename
1043136	    559	   5052	1048747	 1000ab	busybox_old
1043153	    559	   5020	1048732	 10009c	busybox_unstripped

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>chmod: correctly report changed modes</title>
<updated>2021-09-16T22:39:21+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2021-09-15T23:53:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=2df4e0a3707ff3b70398177e9e001070e47ca9c5'/>
<id>urn:sha1:2df4e0a3707ff3b70398177e9e001070e47ca9c5</id>
<content type='text'>
Chmod used to incorrectly report as changed even files for which the
mode did not change. This was caused by extra bits in the st_mode, that
were not present when parsed from passed argument in the form of octal
number.

Patch by Wolf &lt;wolf@wolfsden.cz&gt;.

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>date,touch: allow timezone offsets in dates</title>
<updated>2021-09-16T22:11:30+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2021-09-16T09:26:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=9fe1548bbfde548d54acaab113656a56ea0ccc72'/>
<id>urn:sha1:9fe1548bbfde548d54acaab113656a56ea0ccc72</id>
<content type='text'>
Allow ISO 8601 style dates to include a timezone offset.  Like
the '@' format these dates aren't relative to the user's current
timezone and shouldn't be subject to DST adjustment.

- The implementation uses the strptime() '%z' format specifier.
  This an extension which may not be available so the use of
  timezones is a configuration option.

- The 'touch' applet has been updated to respect whether DST
  adjustment is required, matching 'date'.

function                                             old     new   delta
parse_datestr                                        624     730    +106
static.fmt_str                                       106     136     +30
touch_main                                           388     392      +4
date_main                                            818     819      +1
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 4/0 up/down: 141/0)             Total: 141 bytes

Signed-off-by: Ron Yorston &lt;rmy@pobox.com&gt;
Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>df: "support" -H as an alias of -h</title>
<updated>2021-09-10T22:47:03+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2021-09-10T22:47:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=9346ea9550887ee81de4df3731f8d4ff533f4aed'/>
<id>urn:sha1:9346ea9550887ee81de4df3731f8d4ff533f4aed</id>
<content type='text'>
function                                             old     new   delta
df_main                                             1065    1068      +3
.rodata                                           104232  104233      +1
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 2/0 up/down: 4/0)                 Total: 4 bytes

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'busybox' into merge</title>
<updated>2021-09-10T13:47:27+00:00</updated>
<author>
<name>Ron Yorston</name>
<email>rmy@pobox.com</email>
</author>
<published>2021-09-10T13:47:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=3eb1d088e09db204f456ad7b76eced21e429f001'/>
<id>urn:sha1:3eb1d088e09db204f456ad7b76eced21e429f001</id>
<content type='text'>
</content>
</entry>
<entry>
<title>basename: implement -a and -s SUFFIX</title>
<updated>2021-09-09T21:45:13+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2021-09-09T21:45:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=0599e0f87bcaa4b9f91652fa53bc29a3bdacfa13'/>
<id>urn:sha1:0599e0f87bcaa4b9f91652fa53bc29a3bdacfa13</id>
<content type='text'>
function                                             old     new   delta
basename_main                                        145     207     +62
packed_usage                                       33914   33950     +36
.rodata                                           104241  104250      +9
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 3/0 up/down: 107/0)             Total: 107 bytes

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
<entry>
<title>shuf: add a TODO, code shrink</title>
<updated>2021-09-07T20:51:42+00:00</updated>
<author>
<name>Denys Vlasenko</name>
<email>vda.linux@googlemail.com</email>
</author>
<published>2021-09-07T20:51:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.lua4.win/busybox-w32/commit/?id=6a9b3f7acfaa7365515f1eb70427d5ddd687c162'/>
<id>urn:sha1:6a9b3f7acfaa7365515f1eb70427d5ddd687c162</id>
<content type='text'>
function                                             old     new   delta
shuf_main                                            501     500      -1

Signed-off-by: Denys Vlasenko &lt;vda.linux@googlemail.com&gt;
</content>
</entry>
</feed>
