Skip to content

Commit

Permalink
Merge pull request #129 from jelu/spec
Browse files Browse the repository at this point in the history
SPEC
  • Loading branch information
jelu authored Nov 12, 2024
2 parents 226fa76 + ef58030 commit 201eb88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
1 change: 0 additions & 1 deletion .copr/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ $(top)/rpmbuild:
mkdir -p "$(top)"/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}

srpm: prereq update-dist-tools
git config --global safe.directory "*"
test -f .gitmodules && git submodule update --init || true
echo "$(spec)" | grep -q "develop.spec" && auto_build_number=`date --utc +%s` message="Auto build `date --utc --iso-8601=seconds`" "$(top)/dist-tools/spec-new-changelog-entry" || true
overwrite=yes nosign=yes "$(top)/dist-tools/create-source-packages" rpm
Expand Down
14 changes: 4 additions & 10 deletions rpm/packetq.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ License: GPL-3.0
URL: https://github.com/DNS-OARC/PacketQ
# Source needs to be generated by dist-tools/create-source-packages, see
# https://github.com/jelu/dist-tools
Source0: https://github.com/DNS-OARC/PacketQ/archive/v%{version}.tar.gz?/%{name}_%{version}.orig.tar.gz
Source0: %{name}_%{version}.orig.tar.gz

BuildRequires: zlib-devel
BuildRequires: autoconf
Expand All @@ -33,24 +33,18 @@ it was rebuilt and could handle protocols other than DNS among other things.
%build
sh autogen.sh
%configure
make %{?_smp_mflags}
%make_build


%install
rm -rf $RPM_BUILD_ROOT
make install DESTDIR=$RPM_BUILD_ROOT
%make_install


%check
make test


%clean
rm -rf $RPM_BUILD_ROOT
%make_build test


%files
%defattr(-,root,root)
%{_bindir}/*
%{_datadir}/doc/*

Expand Down

0 comments on commit 201eb88

Please sign in to comment.