selinux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scripts/release: Update links to use release assets instead of wiki links
@ 2019-01-31 13:48 Petr Lautrbach
  2019-02-03 22:23 ` Nicolas Iooss
  0 siblings, 1 reply; 3+ messages in thread
From: Petr Lautrbach @ 2019-01-31 13:48 UTC (permalink / raw)
  To: selinux; +Cc: Petr Lautrbach

- new release files are created in release/$RELEASE_TAG
- download links refers to new release assets

Signed-off-by: Petr Lautrbach <plautrba@redhat.com>
---
 scripts/release | 24 ++++++++++++++++++++----
 1 file changed, 20 insertions(+), 4 deletions(-)

diff --git a/scripts/release b/scripts/release
index ad10d557..07813749 100755
--- a/scripts/release
+++ b/scripts/release
@@ -7,11 +7,12 @@ if [ \! -d $WIKIDIR ]; then
     git clone git@github.com:SELinuxProject/selinux.wiki.git $WIKIDIR
 fi
 
-DEST=$WIKIDIR/files/releases/$(date '+%Y%m%d')
+RELEASE_TAG=$(date '+%Y%m%d')
+DEST=releases/$RELEASE_TAG
 DIRS="libsepol libselinux libsemanage checkpolicy secilc policycoreutils mcstrans restorecond semodule-utils"
 DIRS_NEED_PREFIX="dbus gui python sandbox"
 
-git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')"
+git tag -a $RELEASE_TAG -m "Release $RELEASE_TAG"
 
 rm -rf $DEST
 mkdir -p $DEST
@@ -44,19 +45,34 @@ echo ""
 
 echo "## Release $(date '+%Y-%m-%d')"
 
+echo ""
+
+echo "[Release Notes](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/RELEASE-$RELEASE_TAG.txt)"
+echo ""
+echo "[full log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/log-$RELEASE_TAG.txt)"
+echo ""
+echo "[short log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/shortlog-$RELEASE_TAG.txt)"
+echo ""
+
 for i in *.tar.gz; do
 
-	echo -n "[$i](https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/$(date '+%Y%m%d')/$i) "
+	echo -n "[$i](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/$i) "
 	sha256sum $i | cut -d " " -f 1
 	echo ""
 done
 
 echo "And then run:"
 echo "  cd $WIKIDIR"
-echo "  git commit  -m \"Release $(date '+%Y%m%d')\" -a -s"
+echo "  git commit  -m \"Release $RELEASE_TAG\" -a -s"
 echo "  git push"
 
 echo ""
 echo "Push the release and its tags to git via:"
 echo "  git push"
 echo "  git push --tags"
+
+echo ""
+echo "Create a new release from the latest tag on https://github.com/SELinuxProject/selinux/tags"
+
+echo ""
+echo "Add files from releases/$RELEASE_TAG as assets to the new github release"
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] scripts/release: Update links to use release assets instead of wiki links
  2019-01-31 13:48 [PATCH] scripts/release: Update links to use release assets instead of wiki links Petr Lautrbach
@ 2019-02-03 22:23 ` Nicolas Iooss
  2019-02-06  8:05   ` Petr Lautrbach
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Iooss @ 2019-02-03 22:23 UTC (permalink / raw)
  To: Petr Lautrbach; +Cc: selinux

On Thu, Jan 31, 2019 at 2:48 PM Petr Lautrbach <plautrba@redhat.com> wrote:
>
> - new release files are created in release/$RELEASE_TAG
> - download links refers to new release assets
>
> Signed-off-by: Petr Lautrbach <plautrba@redhat.com>

I have created packages for 2.9-rc1 for Arch Linux without any
trouble, using the information from the GitHub release page and the
generated wiki page
(https://github.com/SELinuxProject/selinux/wiki/Releases).

Acked-by: Nicolas Iooss <nicolas.iooss@m4x.org>
> ---
>  scripts/release | 24 ++++++++++++++++++++----
>  1 file changed, 20 insertions(+), 4 deletions(-)
>
> diff --git a/scripts/release b/scripts/release
> index ad10d557..07813749 100755
> --- a/scripts/release
> +++ b/scripts/release
> @@ -7,11 +7,12 @@ if [ \! -d $WIKIDIR ]; then
>      git clone git@github.com:SELinuxProject/selinux.wiki.git $WIKIDIR
>  fi
>
> -DEST=$WIKIDIR/files/releases/$(date '+%Y%m%d')
> +RELEASE_TAG=$(date '+%Y%m%d')
> +DEST=releases/$RELEASE_TAG
>  DIRS="libsepol libselinux libsemanage checkpolicy secilc policycoreutils mcstrans restorecond semodule-utils"
>  DIRS_NEED_PREFIX="dbus gui python sandbox"
>
> -git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')"
> +git tag -a $RELEASE_TAG -m "Release $RELEASE_TAG"
>
>  rm -rf $DEST
>  mkdir -p $DEST
> @@ -44,19 +45,34 @@ echo ""
>
>  echo "## Release $(date '+%Y-%m-%d')"
>
> +echo ""
> +
> +echo "[Release Notes](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/RELEASE-$RELEASE_TAG.txt)"
> +echo ""
> +echo "[full log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/log-$RELEASE_TAG.txt)"
> +echo ""
> +echo "[short log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/shortlog-$RELEASE_TAG.txt)"
> +echo ""
> +
>  for i in *.tar.gz; do
>
> -       echo -n "[$i](https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/$(date '+%Y%m%d')/$i) "
> +       echo -n "[$i](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/$i) "
>         sha256sum $i | cut -d " " -f 1
>         echo ""
>  done
>
>  echo "And then run:"
>  echo "  cd $WIKIDIR"
> -echo "  git commit  -m \"Release $(date '+%Y%m%d')\" -a -s"
> +echo "  git commit  -m \"Release $RELEASE_TAG\" -a -s"
>  echo "  git push"
>
>  echo ""
>  echo "Push the release and its tags to git via:"
>  echo "  git push"
>  echo "  git push --tags"
> +
> +echo ""
> +echo "Create a new release from the latest tag on https://github.com/SELinuxProject/selinux/tags"
> +
> +echo ""
> +echo "Add files from releases/$RELEASE_TAG as assets to the new github release"
> --
> 2.20.1
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] scripts/release: Update links to use release assets instead of wiki links
  2019-02-03 22:23 ` Nicolas Iooss
@ 2019-02-06  8:05   ` Petr Lautrbach
  0 siblings, 0 replies; 3+ messages in thread
From: Petr Lautrbach @ 2019-02-06  8:05 UTC (permalink / raw)
  To: selinux; +Cc: Nicolas Iooss

Nicolas Iooss <nicolas.iooss@m4x.org> writes:

> On Thu, Jan 31, 2019 at 2:48 PM Petr Lautrbach <plautrba@redhat.com> wrote:
>>
>> - new release files are created in release/$RELEASE_TAG
>> - download links refers to new release assets
>>
>> Signed-off-by: Petr Lautrbach <plautrba@redhat.com>
>
> I have created packages for 2.9-rc1 for Arch Linux without any
> trouble, using the information from the GitHub release page and the
> generated wiki page
> (https://github.com/SELinuxProject/selinux/wiki/Releases).
>
> Acked-by: Nicolas Iooss <nicolas.iooss@m4x.org>

Merged.

>> ---
>>  scripts/release | 24 ++++++++++++++++++++----
>>  1 file changed, 20 insertions(+), 4 deletions(-)
>>
>> diff --git a/scripts/release b/scripts/release
>> index ad10d557..07813749 100755
>> --- a/scripts/release
>> +++ b/scripts/release
>> @@ -7,11 +7,12 @@ if [ \! -d $WIKIDIR ]; then
>>      git clone git@github.com:SELinuxProject/selinux.wiki.git $WIKIDIR
>>  fi
>>
>> -DEST=$WIKIDIR/files/releases/$(date '+%Y%m%d')
>> +RELEASE_TAG=$(date '+%Y%m%d')
>> +DEST=releases/$RELEASE_TAG
>>  DIRS="libsepol libselinux libsemanage checkpolicy secilc policycoreutils mcstrans restorecond semodule-utils"
>>  DIRS_NEED_PREFIX="dbus gui python sandbox"
>>
>> -git tag -a $(date '+%Y%m%d') -m "Release $(date '+%Y%m%d')"
>> +git tag -a $RELEASE_TAG -m "Release $RELEASE_TAG"
>>
>>  rm -rf $DEST
>>  mkdir -p $DEST
>> @@ -44,19 +45,34 @@ echo ""
>>
>>  echo "## Release $(date '+%Y-%m-%d')"
>>
>> +echo ""
>> +
>> +echo "[Release Notes](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/RELEASE-$RELEASE_TAG.txt)"
>> +echo ""
>> +echo "[full log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/log-$RELEASE_TAG.txt)"
>> +echo ""
>> +echo "[short log](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/shortlog-$RELEASE_TAG.txt)"
>> +echo ""
>> +
>>  for i in *.tar.gz; do
>>
>> -       echo -n "[$i](https://raw.githubusercontent.com/wiki/SELinuxProject/selinux/files/releases/$(date '+%Y%m%d')/$i) "
>> +       echo -n "[$i](https://github.com/SELinuxProject/selinux/releases/download/$RELEASE_TAG/$i) "
>>         sha256sum $i | cut -d " " -f 1
>>         echo ""
>>  done
>>
>>  echo "And then run:"
>>  echo "  cd $WIKIDIR"
>> -echo "  git commit  -m \"Release $(date '+%Y%m%d')\" -a -s"
>> +echo "  git commit  -m \"Release $RELEASE_TAG\" -a -s"
>>  echo "  git push"
>>
>>  echo ""
>>  echo "Push the release and its tags to git via:"
>>  echo "  git push"
>>  echo "  git push --tags"
>> +
>> +echo ""
>> +echo "Create a new release from the latest tag on https://github.com/SELinuxProject/selinux/tags"
>> +
>> +echo ""
>> +echo "Add files from releases/$RELEASE_TAG as assets to the new github release"
>> --
>> 2.20.1
>>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-02-06  8:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-31 13:48 [PATCH] scripts/release: Update links to use release assets instead of wiki links Petr Lautrbach
2019-02-03 22:23 ` Nicolas Iooss
2019-02-06  8:05   ` Petr Lautrbach

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).