Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SABnzbd to 4.2.3 #6061

Merged
merged 1 commit into from
Apr 5, 2024
Merged

Update SABnzbd to 4.2.3 #6061

merged 1 commit into from
Apr 5, 2024

Conversation

Safihre
Copy link
Contributor

@Safihre Safihre commented Apr 3, 2024

Description

Update SABnzbd to 4.2.3.

Simple update. If no remarks I'll merge and publish end of the week.

Checklist

  • Build rule all-supported completed successfully
  • New installation of package completed successfully
  • Package upgrade completed successfully (Manually install the package again)
  • Package functionality was tested
  • Any needed documentation is updated/created

Type of change

  • Bug fix
  • New Package
  • Package update
  • Includes small framework changes
  • This change requires a documentation update (e.g. Wiki)

@Safihre Safihre requested review from hgy59 and th0ma7 April 3, 2024 11:51
@Safihre Safihre merged commit 607ae6b into SynoCommunity:master Apr 5, 2024
17 checks passed
@Safihre
Copy link
Contributor Author

Safihre commented Apr 5, 2024

@hgy59 @th0ma7 I'm a bit confused, the regular build is working fine, however when I trigger a build with publish=true, it fails?
Did I do something wrong?
https://github.com/Safihre/spksrc/actions/runs/8567521662
It looks to me like it didn't even try to build sabnzbd, it jumps straight into trying to publish.

@hgy59
Copy link
Contributor

hgy59 commented Apr 5, 2024

probably it is broken by #6002 (@th0ma7)
I didn't recognize this issue since I never use github to publish packages.

@hgy59
Copy link
Contributor

hgy59 commented Apr 5, 2024

It might be a general issue with github.
See build action errors on the current master (https://github.com/SynoCommunity/spksrc/actions/runs/8566690624)

There are some errors uploading artifacts (Failed to FinalizeArtifact: ...)

@Safihre
Copy link
Contributor Author

Safihre commented Apr 5, 2024

Yeah I saw that, but I think it's different from the publish problem that the build step seems to be skipped.

@th0ma7
Copy link
Contributor

th0ma7 commented Apr 5, 2024

Indeed it may be due to my pr as publishing could not be tested through github. I'll have a look at it over the weekend.

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 5, 2024

It might be a general issue with github. See build action errors on the current master (https://github.com/SynoCommunity/spksrc/actions/runs/8566690624)

There are some errors uploading artifacts (Failed to FinalizeArtifact: ...)

I've re-run the failed jobs on that build and it was successful the second time around. I did see some failed tests but it completed. @Safihre maybe you can re-run the failed jobs in your repo?

@Safihre
Copy link
Contributor Author

Safihre commented Apr 5, 2024

@mreid-tt If you check the logs of my build you can see it completely skips the building of sabnzbd, it jumps straight into publishing. So re-run won't change that.

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

@th0ma7 the error came indeed with #6002

before, a make publish-arch-* included the make arch-* and did the build for the package before publishing it.

With your changes a make publish-arch-* fails now, because the package was not built before.
This is can be shown locally and is not limitted to the github publish action.

You splitted the publish part from spksrc.spk.mk to spksrc.publish.mk, but I can't find parts of the following target of spk.mk in publish.mk:

publish-arch-%: SHELL:=/bin/bash
publish-arch-%: spk_msg
ifneq ($(strip $(REQUIRE_KERNEL_MODULE)),)
	$(MAKE) $(addprefix kernel-modules-, $(or $(filter $(addprefix %, $(DEFAULT_TC)), $(filter %$(word 2,$(subst -, ,$*)), $(filter $(firstword $(subst -, ,$*))%, $(AVAILABLE_TOOLCHAINS)))),$*))
	$(MAKE) REQUIRE_KERNEL_MODULE= REQUIRE_KERNEL= WORK_DIR=$(PWD)/work-$* $(addprefix publish-arch-, $*)
else
	# handle and allow parallel build for:  arch-<arch> | make arch-<arch>-X.Y
	@$(MSG) BUILDING and PUBLISHING package for arch $*
	@MAKEFLAGS= $(PSTAT_TIME) GCC_DEBUG_INFO="$(GCC_DEBUG_INFO)" $(MAKE) ARCH=$(basename $(subst -,.,$(basename $(subst .,,$*)))) TCVERSION=$(if $(findstring $*,$(basename $(subst -,.,$(basename $(subst .,,$*))))),$(DEFAULT_TC),$(notdir $(subst -,/,$*))) publish 2>&1 | tee --append build-$*.log >(grep -e '^http' -e '^{"package":' -e '^{"message":' >> publish-$*.log) ; \
	  [ $${PIPESTATUS[0]} -eq 0 ] || false
endif

since @$(MSG) BUILDING and PUBLISHING package for arch $* is missing in publish.mk, I suggest that this part has been dropped by #6002.

PLEASE fix the *.mk files and do not adjust the github scripts (i.e. please restore the behaviour that make publish-arch-* does a build before publishing).

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

probably it is broken by #6002 (@th0ma7)
I didn't recognize this issue since I never use github to publish packages.

The reason I didn't see this issue locally is because I always build packages before publishing them...

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

This is now fixed with #6064

  • once the cause was identified, the fix was easy-peasy

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

hey @hgy59, thanks for the fix. I can confirm that the package now builds with publish action in GitHub. There is however a new problem with the publish URL as it now seems to be invalid. From my test run, I get the following error now:

(cd /github/workspace/spk/sabnzbd/work-aarch64-7.1 && tar cpf /github/workspace/spk/sabnzbd/../../packages/sabnzbd_aarch64-7.1_4.2.3-69.spk --group=root --owner=root package.tgz INFO scripts conf PACKAGE_ICON.PNG PACKAGE_ICON_256.PNG WIZARD_UIFILES)
make[2]: Leaving directory '/github/workspace/spk/sabnzbd'
===>  PUBLISHING package for arch aarch64-7.1 to http://synocommunity.com/
make[2]: Entering directory '/github/workspace/spk/sabnzbd'

http: error: InvalidURL: Invalid URL u'http:///packages': No host supplied
make[2]: *** [../../mk/spksrc.publish.mk:54: publish] Error 1

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

@mreid-tt that's strange, because locally it works:

===>  PUBLISHING package for arch x64-6.2.4 to http://synocommunity.com
make[2]: Entering directory '/spksrc/spk/synocli-misc'
Package published successfully
{"package": "synocli-misc", "version": "1.1-4444", "firmware": "6.2-25556", "architectures": ["apollolake", "avoton", "braswell", "broadwell", "broadwellnk", "broadwellntbap", "bromolow", "cedarview", "denverton", "dockerx64", "geminilake", "grantley", "purley", "kvmx64", "v1000", "x86", "x86_64"]}
make[2]: Leaving directory '/spksrc/spk/synocli-misc'
make[1]: Leaving directory '/spksrc/spk/synocli-misc'

for the output above, I temp. set revision of synocli-misc to 4444 and run make clean and make publish-arch-x64-6.2.4 in spk/synocli-misc. Finally I deleted to new version in the repo.

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

hey @hgy59, based on this code:

@response=$$(http --verify=no --ignore-stdin --auth $(PUBLISH_API_KEY): POST $(PUBLISH_URL)/packages @$(SPK_FILE_NAME) --print=hb) ; \

It seems that the PUBLISH_URL variable is somehow missing?

Now I can set it in my GitHub variables like the Publish a package from Github wiki but this was not required before.

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

hey @hgy59, looking into this some more, this should have been set in this line:

spksrc/Makefile

Line 192 in 3b21f64

@sed -i -e "s|PUBLISH_URL\s*=.*|PUBLISH_URL = https://api.synocommunity.com|" \

I don't know if it's not being called anymore?

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

hey @hgy59, checking into my build run logs, I see the following which may explain it:

##[group] ---- initialize build
mk/spksrc.common.mk:59: ../../mk/spksrc.archs.mk: No such file or directory
make: *** No rule to make target '../../mk/spksrc.archs.mk'.  Stop.
sed: can't read local.mk: No such file or directory
##[endgroup]

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

There are some more issues in mk/spksrc.publish.mk

  • The @$(MSG) PUBLISHING package for arch $* to http://synocommunity.com | tee --append build-$*.log should display $(PUBLISH_URL) and not http://synocommunity.com
  • the check for valid (non empty) PUBLISH_URL seems to not work as expected.

With this, the empty PUBLISH_URL would at least be reported.

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

Looking into the build log I don't see any of these echo command outputs present:

spksrc/Makefile

Lines 176 to 177 in 3b21f64

local.mk:
@echo "Creating local configuration \"local.mk\"..."

spksrc/Makefile

Lines 187 to 188 in 3b21f64

dsm-%: local.mk
@echo "Setting default toolchain version to DSM-$*"

which suggests that this line isn't being called at all:

spksrc/Makefile

Line 174 in 3b21f64

setup: local.mk dsm-6.2.4 dsm-7.1

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

hey @hgy59, checking into my build run logs, I see the following which may explain it:

##[group] ---- initialize build
mk/spksrc.common.mk:59: ../../mk/spksrc.archs.mk: No such file or directory
make: *** No rule to make target '../../mk/spksrc.archs.mk'.  Stop.
sed: can't read local.mk: No such file or directory
##[endgroup]

Yes, this is an issue. when make setup-synocommunity the PUBLISH_URL` does not get the default value.

locally I can successfully call make setup-synocommunity in the spksrc folder.
probably it is an issue in the github runner environment where the directory structure may be different (i.e. ../../mk is not valid).

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

Looking into the build log I don't see any of these echo command outputs present:

This is because local.mk is not generated when make setup-synocommunity fails.

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

Even I cannot reproduce the error `` locally, I guess that it is caused by:

# Include framework self-test
include mk/spksrc.test-rules.mk

mk/spksrc.test-rules.mk is the only *.mk file that includes include mk/spksrc.common.mk
all other *.mk files that include common.mk use different path include ../../mk/spksrc.common.mk.

so far none of the *.mk files was designed to be included from a Makefile in the /spksrc folder.

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

@mreid-tt can you do another test with my #6065?

Hopefully the error in ---- initialize build is gone with this (and the default PUBLISH_URL should be applied).

@th0ma7
Copy link
Contributor

th0ma7 commented Apr 6, 2024

Just woke-up (and to catch-up), ...and sorry for all the troubles my PR provided. At first glance I doubt the spksrc.test-rules.mk is the culprit. I'll have a look in parallel on my end.

EDIT: I can't reproduce the error above on neither my LXC or docker environment... weird...

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

@mreid-tt can you do another test with my #6065?

As this is for building using GitHub, running a test would not change the result unless this is merged.

Just woke-up (and to catch-up), ...and sorry for all the troubles my PR provided. At first glance I doubt the spksrc.test-rules.mk is the culprit. I'll have a look in parallel on my end.

hey @th0ma7, no worries. Do take a look at the proposed fix from @hgy59 and work from there. I'll await your findings.

@th0ma7
Copy link
Contributor

th0ma7 commented Apr 6, 2024

I may have found the culprit:

# Set basedir in case called from spkrc/ or from normal sub-dir
ifeq ($(BASEDIR),)
ifneq ($(shell basename $(CURDIR)),spksrc)
BASEDIR = ../../
endif
endif

Whereas using github-action I believe the spksrc repository sits under /github/workspace such as:

"/github/file_commands" -v "/home/runner/work/spksrc/spksrc":"/github/workspace"

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

Whereas using github-action I believe the spksrc repository sits under /github/workspace such as:

oos, I did a local test with /github/spksrc so is passed 😆

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

@th0ma7 I can confirm that the error occures when building in /github/workspace

root@analyze_build:/github/workdir# make setup
mk/spksrc.common.mk:59: ../../mk/spksrc.archs.mk: No such file or directory
make: *** No rule to make target '../../mk/spksrc.archs.mk'.  Stop.

but the same command succeeds on #6065 (when include mk/spksrc.test-rules.mk is removed in global Makefile).

@hgy59
Copy link
Contributor

hgy59 commented Apr 6, 2024

Since the tests are global, we should either add all test targets in the global Makefile and not include any file from mk/ folder.
Or we create a dedicated Makefile (like Makefile.test) to implement the global tests.

as I mentioned above, the mk/*.mk files are not desigend to be included from a file not placed two directory levels below the work folder.

@th0ma7
Copy link
Contributor

th0ma7 commented Apr 6, 2024

From my findings I created a PR #6066 with a simple fix. I believe it's ok for merging so another attempt for publishing can be done. It shouldn't cause any issue, with hope this actually solves it.

@th0ma7
Copy link
Contributor

th0ma7 commented Apr 6, 2024

Since the tests are global, we should either add all test targets in the global Makefile and not include any file from mk/ folder. Or we create a dedicated Makefile (like Makefile.test) to implement the global tests.

@hgy59 the reason I took the liberty to include them from there is that common.mk and arch.mk are relatively self contained and provide all the necessary bits to make the testing infrastructure to work. It also avoid changing all other makefiles or duplicating the same functionality (which was one of the key highlight of that PR in the first place).

as I mentioned above, the mk/*.mk files are not desigend to be included from a file not placed two directory levels below the work folder.

Indeed, whereas the BASEDIR fixes that, only where needed (although it could be used more globally but I don't see any reasons to do so).

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

I've done a new build action with the latest changes to the spksrc and the publish actions were successful.

@Safihre, I've not activated the builds in the admin interface so you can review and/or do final tests before publishing.

@th0ma7
Copy link
Contributor

th0ma7 commented Apr 6, 2024

Thnx everyone for the fixing and testing!

@mreid-tt
Copy link
Contributor

mreid-tt commented Apr 6, 2024

@Safihre, just as an FYI, I did a manual install on my DS916+ and the installation was successful. See log below:

Log file
2024/04/06 13:56:58	upgrade sabnzbd 4.2.2-68 Begin start-stop-status stop
2024/04/06 13:56:59	upgrade sabnzbd 4.2.2-68 End start-stop-status stop ret=[0]
2024/04/06 13:57:02	upgrade sabnzbd 4.2.2-68 Begin preupgrade
2024/04/06 13:57:02	SHARE_PATH from share [/volume1/downloads], variable [wizard_shared_folder_name=downloads]
2024/04/06 13:57:02	Begin initialize_variables
2024/04/06 13:57:02	Shared folder configured with SHARE_NAME [downloads] and SHARE_PATH [/volume1/downloads]
2024/04/06 13:57:02	End initialize_variables
2024/04/06 13:57:02	===> Step preupgrade. STATUS=UPGRADE USER=sabnzbd GROUP= SHARE_PATH=/volume1/downloads
2024/04/06 13:57:03	upgrade sabnzbd 4.2.2-68 End preupgrade ret=[0]
2024/04/06 13:57:03	upgrade sabnzbd 4.2.2-68 Begin preuninst
2024/04/06 13:57:03	SHARE_PATH from share [/volume1/downloads], variable [wizard_shared_folder_name=downloads]
2024/04/06 13:57:03	Begin initialize_variables
2024/04/06 13:57:03	Shared folder configured with SHARE_NAME [downloads] and SHARE_PATH [/volume1/downloads]
2024/04/06 13:57:03	End initialize_variables
2024/04/06 13:57:03	===> Step preuninst. STATUS=UPGRADE USER=sabnzbd GROUP= SHARE_PATH=/volume1/downloads
2024/04/06 13:57:03	upgrade sabnzbd 4.2.2-68 End preuninst ret=[0]
2024/04/06 13:57:05	upgrade sabnzbd 4.2.2-68 Begin /bin/rm -rf /volume1/@appstore/sabnzbd
2024/04/06 13:57:15	upgrade sabnzbd 4.2.2-68 End /bin/rm -rf /volume1/@appstore/sabnzbd ret=[0]
2024/04/06 13:57:15	upgrade sabnzbd 4.2.2-68 Begin /bin/rm -rf /volume1/@apptemp/sabnzbd
2024/04/06 13:57:15	upgrade sabnzbd 4.2.2-68 End /bin/rm -rf /volume1/@apptemp/sabnzbd ret=[0]
2024/04/06 13:57:16	upgrade sabnzbd 4.2.2-68 Begin postuninst
2024/04/06 13:57:16	SHARE_PATH from share [/volume1/downloads], variable [wizard_shared_folder_name=downloads]
2024/04/06 13:57:16	Begin initialize_variables
2024/04/06 13:57:16	Shared folder configured with SHARE_NAME [downloads] and SHARE_PATH [/volume1/downloads]
2024/04/06 13:57:16	End initialize_variables
2024/04/06 13:57:16	===> Step postuninst. STATUS=UPGRADE USER=sabnzbd GROUP= SHARE_PATH=/volume1/downloads
2024/04/06 13:57:16	upgrade sabnzbd 4.2.2-68 End postuninst ret=[0]
2024/04/06 13:57:19	upgrade sabnzbd 4.2.3-69 Begin preinst
2024/04/06 13:57:19	SHARE_PATH from share [], variable [wizard_shared_folder_name=downloads]
2024/04/06 13:57:19	Begin initialize_variables
2024/04/06 13:57:19	End initialize_variables
2024/04/06 13:57:19	===> Step preinst. STATUS=UPGRADE USER=sabnzbd GROUP= SHARE_PATH=
2024/04/06 13:57:19	upgrade sabnzbd 4.2.3-69 End preinst ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/mkdir -p /volume1/@appstore/sabnzbd -m 755
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/mkdir -p /volume1/@appstore/sabnzbd -m 755 ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/rm -rf /volume1/@appstore/sabnzbd
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/rm -rf /volume1/@appstore/sabnzbd ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/package /volume1/@appstore/sabnzbd
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/package /volume1/@appstore/sabnzbd ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/rm -rf /var/packages/sabnzbd
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/rm -rf /var/packages/sabnzbd ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/mkdir -p /var/packages/sabnzbd -m 755
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/mkdir -p /var/packages/sabnzbd -m 755 ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/touch /var/packages/sabnzbd/installing
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/touch /var/packages/sabnzbd/installing ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/INFO /var/packages/sabnzbd/INFO
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/INFO /var/packages/sabnzbd/INFO ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/rm -rf /var/packages/sabnzbd/scripts
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/rm -rf /var/packages/sabnzbd/scripts ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/scripts /var/packages/sabnzbd/scripts
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/scripts /var/packages/sabnzbd/scripts ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/rm -rf /var/packages/sabnzbd/WIZARD_UIFILES
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/rm -rf /var/packages/sabnzbd/WIZARD_UIFILES ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/WIZARD_UIFILES /var/packages/sabnzbd/WIZARD_UIFILES
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/WIZARD_UIFILES /var/packages/sabnzbd/WIZARD_UIFILES ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/rm -rf /var/packages/sabnzbd/conf
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/rm -rf /var/packages/sabnzbd/conf ret=[0]
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 Begin /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/conf /var/packages/sabnzbd/conf
2024/04/06 13:57:22	upgrade sabnzbd 4.2.3-69 End /bin/mv -f /volume1/@tmp/synopkg/install.lE8rZT/conf /var/packages/sabnzbd/conf ret=[0]
2024/04/06 13:57:37	upgrade sabnzbd 4.2.3-69 Begin postinst
2024/04/06 13:57:37	SHARE_PATH from share [/volume1/downloads], variable [wizard_shared_folder_name=downloads]
2024/04/06 13:57:37	Begin initialize_variables
2024/04/06 13:57:37	Shared folder configured with SHARE_NAME [downloads] and SHARE_PATH [/volume1/downloads]
2024/04/06 13:57:38	End initialize_variables
2024/04/06 13:57:38	===> Step postinst. STATUS=UPGRADE USER=sabnzbd GROUP= SHARE_PATH=/volume1/downloads
2024/04/06 13:57:38	Begin save_wizard_variables
2024/04/06 13:57:38	End save_wizard_variables
2024/04/06 13:57:38	Begin syno_sync_var_folder
2024/04/06 13:57:38	Install files from var folder
2024/04/06 13:57:38	/bin/rsync -avh --ignore-existing --remove-source-files /volume1/@appstore/sabnzbd/var/ /volume1/@appdata/sabnzbd
2024/04/06 13:57:38	sending incremental file list
2024/04/06 13:57:38	./
2024/04/06 13:57:38	scripts/
2024/04/06 13:57:38	sent 146 bytes  received 23 bytes  338.00 bytes/sec
2024/04/06 13:57:38	total size is 5.13K  speedup is 30.34
2024/04/06 13:57:38	/bin/rsync -avh --remove-source-files /volume1/@appstore/sabnzbd/var/ /volume1/@appdata/sabnzbd
2024/04/06 13:57:38	sending incremental file list
2024/04/06 13:57:38	./
2024/04/06 13:57:38	config.ini.new
2024/04/06 13:57:38	scripts/
2024/04/06 13:57:38	scripts/SabToSyno.py.new
2024/04/06 13:57:38	sent 5.39K bytes  received 85 bytes  10.95K bytes/sec
2024/04/06 13:57:38	total size is 5.13K  speedup is 0.94
2024/04/06 13:57:38	End syno_sync_var_folder
2024/04/06 13:57:38	Begin service_postinst
2024/04/06 13:57:39	Python 3.11.5
2024/04/06 13:57:57	Default pip version 23.2.1
2024/04/06 13:58:47	Install packages from wheels
2024/04/06 13:58:47	Install packages from wheels [/volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt]
2024/04/06 13:58:49	Looking in links: /volume1/@appstore/sabnzbd/share/wheelhouse
2024/04/06 13:58:50	Processing /volume1/@appstore/sabnzbd/share/wheelhouse/Cheetah3-3.2.6-cp311-cp311-linux_x86_64.whl (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 1))
2024/04/06 13:58:51	Collecting PySocks==1.7.1 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 2))
2024/04/06 13:58:51	  Obtaining dependency information for PySocks==1.7.1 from https://files.pythonhosted.org/packages/8d/59/b4572118e098ac8e46e399a1dd0f2d85403ce8bbaad9ec79373ed6badaf9/PySocks-1.7.1-py3-none-any.whl.metadata
2024/04/06 13:58:52	  Downloading PySocks-1.7.1-py3-none-any.whl.metadata (13 kB)
2024/04/06 13:58:53	Collecting babelfish==0.6.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 3))
2024/04/06 13:58:53	  Obtaining dependency information for babelfish==0.6.0 from https://files.pythonhosted.org/packages/ce/2c/f7951f771261da6740af14fd9698064616aa040780cd8a03243fc43165c7/babelfish-0.6.0-py3-none-any.whl.metadata
2024/04/06 13:58:53	  Downloading babelfish-0.6.0-py3-none-any.whl.metadata (2.9 kB)
2024/04/06 13:58:56	Collecting cffi==1.16.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 4))
2024/04/06 13:58:56	  Obtaining dependency information for cffi==1.16.0 from https://files.pythonhosted.org/packages/9b/89/a31c81e36bbb793581d8bba4406a8aac4ba84b2559301c44eef81f4cf5df/cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata
2024/04/06 13:58:56	  Using cached cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (1.5 kB)
2024/04/06 13:58:57	Collecting chardet==5.2.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 5))
2024/04/06 13:58:57	  Obtaining dependency information for chardet==5.2.0 from https://files.pythonhosted.org/packages/38/6f/f5fbc992a329ee4e0f288c1fe0e2ad9485ed064cac731ed2fe47dcc38cbf/chardet-5.2.0-py3-none-any.whl.metadata
2024/04/06 13:58:58	  Using cached chardet-5.2.0-py3-none-any.whl.metadata (3.4 kB)
2024/04/06 13:58:59	Collecting cheroot==10.0.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 6))
2024/04/06 13:58:59	  Obtaining dependency information for cheroot==10.0.0 from https://files.pythonhosted.org/packages/81/52/ca26d1964531e823961f761026138189f630aaf49fb959c8ab6e1262dc74/cheroot-10.0.0-py3-none-any.whl.metadata
2024/04/06 13:58:59	  Using cached cheroot-10.0.0-py3-none-any.whl.metadata (6.4 kB)
2024/04/06 13:59:00	Collecting cherrypy==18.9.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 7))
2024/04/06 13:59:00	  Obtaining dependency information for cherrypy==18.9.0 from https://files.pythonhosted.org/packages/db/7d/b03f8f44b5748119828ca628cf51d915704e1c4428f6f9caa5089b25fe60/CherryPy-18.9.0-py3-none-any.whl.metadata
2024/04/06 13:59:00	  Using cached CherryPy-18.9.0-py3-none-any.whl.metadata (8.8 kB)
2024/04/06 13:59:01	Collecting configobj==5.0.8 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 8))
2024/04/06 13:59:01	  Obtaining dependency information for configobj==5.0.8 from https://files.pythonhosted.org/packages/d3/bb/d10e531b297dd1d46f6b1fd11d018247af9f2d460037554bb7bb9011c6ac/configobj-5.0.8-py2.py3-none-any.whl.metadata
2024/04/06 13:59:01	  Downloading configobj-5.0.8-py2.py3-none-any.whl.metadata (3.4 kB)
2024/04/06 13:59:05	Collecting cryptography==41.0.3 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 9))
2024/04/06 13:59:05	  Obtaining dependency information for cryptography==41.0.3 from https://files.pythonhosted.org/packages/46/74/f9eba8c947f57991b5dd5e45797fdc68cc70e444c32e6b952b512d42aba5/cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl.metadata
2024/04/06 13:59:05	  Using cached cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl.metadata (5.2 kB)
2024/04/06 13:59:06	Collecting feedparser==6.0.11 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 10))
2024/04/06 13:59:06	  Obtaining dependency information for feedparser==6.0.11 from https://files.pythonhosted.org/packages/7c/d4/8c31aad9cc18f451c49f7f9cfb5799dadffc88177f7917bc90a66459b1d7/feedparser-6.0.11-py3-none-any.whl.metadata
2024/04/06 13:59:06	  Using cached feedparser-6.0.11-py3-none-any.whl.metadata (2.4 kB)
2024/04/06 13:59:07	Collecting guessit==3.8.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 11))
2024/04/06 13:59:07	  Obtaining dependency information for guessit==3.8.0 from https://files.pythonhosted.org/packages/b8/9b/924a8f9709c3143d4c9a301a88042cbce37e09789378217284b19d4f8132/guessit-3.8.0-py3-none-any.whl.metadata
2024/04/06 13:59:07	  Using cached guessit-3.8.0-py3-none-any.whl.metadata (140 kB)
2024/04/06 13:59:08	Collecting jaraco.classes==3.3.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 12))
2024/04/06 13:59:08	  Obtaining dependency information for jaraco.classes==3.3.0 from https://files.pythonhosted.org/packages/c7/6b/1bc8fa93ea85146e08f0e0883bc579b7c7328364ed7df90b1628dcb36e10/jaraco.classes-3.3.0-py3-none-any.whl.metadata
2024/04/06 13:59:08	  Using cached jaraco.classes-3.3.0-py3-none-any.whl.metadata (2.9 kB)
2024/04/06 13:59:08	Collecting jaraco.collections==5.0.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 13))
2024/04/06 13:59:08	  Obtaining dependency information for jaraco.collections==5.0.0 from https://files.pythonhosted.org/packages/8e/96/dbce4a58263b1bae1a99e24a13ab19cd6f0c8f2a85e9e3b8da29a01f8649/jaraco.collections-5.0.0-py3-none-any.whl.metadata
2024/04/06 13:59:08	  Using cached jaraco.collections-5.0.0-py3-none-any.whl.metadata (4.1 kB)
2024/04/06 13:59:09	Collecting jaraco.context==4.3.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 14))
2024/04/06 13:59:09	  Obtaining dependency information for jaraco.context==4.3.0 from https://files.pythonhosted.org/packages/0a/de/3f889cd55e69f0a91b396f6799ca31ea0d6869cde338e7c79335699090cb/jaraco.context-4.3.0-py3-none-any.whl.metadata
2024/04/06 13:59:09	  Downloading jaraco.context-4.3.0-py3-none-any.whl.metadata (3.0 kB)
2024/04/06 13:59:10	Collecting jaraco.functools==4.0.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 15))
2024/04/06 13:59:10	  Obtaining dependency information for jaraco.functools==4.0.0 from https://files.pythonhosted.org/packages/4c/57/726a9c80c1b36f98b497debd72f4c81ae444d55abf9647367e5d53e1cc93/jaraco.functools-4.0.0-py3-none-any.whl.metadata
2024/04/06 13:59:10	  Using cached jaraco.functools-4.0.0-py3-none-any.whl.metadata (3.1 kB)
2024/04/06 13:59:11	Collecting jaraco.text==3.8.1 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 16))
2024/04/06 13:59:11	  Obtaining dependency information for jaraco.text==3.8.1 from https://files.pythonhosted.org/packages/01/11/97c34c287f801dc551c714eaff4274117e57a4201ca94c81d55e2fbf67b1/jaraco.text-3.8.1-py3-none-any.whl.metadata
2024/04/06 13:59:11	  Downloading jaraco.text-3.8.1-py3-none-any.whl.metadata (3.6 kB)
2024/04/06 13:59:13	Collecting more-itertools==10.2.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 17))
2024/04/06 13:59:13	  Obtaining dependency information for more-itertools==10.2.0 from https://files.pythonhosted.org/packages/50/e2/8e10e465ee3987bb7c9ab69efb91d867d93959095f4807db102d07995d94/more_itertools-10.2.0-py3-none-any.whl.metadata
2024/04/06 13:59:13	  Using cached more_itertools-10.2.0-py3-none-any.whl.metadata (34 kB)
2024/04/06 13:59:16	Collecting orjson==3.9.10 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 18))
2024/04/06 13:59:16	  Obtaining dependency information for orjson==3.9.10 from https://files.pythonhosted.org/packages/5a/23/42d1db93fd31ee9fea79c448ddb511fa574f6f281d3bdfa9e2c7d943296a/orjson-3.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata
2024/04/06 13:59:16	  Using cached orjson-3.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (49 kB)
2024/04/06 13:59:18	Collecting portend==3.2.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 19))
2024/04/06 13:59:18	  Obtaining dependency information for portend==3.2.0 from https://files.pythonhosted.org/packages/a3/c5/7041b39bcad182a37ec6ea92e7e478a460db6277c542e6d417e34246bdac/portend-3.2.0-py3-none-any.whl.metadata
2024/04/06 13:59:18	  Using cached portend-3.2.0-py3-none-any.whl.metadata (3.6 kB)
2024/04/06 13:59:19	Collecting puremagic==1.15 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 20))
2024/04/06 13:59:19	  Obtaining dependency information for puremagic==1.15 from https://files.pythonhosted.org/packages/de/b6/8c4d331d55d8a6cbdaadcd3830baec7e2216c2c0fe7e6c8f4cdbe737dd52/puremagic-1.15-py3-none-any.whl.metadata
2024/04/06 13:59:19	  Downloading puremagic-1.15-py3-none-any.whl.metadata (5.5 kB)
2024/04/06 13:59:21	Collecting python-dateutil==2.8.2 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 21))
2024/04/06 13:59:21	  Obtaining dependency information for python-dateutil==2.8.2 from https://files.pythonhosted.org/packages/36/7a/87837f39d0296e723bb9b62bbb257d0355c7f6128853c78955f57342a56d/python_dateutil-2.8.2-py2.py3-none-any.whl.metadata
2024/04/06 13:59:21	  Downloading python_dateutil-2.8.2-py2.py3-none-any.whl.metadata (8.2 kB)
2024/04/06 13:59:22	Collecting pytz==2023.3.post1 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 22))
2024/04/06 13:59:22	  Obtaining dependency information for pytz==2023.3.post1 from https://files.pythonhosted.org/packages/32/4d/aaf7eff5deb402fd9a24a1449a8119f00d74ae9c2efa79f8ef9994261fc2/pytz-2023.3.post1-py2.py3-none-any.whl.metadata
2024/04/06 13:59:22	  Using cached pytz-2023.3.post1-py2.py3-none-any.whl.metadata (22 kB)
2024/04/06 13:59:23	Collecting rebulk==3.2.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 23))
2024/04/06 13:59:23	  Obtaining dependency information for rebulk==3.2.0 from https://files.pythonhosted.org/packages/84/4d/df073d593f7e7e4a5a7e19148b2e9b4ae63b4ddcbb863f1e7bb2b6f19c62/rebulk-3.2.0-py3-none-any.whl.metadata
2024/04/06 13:59:24	  Downloading rebulk-3.2.0-py3-none-any.whl.metadata (22 kB)
2024/04/06 13:59:26	Collecting sabctools==8.1.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 24))
2024/04/06 13:59:26	  Obtaining dependency information for sabctools==8.1.0 from https://files.pythonhosted.org/packages/0c/49/f50506508f90022f8d1a458417e0fdbe798cfb86c0bbeeda5240be516d87/sabctools-8.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata
2024/04/06 13:59:26	  Using cached sabctools-8.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.metadata (3.1 kB)
2024/04/06 13:59:26	Collecting sgmllib3k==1.0.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 25))
2024/04/06 13:59:26	  Using cached sgmllib3k-1.0.0-py3-none-any.whl
2024/04/06 13:59:27	Collecting tempora==5.5.0 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 26))
2024/04/06 13:59:27	  Obtaining dependency information for tempora==5.5.0 from https://files.pythonhosted.org/packages/3f/8c/db20cbcd6c8bcd06fe6a893fbb437e68e9962542f77ea273cb47109347e8/tempora-5.5.0-py3-none-any.whl.metadata
2024/04/06 13:59:27	  Using cached tempora-5.5.0-py3-none-any.whl.metadata (3.5 kB)
2024/04/06 13:59:28	Collecting zc.lockfile==3.0.post1 (from -r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 27))
2024/04/06 13:59:28	  Obtaining dependency information for zc.lockfile==3.0.post1 from https://files.pythonhosted.org/packages/a7/aa/47f00f32605177a945f3a1b36a1b2bb9a39260566541280fcee27cbff5cf/zc.lockfile-3.0.post1-py3-none-any.whl.metadata
2024/04/06 13:59:28	  Downloading zc.lockfile-3.0.post1-py3-none-any.whl.metadata (6.2 kB)
2024/04/06 13:59:30	Collecting pycparser (from cffi==1.16.0->-r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 4))
2024/04/06 13:59:30	  Obtaining dependency information for pycparser from https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl.metadata
2024/04/06 13:59:30	  Downloading pycparser-2.22-py3-none-any.whl.metadata (943 bytes)
2024/04/06 13:59:33	Collecting six (from configobj==5.0.8->-r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 8))
2024/04/06 13:59:33	  Obtaining dependency information for six from https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl.metadata
2024/04/06 13:59:33	  Downloading six-1.16.0-py2.py3-none-any.whl.metadata (1.8 kB)
2024/04/06 13:59:37	Collecting setuptools (from zc.lockfile==3.0.post1->-r /volume1/@appstore/sabnzbd/share/wheelhouse/requirements.txt (line 27))
2024/04/06 13:59:37	  Obtaining dependency information for setuptools from https://files.pythonhosted.org/packages/92/e1/1c8bb3420105e70bdf357d57dd5567202b4ef8d27f810e98bb962d950834/setuptools-69.2.0-py3-none-any.whl.metadata
2024/04/06 13:59:37	  Downloading setuptools-69.2.0-py3-none-any.whl.metadata (6.3 kB)
2024/04/06 13:59:38	Using cached PySocks-1.7.1-py3-none-any.whl (16 kB)
2024/04/06 13:59:38	Using cached babelfish-0.6.0-py3-none-any.whl (93 kB)
2024/04/06 13:59:38	Using cached cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464 kB)
2024/04/06 13:59:38	Using cached chardet-5.2.0-py3-none-any.whl (199 kB)
2024/04/06 13:59:39	Using cached cheroot-10.0.0-py3-none-any.whl (101 kB)
2024/04/06 13:59:39	Using cached CherryPy-18.9.0-py3-none-any.whl (348 kB)
2024/04/06 13:59:39	Using cached configobj-5.0.8-py2.py3-none-any.whl (36 kB)
2024/04/06 13:59:39	Using cached cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl (4.3 MB)
2024/04/06 13:59:39	Using cached feedparser-6.0.11-py3-none-any.whl (81 kB)
2024/04/06 13:59:39	Using cached guessit-3.8.0-py3-none-any.whl (206 kB)
2024/04/06 13:59:39	Using cached jaraco.classes-3.3.0-py3-none-any.whl (5.9 kB)
2024/04/06 13:59:39	Using cached jaraco.collections-5.0.0-py3-none-any.whl (10 kB)
2024/04/06 13:59:39	Using cached jaraco.context-4.3.0-py3-none-any.whl (5.3 kB)
2024/04/06 13:59:40	Using cached jaraco.functools-4.0.0-py3-none-any.whl (9.8 kB)
2024/04/06 13:59:40	Using cached jaraco.text-3.8.1-py3-none-any.whl (10 kB)
2024/04/06 13:59:40	Using cached more_itertools-10.2.0-py3-none-any.whl (57 kB)
2024/04/06 13:59:40	Using cached orjson-3.9.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (138 kB)
2024/04/06 13:59:40	Using cached portend-3.2.0-py3-none-any.whl (5.3 kB)
2024/04/06 13:59:40	Using cached puremagic-1.15-py3-none-any.whl (32 kB)
2024/04/06 13:59:40	Using cached python_dateutil-2.8.2-py2.py3-none-any.whl (247 kB)
2024/04/06 13:59:40	Using cached pytz-2023.3.post1-py2.py3-none-any.whl (502 kB)
2024/04/06 13:59:40	Using cached rebulk-3.2.0-py3-none-any.whl (56 kB)
2024/04/06 13:59:40	Using cached sabctools-8.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (565 kB)
2024/04/06 13:59:40	Using cached tempora-5.5.0-py3-none-any.whl (13 kB)
2024/04/06 13:59:40	Using cached zc.lockfile-3.0.post1-py3-none-any.whl (9.8 kB)
2024/04/06 13:59:40	Using cached six-1.16.0-py2.py3-none-any.whl (11 kB)
2024/04/06 13:59:40	Downloading pycparser-2.22-py3-none-any.whl (117 kB)
2024/04/06 13:59:41	   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 117.6/117.6 kB 106.1 kB/s eta 0:00:00
2024/04/06 13:59:41	Downloading setuptools-69.2.0-py3-none-any.whl (821 kB)
2024/04/06 13:59:42	   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 821.5/821.5 kB 1.9 MB/s eta 0:00:00
2024/04/06 13:59:44	Installing collected packages: sgmllib3k, sabctools, rebulk, pytz, puremagic, six, setuptools, PySocks, pycparser, orjson, more-itertools, jaraco.context, feedparser, Cheetah3, chardet, babelfish, zc.lockfile, python-dateutil, jaraco.functools, jaraco.classes, configobj, cffi, tempora, jaraco.text, guessit, cryptography, cheroot, portend, jaraco.collections, cherrypy
2024/04/06 13:59:48	  Attempting uninstall: six
2024/04/06 13:59:48	    Found existing installation: six 1.16.0
2024/04/06 13:59:48	    Not uninstalling six at /volume1/@appstore/python311/lib/python3.11/site-packages, outside environment /volume1/@appstore/sabnzbd/env
2024/04/06 13:59:48	    Can't uninstall 'six'. No files were found to uninstall.
2024/04/06 13:59:48	  Attempting uninstall: setuptools
2024/04/06 13:59:48	    Found existing installation: setuptools 65.5.0
2024/04/06 13:59:49	    Uninstalling setuptools-65.5.0:
2024/04/06 13:59:49	      Successfully uninstalled setuptools-65.5.0
2024/04/06 14:00:27	Successfully installed Cheetah3-3.2.6 PySocks-1.7.1 babelfish-0.6.0 cffi-1.16.0 chardet-5.2.0 cheroot-10.0.0 cherrypy-18.9.0 configobj-5.0.8 cryptography-41.0.3 feedparser-6.0.11 guessit-3.8.0 jaraco.classes-3.3.0 jaraco.collections-5.0.0 jaraco.context-4.3.0 jaraco.functools-4.0.0 jaraco.text-3.8.1 more-itertools-10.2.0 orjson-3.9.10 portend-3.2.0 puremagic-1.15 pycparser-2.22 python-dateutil-2.8.2 pytz-2023.3.post1 rebulk-3.2.0 sabctools-8.1.0 setuptools-69.2.0 sgmllib3k-1.0.0 six-1.16.0 tempora-5.5.0 zc.lockfile-3.0.post1
2024/04/06 14:00:28	Installed modules:
2024/04/06 14:00:30	babelfish==0.6.0
2024/04/06 14:00:30	certifi==2023.7.22
2024/04/06 14:00:30	cffi==1.16.0
2024/04/06 14:00:30	chardet==5.2.0
2024/04/06 14:00:30	Cheetah3==3.2.6
2024/04/06 14:00:30	cheroot==10.0.0
2024/04/06 14:00:30	CherryPy==18.9.0
2024/04/06 14:00:30	configobj==5.0.8
2024/04/06 14:00:30	cryptography==41.0.3
2024/04/06 14:00:30	distlib==0.3.7
2024/04/06 14:00:30	feedparser==6.0.11
2024/04/06 14:00:30	filelock==3.12.3
2024/04/06 14:00:30	guessit==3.8.0
2024/04/06 14:00:30	jaraco.classes==3.3.0
2024/04/06 14:00:30	jaraco.collections==5.0.0
2024/04/06 14:00:30	jaraco.context==4.3.0
2024/04/06 14:00:30	jaraco.functools==4.0.0
2024/04/06 14:00:30	jaraco.text==3.8.1
2024/04/06 14:00:30	more-itertools==10.2.0
2024/04/06 14:00:30	orjson==3.9.10
2024/04/06 14:00:30	platformdirs==3.10.0
2024/04/06 14:00:30	portend==3.2.0
2024/04/06 14:00:30	puremagic==1.15
2024/04/06 14:00:30	pycparser==2.22
2024/04/06 14:00:30	PySocks==1.7.1
2024/04/06 14:00:30	python-dateutil==2.8.2
2024/04/06 14:00:30	pytz==2023.3.post1
2024/04/06 14:00:30	rebulk==3.2.0
2024/04/06 14:00:30	sabctools==8.1.0
2024/04/06 14:00:30	sgmllib3k==1.0.0
2024/04/06 14:00:30	six==1.16.0
2024/04/06 14:00:30	tempora==5.5.0
2024/04/06 14:00:30	virtualenv==20.24.4
2024/04/06 14:00:30	zc.lockfile==3.0.post1
2024/04/06 14:00:30	End service_postinst
2024/04/06 14:00:30	upgrade sabnzbd 4.2.3-69 End postinst ret=[0]
2024/04/06 14:00:30	upgrade sabnzbd 4.2.3-69 Begin postupgrade
2024/04/06 14:00:30	SHARE_PATH from share [/volume1/downloads], variable [wizard_shared_folder_name=downloads]
2024/04/06 14:00:30	Begin initialize_variables
2024/04/06 14:00:30	Shared folder configured with SHARE_NAME [downloads] and SHARE_PATH [/volume1/downloads]
2024/04/06 14:00:30	End initialize_variables
2024/04/06 14:00:30	===> Step postupgrade. STATUS=UPGRADE USER=sabnzbd GROUP= SHARE_PATH=/volume1/downloads
2024/04/06 14:00:30	Begin syno_sync_var_folder
2024/04/06 14:00:30	End syno_sync_var_folder
2024/04/06 14:00:30	upgrade sabnzbd 4.2.3-69 End postupgrade ret=[0]
2024/04/06 14:00:32	upgrade sabnzbd 4.2.3-69 Begin start-stop-status start
2024/04/06 14:00:41	upgrade sabnzbd 4.2.3-69 End start-stop-status start ret=[0]

@Safihre
Copy link
Contributor Author

Safihre commented Apr 6, 2024

Feel free to publish :) I'm away from computer for a few days and the building part didn't change, so I'm sure it's good!

@mreid-tt mreid-tt added the status/published Published and activated (may take up to 48h until visible in DSM package manager) label Apr 6, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status/published Published and activated (may take up to 48h until visible in DSM package manager)
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants