[Pkg-sssd-devel] [Git][sssd-team/sssd][master] 2 commits: d/rules: Fix 'find' syntax to remove '*.egg-info' files/directories.
Timo Aaltonen (@tjaalton)
gitlab at salsa.debian.org
Mon Jan 9 18:21:44 GMT 2023
Timo Aaltonen pushed to branch master at Debian SSSD packaging / sssd
Commits:
e1260728 by Sergio Durigan Junior at 2023-01-03T16:35:56-05:00
d/rules: Fix 'find' syntax to remove '*.egg-info' files/directories.
Closes: #1026490
- - - - -
edc62ebe by Sergio Durigan Junior at 2023-01-03T16:36:05-05:00
Update changelog for 2.8.1-2 release
- - - - -
2 changed files:
- debian/changelog
- debian/rules
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+sssd (2.8.1-2) unstable; urgency=medium
+
+ * d/rules: Fix 'find' syntax to remove '*.egg-info' files/directories.
+ (Closes: #1026490)
+
+ -- Sergio Durigan Junior <sergiodj at debian.org> Tue, 03 Jan 2023 16:36:00 -0500
+
sssd (2.8.1-1) unstable; urgency=medium
* New upstream release.
=====================================
debian/rules
=====================================
@@ -74,7 +74,9 @@ override_dh_install:
# remove files we don't want to install
find $(CURDIR)/debian/tmp/ -name '*.la' -exec rm '{}' ';'
find $(CURDIR)/debian/tmp/ -name '*.pyc' -exec rm '{}' ';'
- find $(CURDIR)/debian/tmp/ -name '*.egg-info' -exec rm '{}' ';'
+ # We need to use '+' instead of ';' due to the way 'find' and
+ # 'rm' interact with each other.
+ find $(CURDIR)/debian/tmp/ -name '*.egg-info' -exec rm -r '{}' '+'
rm -f $(CURDIR)/debian/tmp/etc/rc.d/init.d/sssd
# match nn/nn/nnnn, replace with the date from changelog
View it on GitLab: https://salsa.debian.org/sssd-team/sssd/-/compare/53508df49e30afb44d0b233e093d3ff8bbbcdd03...edc62ebeab9c51d1b99d4f41d7f2c0ae8f52e3fc
--
View it on GitLab: https://salsa.debian.org/sssd-team/sssd/-/compare/53508df49e30afb44d0b233e093d3ff8bbbcdd03...edc62ebeab9c51d1b99d4f41d7f2c0ae8f52e3fc
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-sssd-devel/attachments/20230109/63638375/attachment-0001.htm>
More information about the Pkg-sssd-devel
mailing list