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

fix(tenacity-git): upd pacscript to new version #6732

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Xdavius
Copy link
Contributor

@Xdavius Xdavius commented Dec 7, 2024

No description provided.

@github-actions github-actions bot added the Update Pacscript Updates to the pacscript itself label Dec 7, 2024
@Xdavius
Copy link
Contributor Author

Xdavius commented Dec 7, 2024

PR OK for me, Testing fail but it's fine like this.

Copy link
Member

@Elsie19 Elsie19 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This isn't what "fix" is for.

@Xdavius
Copy link
Contributor Author

Xdavius commented Dec 8, 2024

This isn't what "fix" is for.

I don't understand.

The script was broken. I have fixed it.
The build process wasn't good. Was not working on new ubuntu versions.

I also incremented the version to fit the new revision.

Maybe need a better title ?

Sorry, really I don't understand what you want :)

@Elsie19
Copy link
Member

Elsie19 commented Dec 11, 2024

Any package update can include fixes and don't have to be labeled as a fix. So you should change the title to an upd one.

incompatible=("ubuntu:bionic" "ubuntu:focal" "ubuntu:jammy" "debian:stretch" "debian:buster" "debian:bullseye")
replaces=("audacity")
maintainer=("echometerain <[email protected]>" "xdavius <[email protected]>")

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

for i in *; do # fix for png icons not following hicolor category folders
cd "${i}"
mkdir -p apps
test -f tenacity.png && mv tenacity.png apps
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
test -f tenacity.png && mv tenacity.png apps
[[ -f tenacity.png ]] && mv tenacity.png apps

-Wno-dev \
..
cmake --build .
make -j"$(NCPU)" .
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
make -j"$(NCPU)" .
make -j"${NCPU}" .

cmake --install build
cd tenacity/build
make DESTDIR="${pkgdir}" install
test -f "${pkgdir}/usr/tenacity" && rm "${pkgdir}/usr/tenacity" # remove unused launch script
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
test -f "${pkgdir}/usr/tenacity" && rm "${pkgdir}/usr/tenacity" # remove unused launch script
[[ -f "${pkgdir}/usr/tenacity" ]] && rm "${pkgdir}/usr/tenacity" # remove unused launch script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Update Pacscript Updates to the pacscript itself
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants