Nick Brown
Nick Brown
Ah, no 'apt' in opensuse, that's a real shame. I see a very old 'apt' package lingering at https://build.opensuse.org/project/show/system:packagemanager but factory doesn't appear to have it anymore. 😢
A work around for this using [`dcmd`](https://manpages.debian.org/buster/devscripts/dcmd.1.en.html) would be: ``` shell DEBTAR=$(dcmd -r --debtar "$DSC") cloudsmith push deb ${REPO}/any-distro/any-version "$DSC" --sources-file=$(dcmd --orig "$DSC") ${DEBTAR:+--changes-file="${DEBTAR}"} ``` However having `cloudsmith push deb...`...
Another reason it would also be useful if `cloudsmith push` could parse the `.dsc` and upload all the files listed as part of the 'debian source package` is that debian...
Workaround, that includes warning/errors for unsupported cases now looks like: ``` bash $ cat cloudsmith_upload_debian_source_package.sh #!/bin/bash UPLOAD_TARGET=$1 DSC=$2 OTHER_ARGS=("${@:3}") # Determine source file to upload SOURCES=$(dcmd --orig "$DSC") for SOURCE...
What would be even more amazing would be if CloudSmith were to implement the web endpoints needed to use the common native Debian `dput` tool for uploading packages (in a...
Might this be related to #1592 ?
> thanks for this! Do you think we can add a test (to: tests\resources\test_issue.py) where perhaps we > > 1. add the value (perhaps to the label field) > 2....
The UT failures look unrelated to the changes in the PR.
The changes in #5648 to address the update BBC Sound website reported in #5646 are perhaps not as robust the method used on the previous BBC website, as it appears...
This is something we'd be happy to working on adding to the code. The addition of a pcre_match() match function, along with the libprce2 dependency, could be made conditional at...