├── .github └── workflows │ ├── asciidoc.sh │ └── ci.yml ├── .gitignore ├── README.md ├── community ├── index.adoc └── source ├── example-code ├── bello-0.1.tar.gz ├── bello.spec ├── cello-1.0.tar.gz ├── cello-output-first-patch.patch ├── cello.spec ├── pello-0.1.1.tar.gz ├── pello-0.1.2.tar.gz └── pello.spec ├── rhel ├── docinfo.xml ├── master.adoc └── source └── source ├── acknowledgements.adoc ├── advanced-topics.adoc ├── contributing-to-this-guide.adoc ├── features-rhel7.adoc ├── hello-world.adoc ├── introduction.adoc ├── packaging-software.adoc ├── preparing-software.adoc ├── prerequisites.adoc ├── references.adoc └── why-package-rpm.adoc /.github/workflows/asciidoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/.github/workflows/asciidoc.sh -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/README.md -------------------------------------------------------------------------------- /community/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/community/index.adoc -------------------------------------------------------------------------------- /community/source: -------------------------------------------------------------------------------- 1 | ../source/ -------------------------------------------------------------------------------- /example-code/bello-0.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/bello-0.1.tar.gz -------------------------------------------------------------------------------- /example-code/bello.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/bello.spec -------------------------------------------------------------------------------- /example-code/cello-1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/cello-1.0.tar.gz -------------------------------------------------------------------------------- /example-code/cello-output-first-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/cello-output-first-patch.patch -------------------------------------------------------------------------------- /example-code/cello.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/cello.spec -------------------------------------------------------------------------------- /example-code/pello-0.1.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/pello-0.1.1.tar.gz -------------------------------------------------------------------------------- /example-code/pello-0.1.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/pello-0.1.2.tar.gz -------------------------------------------------------------------------------- /example-code/pello.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/example-code/pello.spec -------------------------------------------------------------------------------- /rhel/docinfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/rhel/docinfo.xml -------------------------------------------------------------------------------- /rhel/master.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/rhel/master.adoc -------------------------------------------------------------------------------- /rhel/source: -------------------------------------------------------------------------------- 1 | ../source/ -------------------------------------------------------------------------------- /source/acknowledgements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/acknowledgements.adoc -------------------------------------------------------------------------------- /source/advanced-topics.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/advanced-topics.adoc -------------------------------------------------------------------------------- /source/contributing-to-this-guide.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/contributing-to-this-guide.adoc -------------------------------------------------------------------------------- /source/features-rhel7.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/features-rhel7.adoc -------------------------------------------------------------------------------- /source/hello-world.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/hello-world.adoc -------------------------------------------------------------------------------- /source/introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/introduction.adoc -------------------------------------------------------------------------------- /source/packaging-software.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/packaging-software.adoc -------------------------------------------------------------------------------- /source/preparing-software.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/preparing-software.adoc -------------------------------------------------------------------------------- /source/prerequisites.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/prerequisites.adoc -------------------------------------------------------------------------------- /source/references.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/references.adoc -------------------------------------------------------------------------------- /source/why-package-rpm.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redhat-developer/rpm-packaging-guide/HEAD/source/why-package-rpm.adoc --------------------------------------------------------------------------------