diff --git a/confluent-kafka-1.9.0.tar.gz b/confluent-kafka-1.9.0.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..9b4003d5eb06cb5cb6bc7288fb25a1942cb4afa6 Binary files /dev/null and b/confluent-kafka-1.9.0.tar.gz differ diff --git a/python-confluent-kafka.spec b/python-confluent-kafka.spec new file mode 100644 index 0000000000000000000000000000000000000000..be0de83d2e1e6b4ac0fe88c9aec64af22aca6e29 --- /dev/null +++ b/python-confluent-kafka.spec @@ -0,0 +1,104 @@ +%global _empty_manifest_terminate_build 0 +Name: python-confluent-kafka +Version: 1.9.0 +Release: 1 +Summary: Confluent's Python client for Apache Kafka +License: Apache-2.0 +URL: https://github.com/confluentinc/confluent-kafka-python +Source0: https://files.pythonhosted.org/packages/98/d3/61ba8a5cadd31b16e62ef9a5642f713abb8991c9e779756caf92d6bb6c5b/confluent-kafka-1.9.0.tar.gz + +Requires: python3-futures +Requires: python3-enum34 +Requires: python3-avro +Requires: python3-requests +Requires: python3-fastavro +Requires: python3-fastavro +Requires: python3-pytest-timeout +Requires: python3-flake8 +Requires: python3-avro +Requires: python3-requests +Requires: python3-pytest +Requires: python3-fastavro +Requires: python3-fastavro +Requires: python3-pytest +Requires: python3-sphinx +Requires: python3-sphinx-rtd-theme +Requires: python3-avro +Requires: python3-requests +Requires: python3-fastavro +Requires: python3-fastavro +Requires: python3-jsonschema +Requires: python3-requests +Requires: python3-pyrsistent +Requires: python3-pyrsistent +Requires: python3-protobuf +Requires: python3-requests +Requires: python3-requests + +%description +Confluent-kafka-python provides a high-level Producer, Consumer and +AdminClient compatible with all Apache KafkaTM brokers >= v0.8, +Confluent Cloud and the Confluent Platform. + +%package -n python3-confluent-kafka +Summary: Confluent's Python client for Apache Kafka +Provides: python-confluent-kafka +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +BuildRequires: librdkafka librdkafka-devel + +%description -n python3-confluent-kafka +Confluent-kafka for python3. + +%package help +Summary: Development documents and examples for confluent-kafka +Provides: python3-confluent-kafka-doc +%description help +Development documents and examples for confluent-kafka. + +%prep +%autosetup -n confluent-kafka-1.9.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-confluent-kafka -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu Jul 14 2022 Xu Jin - 1.9.0-1 +- Package Spec generated