id / kafka-el7-rpm

A set of scripts to package Apache Kafka into an rpm (CentOS/RedHat 7)
54 stars 40 forks source link

make: *** [kafka_2.12-1.0.1.tgz.asc] Error 8 #22

Open patsevanton opened 5 years ago

patsevanton commented 5 years ago

Hello. Try build kafka

docker build -t kafka-build . && docker run -ti -v $(pwd)/RPMS:/root/RPMS kafka-build
....
gpg: no ultimately trusted keys found
make: *** [kafka_2.12-1.0.1.tgz.asc] Error 8
simioa commented 5 years ago

@patsevanton I had the same Problem, modified the Makefile and now it works. Here is my version:

.PHONY: rpm clean source

KAFKA_VERSION ?= 2.0.1
SCALA_VERSION ?= 2.12
VERSION = $(shell echo $(KAFKA_VERSION) | sed "s/-/_/")
BUILD_NUMBER ?= 1
BUILD_METRICS ?= 0
SOURCE_NAME = kafka_$(SCALA_VERSION)-$(KAFKA_VERSION)
SOURCE = $(SOURCE_NAME).tgz
TOPDIR = /tmp/kafka-rpm
PWD = $(shell pwd)
URL = https://archive.apache.org/dist/kafka/$(KAFKA_VERSION)/$(SOURCE)
METRICS_GRAPHITE = metrics-graphite-2.2.0.jar
METRICS_GRAPHITE_URL = http://search.maven.org/remotecontent?filepath=com/yammer/metrics/metrics-graphite/2.2.0/$(METRICS_GRAPHITE)

rpm: source
        @rpmbuild -v -bb \
                        --define "version $(VERSION)" \
                        --define "build_number $(BUILD_NUMBER)" \
                        --define "source $(SOURCE)" \
                        --define "source_name $(SOURCE_NAME)" \
                        --define "_sourcedir $(PWD)" \
                        --define "_rpmdir $(PWD)/RPMS" \
                        --define "_topdir $(TOPDIR)" \
                        --define "build_with_metrics $(BUILD_METRICS)" \
                        kafka.spec

clean:
        @rm -rf $(TOPDIR) x86_64
        @rm -f $(SOURCE) $(SOURCE).asc KEYS $(METRICS_GRAPHITE)

source: $(SOURCE) $(METRICS_GRAPHITE)

$(SOURCE): KEYS $(SOURCE).asc
        @wget -q $(URL)
        gpg --verify $(SOURCE).asc $(SOURCE)

$(SOURCE).asc:
        @wget -q https://archive.apache.org/dist/kafka/$(KAFKA_VERSION)/$(SOURCE).asc

KEYS:
        @wget -q https://kafka.apache.org/KEYS
        gpg --import KEYS

$(METRICS_GRAPHITE):
                @wget -q $(METRICS_GRAPHITE_URL) -O $(METRICS_GRAPHITE)

You may have to modify it to suit your needs