Package Details: cvs-feature 1.12.13-2

Git Clone URL: https://aur.archlinux.org/cvs-feature.git (read-only, click to copy)
Package Base: cvs-feature
Description: Concurrent Versions System - a source control system ("feature" release series, with Debian patches)
Upstream URL: http://cvs.nongnu.org/
Keywords: branch control CVS feature release revision series version
Licenses: GPL
Conflicts: cvs
Provides: cvs
Submitter: felix.s
Maintainer: meatlotion
Last Packager: meatlotion
Votes: 3
Popularity: 0.000000
First Submitted: 2016-06-22 15:38 (UTC)
Last Updated: 2022-04-04 20:40 (UTC)

Dependencies (5)

Required by (26)

Sources (3)

Latest Comments

Andrei_Korshikov commented on 2026-02-04 14:30 (UTC) (edited on 2026-03-24 23:10 (UTC) by Andrei_Korshikov)

(a) 15th diff.gz is not present, the current is https://ftp.debian.org/debian/pool/main/c/cvs/cvs_1.12.13+real-31.diff.gz

(b) GCC 15 -std= default is gnu23 (old default was gnu18), so it complains a lot and can't compile even with https://git.alpinelinux.org/aports/plain/main/cvs/gcc15.patch. See also https://linux.debian.bugs.dist.narkive.com/3UzbCiXJ/bug-1096494-cvs-ftbfs-with-gcc-15

(b)* (edit) I overlooked https://bugs.debian.org/1096494 . It was fixed exactly with release 31 (changes: "Fix building under GCC 15").

(c) license=('GPL-2.0-or-later'), see https://savannah.nongnu.org/projects/cvs

meatlotion commented on 2022-04-04 18:22 (UTC) (edited on 2022-04-04 18:28 (UTC) by meatlotion)

# Maintainer: felix
# Originally based on the cvs package from ABS
# Maintainer: Lukas Fleischer <lfleischer@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>
# Contributor: Dan McGee <dan@archlinux.org>

pkgname=cvs-feature
pkgver=1.12.13
pkgrel=2
pkgdesc="Concurrent Versions System - a source control system (\"feature\" release series, with Debian patches)"
arch=(i686 x86_64)
provides=(cvs)
conflicts=(cvs)
url="http://cvs.nongnu.org/"
license=('GPL')
depends=('krb5' 'zlib' 'libbsd')
optdepends=('openssh: for using cvs over ssh'
            'inetutils: for using cvs over rsh')
source=(
    ftp://ftp.gnu.org/non-gnu/cvs/source/feature/${pkgver}/cvs-${pkgver}.tar.bz2{,.sig}
    http://http.debian.net/debian/pool/main/c/cvs/cvs_1.12.13+real-15+deb8u1.diff.gz
)
sha512sums=(
    '7d10f808de62190b18d4f706d2d03ab218a508bfb52047ff3e830e293ec40c5e8bf6cc743ef72a5c24be5aa867c9e4892d7d475a026a98b296a3764b4bd0f4d8'
    'SKIP'
    'e6a0295624bdee01c3a2cac0f81113d049b82dc51aa67d100263f0e8eb95e2b84e6bc9166025e2ff0429b49862f8f49c1a6e5cb02990e470ea75805d52c1245d'
)
validpgpkeys=('CB6A07CA90C54234E8A3C8D02C3D4E4C17F231A4') # Derek R. Price <moc tod toibmix ta kered>

prepare() {
  cd "${srcdir}/cvs-${pkgver}"
  patch -Np1 < ../cvs_1.12.13+real-15+deb8u1.diff
  sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in
  find . -name Makefile.am | xargs sed -i -e 's/^INCLUDES/AM_CPPFLAGS/'
}

build() {
  cd "${srcdir}/cvs-${pkgver}"
  unset EDITOR VISUAL

  AUTOMAKE='automake --add-missing' autoreconf
  ./configure LIBS="-lbsd" --prefix=/usr \
    --with-editor=/usr/bin/vi \
    --with-external-zlib
  make
}

package() {
  cd "${srcdir}/cvs-${pkgver}"

  make DESTDIR="${pkgdir}" install
  rm "${pkgdir}"/usr/share/info/dir
}

Added +deb8u1 to filename to download and updated the sha512sum to match as .15 without +deb8u1 no longer exists.