Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/rpm-software-management/createrepo_c.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Mlcoch <tmlcoch@redhat.com>2014-07-18 13:17:01 +0400
committerTomas Mlcoch <tmlcoch@redhat.com>2014-07-18 15:44:06 +0400
commitc7f4bd245345d7aadc93da5408d4124925552a35 (patch)
treefdc2e03c484faf0a79ef8c84973969c08231af6e /README.md
parentda7afda4e9f26e217001b62e04a56e7f7f5f2482 (diff)
Deltarpm support (Experimental - the used drpm library is not stable!)
Git of the DRPM library: https://git.fedorahosted.org/git/drpm.git Check the README.md for information how to build createrepo_c with delta rpm support Note: Delta rpm support is disabled by default
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 16 insertions, 2 deletions
diff --git a/README.md b/README.md
index 0a018a9..ff25243 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Package build requires - Pkg name in Fedora/Ubuntu:
* *Documentation:* sphinx (http://sphinx-doc.org/) - python-sphinx/
* **Test requires:** check (http://check.sourceforge.net/) - check-devel/check
* **Test requires:** python-nose (https://nose.readthedocs.org/) - python-nose/python-nose
-
+* **Experimental support:** drpm (https://git.fedorahosted.org/git/drpm.git)
From your checkout dir:
@@ -47,7 +47,7 @@ To build the documentation, from the build/ directory:
E.g. when you want to try weak and rich dependencies.
- cmake -D RPM_PATH="/home/tmlcoch/git/rpm" .. && make
+ cmake -DRPM_PATH="/home/tmlcoch/git/rpm" .. && make
**Note:** The RPM must be buit in that directory
@@ -57,6 +57,20 @@ Commands I am using for building of RPM:
CPPFLAGS='-I/usr/include/nss3/ -I/usr/include/nspr4/' ./autogen.sh --rpmconfigure --with-vendor=redhat --with-external-db --with-lua --with-selinux --with-cap --with-acl --enable-python
make clean && make
+## Building with delta rpm support (drpm)
+
+At first, you have to checkout drpm library from the
+https://git.fedorahosted.org/git/drpm.git and build it.
+
+ git clone ssh://git.fedorahosted.org/git/drpm.git
+ cd drpm/
+ make
+
+Then run ``cmake`` for createrepo_c with param ``-DDRPM_PATH="/home/tmlcoch/git/drpm"``
+where the path is path to your build of drpm library.
+
+ cmake -DDRPM_PATH="/home/tmlcoch/git/drpm" .. && make
+
## Build tarball
utils/make_tarball.sh [git revision]