-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pkg] build sources using tar in place of git archive
It allow us to add any file which are not tracked in source (like git_commit_id). Using config.mk, we limit which top level directories are included in tar archive. Using dist_ignore file, we can exclude specific files (like .git files) conf/.gitignore is removed because this file is overriden by conf/.gitignore.example during packaging. rpm/source and sub-directories are not necessary anymore
- Loading branch information
Showing
12 changed files
with
64 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dist_ignore | ||
*.gitignore | ||
*.gitattributes | ||
*.git | ||
ChangeLog.old | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,3 +23,6 @@ dist: | |
|
||
light-dist: | ||
grunt --stack dist | ||
|
||
clean: | ||
rm -rf ./node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,5 @@ dist: | |
light-dist: | ||
npm run build | ||
|
||
clean: | ||
rm -rf ./node_modules |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
#============================================================================== | ||
Name: packetfence | ||
Version: 11.0.0 | ||
Release: 1%{?dist} | ||
Release: 2%{?dist} | ||
Summary: PacketFence network registration / worm mitigation system | ||
Packager: Inverse inc. <[email protected]> | ||
Group: System Environment/Daemons | ||
|
@@ -1248,6 +1248,9 @@ fi | |
# Changelog | ||
#============================================================================== | ||
%changelog | ||
* Mon Jun 28 2021 Inverse <[email protected]> - 11.0.0-2 | ||
- Build Source using Makefile in place of git archive | ||
|
||
* Fri Jun 11 2021 Inverse <[email protected]> - 11.0.0-1 | ||
- Prepare new PacketFence release | ||
|
||
|
This file was deleted.
Oops, something went wrong.