X-Git-Url: http://git.onelab.eu/?p=build.git;a=blobdiff_plain;f=spec2make.c;h=60004ef6448d360b1862ed5bee696737ed8bec6e;hp=712ce68633d992658650390bb07c8cf9b5eb513c;hb=HEAD;hpb=249acd1f0c785b2aa88ba193ce7a1a8e442b3ef5 diff --git a/spec2make.c b/spec2make.c deleted file mode 100644 index 712ce686..00000000 --- a/spec2make.c +++ /dev/null @@ -1,219 +0,0 @@ -/* - * Parses RPM spec file into Makefile fragment. See - * - * http://fedora.redhat.com/docs/drafts/rpm-guide-en/ch-programming-c.html - * - * Mark Huang - * Copyright (C) 2006 The Trustees of Princeton University - * - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -/* from f10 and up, Spec is renamed rpmSpec */ -#ifndef _RPMTYPES_H -#define rpmSpec Spec -#endif - -#ifndef PATH_MAX -#include -#endif - -extern size_t strnlen(const char *s, size_t maxlen); - -/* the structure describing the options we take and the defaults */ -static struct poptOption optionsTable[] = { - { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmBuildPoptTable, 0, - "Build options with [ | | ]:", - NULL }, - - { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliAllPoptTable, 0, - "Common options for all rpm modes and executables:", - NULL }, - - POPT_AUTOALIAS - POPT_AUTOHELP - POPT_TABLEEND -}; - -/* Stolen from rpm/build/spec.c:rpmspecQuery() */ -rpmSpec -rpmspecGet(rpmts ts, const char * arg) -{ - char * buildRoot = NULL; - int recursing = 0; - char * passPhrase = ""; - char *cookie = NULL; - int anyarch = 1; - int force = 1; - - if (parseSpec(ts, arg, "/", buildRoot, recursing, passPhrase, - cookie, anyarch, force)) { - fprintf(stderr, "query of specfile %s failed, can't parse\n", arg); - return NULL; - } - - return rpmtsSpec(ts); -} - -int -main(int argc, char *argv[]) -{ - poptContext context; - rpmts ts = NULL; - int ec = 0; - rpmSpec spec; - struct Source *source; - Package pkg; - const char *name, *version, *release, *arch, *unused; - const char *package_name; - - /* BEGIN: support to pull out --target from the args list */ - int alen, i; - char *target = NULL; - int args = 1; - int tlen = strlen("--target"); - - - /* walk argv list looking for --target */ - while ((args+1)sources; source; source = source->next) { - char fullSource[PATH_MAX]; - - strncpy(fullSource, source->fullSource, sizeof(fullSource)); - printf("%s.tarballs += SOURCES/%s\n", package_name, basename(fullSource)); - /* computes the SOURCEDIR variable by removing .tar.gz or .tar.bz2 */ - { - char *suffixes[] = {".tar.gz",".tgz",".tar.bz2", NULL}; - char **suffix; - char *suffix_index; - - for (suffix=suffixes ; *suffix ; suffix++) { - printf("# trying %s\n",*suffix); - suffix_index=strstr(fullSource,*suffix); - if (suffix_index) { - char sourcename[PATH_MAX]; - size_t len = (size_t)(suffix_index-fullSource); - strncpy(sourcename,fullSource,len); - sourcename[len]='\0'; - printf ("%s.source := SOURCES/%s\n",package_name,basename(sourcename)); - break; - } - } - } - - } - - /* Get SRPM name from name of first package */ - pkg = spec->packages; - name = version = release = NULL; - (void) headerNVR(pkg->header, &name, &version, &release); - if (name && version && release) - printf("%s.srpm := SRPMS/%s-%s-%s.src.rpm\n", - package_name, name, version, release); - - /* Print non-empty packages */ - for (pkg = spec->packages; pkg != NULL; pkg = pkg->next) { - name = version = release = arch = NULL; - (void) headerNEVRA(pkg->header, &name, &unused, &version, &release, &arch); - if (name && version && release && arch) { - if (target != NULL) { - if (strcmp(arch,target)!=0) { - arch=target; - } - } - /* skip empty packages */ - if (pkg->fileList) { - /* attach (add) rpm path to package */ - printf("%s.rpms += RPMS/%s/%s-%s-%s.%s.rpm\n", - package_name, arch, name, version, release, arch); - /* convenience */ - printf("%s.rpmnames += %s\n", - package_name, name); - /* attach path to rpm name */ - printf("%s.rpm-path := RPMS/%s/%s-%s-%s.%s.rpm\n", - name,arch, name, version, release, arch); - /* attach package to rpm name for backward resolution - should be unique */ - printf("%s.package := %s\n", - name,package_name); - } - } - } - - /* export some macros to make */ - /* note : this relies on pl-specific conventions and might be wrong */ - { - char *macros[] = { "release" , "name" , "version" , "taglevel" , NULL } ; - char **nav; - char *macro=malloc(32); - for (nav=macros; *nav; nav++) { - sprintf(macro,"%%{%s}",*nav); - char *value = rpmExpand(macro,NULL); - printf ("%s.rpm-%s := %s\n",package_name,*nav,value); - } - } - - /* export arch */ - printf ("%s.rpm-arch := %s\n",package_name,target); - - spec = freeSpec(spec); - - done: - ts = rpmtsFree(ts); - context = rpmcliFini(context); - return ec; -}