Package Details: xgcom-git 0.4.2.r7.g78adb81-1

Git Clone URL: https://aur.archlinux.org/xgcom-git.git (read-only, click to copy)
Package Base: xgcom-git
Description: A gui tools to help guys develop series port, like minicom.
Upstream URL: https://github.com/helight/xgcom
Keywords: com minicom xgcom
Licenses: GPL2
Conflicts: xgcom
Provides: xgcom
Submitter: taotieren
Maintainer: taotieren
Last Packager: taotieren
Votes: 0
Popularity: 0.000000
First Submitted: 2021-08-24 11:43 (UTC)
Last Updated: 2023-08-30 16:29 (UTC)

Required by (0)

Sources (1)

Latest Comments

dreieck commented on 2023-08-30 21:29 (UTC)

Please do not add me as co-maintainer without asking.

taotieren commented on 2023-08-30 16:01 (UTC)

Follow the Arch Linux packaging rules provides=(xgcom) without adding version information. Other issues have been fixed.

dreieck commented on 2023-08-30 14:01 (UTC)

VTE dependency is not correctly met by vte3:

configure: error: Package requirements (gtk+-2.0 >= 2.0.0 vte >= 0.11) were not met:

Package 'vte', required by 'virtual:world', not found

Regards!

dreieck commented on 2023-08-30 13:56 (UTC)

Please re-upload with a recent run of a proper pkgver() -- versioning needs to change to

  • strip off leading v,
  • instead of 1.0.0, we are at 0.4.2.

Please add provides=("xgcom=${pkgver}").

A proper pkgver() could be:

pkgver() {
    cd "${srcdir}/${pkgname%-git}"

    _ver="$(git describe  --tags | sed 's|^[vV]||' | sed 's|-g[0-9a-fA-F]*$||' | tr '-' '+')"
    _rev="$(git rev-list --count HEAD)"
    _date="$(git log -1 --date=format:"%Y%m%d" --format="%ad")"
    _hash="$(git rev-parse --short HEAD)"

    if [ -z "${_ver}" ]; then
      error "Version could not be determined."
      return 1
    else
      printf '%s' "${_ver}.r${_rev}.${_date}.${_hash}"
    fi
}

dreieck commented on 2023-08-30 13:50 (UTC)

Download fails:

fatal: unable to access 'https://hub.fastgit.org/helight/xgcom.git/': SSL certificate problem: certificate has expired

... Can you change the source to github.com, please?

Regards!