Package Details: uncrustify-git 0.78.1.r26.g391047527-1

Git Clone URL: https://aur.archlinux.org/uncrustify-git.git (read-only, click to copy)
Package Base: uncrustify-git
Description: A source code beautifier
Upstream URL: http://uncrustify.sourceforge.net/
Licenses: GPL
Conflicts: uncrustify
Provides: uncrustify
Submitter: severach
Maintainer: alex.henrie
Last Packager: alex.henrie
Votes: 0
Popularity: 0.000000
First Submitted: 2015-09-04 00:42 (UTC)
Last Updated: 2023-12-07 02:41 (UTC)

Dependencies (3)

Required by (3)

Sources (1)

Latest Comments

alex.henrie commented on 2022-03-16 21:53 (UTC) (edited on 2022-03-16 21:54 (UTC) by alex.henrie)

This package fails to build now:

Fetching origin
fatal: remote error: 
  The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.
error: could not fetch origin

GitHub no longer supports git:// because it is unencrypted. Please change the package source URL from git:// to git+https:// to resolve the problem.

alex.henrie commented on 2022-03-16 21:50 (UTC)

@p00f The Sourceforge repository hasn't been touched since 2016. All development since then has happened on GitHub.

p00f commented on 2020-03-02 22:20 (UTC)

@TheAifam5 Sourceforge is the official repo. GitHub is the mirror.

theaifam5 commented on 2019-11-24 22:36 (UTC) (edited on 2019-11-24 22:37 (UTC) by theaifam5)

Please change the git to https://github.com/uncrustify/uncrustify

THIS AUR PACKAGE DOES NOT USE OFFICIAL REPOSITORY

Snaipe commented on 2017-04-15 13:23 (UTC) (edited on 2017-04-15 13:23 (UTC) by Snaipe)

Here's a patch to make things work again: http://ix.io/qJX

dbedrenko commented on 2017-02-06 11:26 (UTC)

But it installs the binary to /usr/local/bin/ instead of /usr/bin

dbedrenko commented on 2017-02-06 10:34 (UTC) (edited on 2017-02-06 10:35 (UTC) by dbedrenko)

I get error: ==> Starting prepare()... /tmp/yaourt-tmp-danb/aur-uncrustify-git/./PKGBUILD: line 30: ./autogen.sh: No such file or directory /usr/bin/makepkg: line 729: logpipe: unbound variable Here are the amended functions that worked for me: prepare() { set -u cd "${_srcdir}" mkdir -p build cd build cmake .. set +u } build() { set -u cd "${_srcdir}/build" make -s -j "$(nproc)" set +u } package() { set -u cd "${_srcdir}/build" make DESTDIR="${pkgdir}" install set +u }

Spharx commented on 2016-05-11 19:13 (UTC)

to make it compile add "./autogen.sh" before the "./configure" line inside prepare() in the PKGBUILD