Package Details: devc 1.0.1-1

Git Clone URL: https://aur.archlinux.org/devc.git (read-only, click to copy)
Package Base: devc
Description: A CLI tool to manage your devcontainers
Upstream URL: https://github.com/nikaro/devc
Keywords: devcontainer
Licenses: GPL3
Conflicts: devc, devc-bin, devc-git
Provides: devc
Submitter: nka
Maintainer: nka
Last Packager: nka
Votes: 1
Popularity: 0.000000
First Submitted: 2020-01-30 11:50 (UTC)
Last Updated: 2022-12-24 19:16 (UTC)

Latest Comments

maximaman commented on 2021-11-29 19:29 (UTC)

Unfortunately, the package build was still failing, so I fixed some issues with directory names and managed to build the package successfully after that. I also bumped the version to 1.0.0.alpha.4. Here is the diff of my changes:

diff --git a/.SRCINFO b/.SRCINFO
index 2ad0766..9d0360c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
 pkgbase = devc
    pkgdesc = A CLI tool to manage your devcontainers
-   pkgver = 1.0.0.alpha.3
-   pkgrel = 2
+   pkgver = 1.0.0.alpha.4
+   pkgrel = 1
    url = https://github.com/nikaro/devc
    arch = x86_64
    license = GPL3
@@ -11,7 +11,7 @@ pkgbase = devc
    optdepends = docker-compose
    provides = devc
    conflicts = devc
-   source = devc-v1.0.0.alpha.3.tar.gz::https://github.com/nikaro/devc/archive/refs/tags/v1.0.0-alpha.3.tar.gz
-   sha256sums = 7f486bb847157eeea799ff5581e6f0dd0078d540745c1f10911ba79ff7880fff
+   source = devc-1.0.0-alpha.4.tar.gz::https://github.com/nikaro/devc/archive/refs/tags/v1.0.0-alpha.4.tar.gz
+   sha256sums = 16e4ab7d9b4f445892745905a32d3b8f50b909b3a95f0c0af81c4e5e40e08b81

 pkgname = devc
diff --git a/PKGBUILD b/PKGBUILD
index 3f20fa0..4cdd2cd 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,9 @@
 # Maintainer: Nicolas KAROLAK <nicolas at karolak dot fr>

 pkgname=devc
-_pkgver=1.0.0-alpha.3
+_pkgver=1.0.0-alpha.4
 pkgver=${_pkgver//-/.}
-pkgrel=2
+pkgrel=1
 pkgdesc="A CLI tool to manage your devcontainers"
 arch=('x86_64')
 url="https://github.com/nikaro/devc"
@@ -17,15 +17,15 @@ makedepends=(
 provides=('devc')
 conflicts=('devc')

-source=("$pkgname-v$pkgver.tar.gz::https://github.com/nikaro/$pkgname/archive/refs/tags/v$_pkgver.tar.gz")
-sha256sums=("7f486bb847157eeea799ff5581e6f0dd0078d540745c1f10911ba79ff7880fff")
+source=("$pkgname-$_pkgver.tar.gz::https://github.com/nikaro/$pkgname/archive/refs/tags/v$_pkgver.tar.gz")
+sha256sums=("16e4ab7d9b4f445892745905a32d3b8f50b909b3a95f0c0af81c4e5e40e08b81")

 build() {
-   cd "$pkgname-v$_pkgver"
+   cd "$srcdir/$pkgname-$_pkgver"
    make
 }

 package() {
-   cd "$pkgname-v$_pkgver"
+   cd "$srcdir/$pkgname-$_pkgver"
    make DESTDIR="$pkgdir" PREFIX="/usr" install
 }

maximaman commented on 2021-11-29 19:14 (UTC)

@nka thank you very much; I saw that you fixed the source file URL. However, the upstream URL still needs to be updated in the SRCINFO file (which is not that big of a problem, I guess).

nka commented on 2021-11-29 19:09 (UTC)

@maximaman it should be done.

maximaman commented on 2021-11-29 18:50 (UTC)

This package still uses the old upstream URL (which currently returns 404). Please update it to the new one.