1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
Description: <Adjust README.md to describe Debian packaging
This patch replaces the upstream README.md with Debian-specific packaging
instructions, including build and autopkgtest steps
Forwarded: not-needed
Author: Spaarsh Thakkar <spaarshthakkar11010@gmail.com>
Last-Update: 2025-05-23
--- hipblas-common-6.4.0.orig/README.md
+++ hipblas-common-6.4.0/README.md
@@ -1,21 +1,30 @@
-# hipBLAS-common
-Common files shared by hipBLAS and hipBLASLt
+# hipBLAS-common (Debian Packaging)
-## Build Instructions
+This repository contains the Debian packaging for `hipblas-common`, a header-only package providing common files shared by `hipBLAS` and `hipBLASLt`.
-There are 2 ways to build the hipblas-common package:
+## About
-### rmake script
+`hipblas-common` is a dependency of ROCm's BLAS libraries. It provides shared headers and CMake files. It is header-only and architecture-independent.
-Simply run the rmake script:
+## Package Status
-`python3 ./rmake.py --install`
+- Architecture: all
+- Section: libdevel
+- Priority: optional
+- Standards-Version: 4.6.2
+- License: MIT
+- Homepage: https://github.com/ROCm/hipBLAS-common
-### Calling cmake and make directly
+## Build Instructions (for Debian packaging)
+To build the Debian package:
+
+```bash
+sudo apt build-dep .
+dpkg-buildpackage -us -uc
```
-mkdir build
-cd build
-cmake ..
-make package install
+
+To run `autopkgtests`:
+```bash
+autopkgtest . -- schroot <chroot-name>
```
|