[arch-commits] Commit in (steghide)

2020-05-01 Thread Antonio Rojas via arch-commits
Date: Friday, May 1, 2020 @ 19:41:01
  Author: arojas
Revision: 624241

Drop orphan package

Deleted:
  steghide/


[arch-commits] Commit in steghide/trunk (PKGBUILD)

2019-09-25 Thread Antonio Rojas via arch-commits
Date: Wednesday, September 25, 2019 @ 20:29:54
  Author: arojas
Revision: 511779

https

Modified:
  steghide/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-09-25 20:28:59 UTC (rev 511778)
+++ PKGBUILD2019-09-25 20:29:54 UTC (rev 511779)
@@ -11,7 +11,7 @@
 url='http://steghide.sourceforge.net'
 license=('GPL')
 depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+source=("https://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'buildsystem.patch'
 'gcc-4.2.patch'
  "${pkgname}-climits.patch"


[arch-commits] Commit in steghide/repos/community-x86_64 (11 files)

2018-06-09 Thread Antonio Rojas via arch-commits
Date: Saturday, June 9, 2018 @ 11:06:16
  Author: arojas
Revision: 342166

archrelease: copy trunk to community-x86_64

Added:
  steghide/repos/community-x86_64/ChangeLog
(from rev 342165, steghide/trunk/ChangeLog)
  steghide/repos/community-x86_64/PKGBUILD
(from rev 342165, steghide/trunk/PKGBUILD)
  steghide/repos/community-x86_64/buildsystem.patch
(from rev 342165, steghide/trunk/buildsystem.patch)
  steghide/repos/community-x86_64/gcc-4.2.patch
(from rev 342165, steghide/trunk/gcc-4.2.patch)
  steghide/repos/community-x86_64/steghide-climits.patch
(from rev 342165, steghide/trunk/steghide-climits.patch)
  steghide/repos/community-x86_64/steghide-gcc6.patch
(from rev 342165, steghide/trunk/steghide-gcc6.patch)
Deleted:
  steghide/repos/community-x86_64/ChangeLog
  steghide/repos/community-x86_64/PKGBUILD
  steghide/repos/community-x86_64/buildsystem.patch
  steghide/repos/community-x86_64/gcc-4.2.patch
  steghide/repos/community-x86_64/steghide-climits.patch

+
 ChangeLog  |8 +-
 PKGBUILD   |   92 +++-
 buildsystem.patch  |   20 +++---
 gcc-4.2.patch  |  150 +++
 steghide-climits.patch |   22 +++---
 steghide-gcc6.patch|   22 ++
 6 files changed, 170 insertions(+), 144 deletions(-)

Deleted: ChangeLog
===
--- ChangeLog   2018-06-09 11:05:52 UTC (rev 342165)
+++ ChangeLog   2018-06-09 11:06:16 UTC (rev 342166)
@@ -1,4 +0,0 @@
-2007-06-28 tardo 
-* Built for x86_64
-* Added gcc 4.2 patch, with help from gentoo bug #178134
-* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Copied: steghide/repos/community-x86_64/ChangeLog (from rev 342165, 
steghide/trunk/ChangeLog)
===
--- ChangeLog   (rev 0)
+++ ChangeLog   2018-06-09 11:06:16 UTC (rev 342166)
@@ -0,0 +1,4 @@
+2007-06-28 tardo 
+* Built for x86_64
+* Added gcc 4.2 patch, with help from gentoo bug #178134
+* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Deleted: PKGBUILD
===
--- PKGBUILD2018-06-09 11:05:52 UTC (rev 342165)
+++ PKGBUILD2018-06-09 11:06:16 UTC (rev 342166)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer 
-# Contributor: Tom Newsom 
-# Contributor: Jason Chu 
-# Contributor: Daniel J Griffiths 
-
-pkgname=steghide
-pkgver=0.5.1
-pkgrel=8
-pkgdesc='Embeds a message in a file by replacing some of the least significant 
bits'
-arch=('i686' 'x86_64')
-url='http://steghide.sourceforge.net'
-license=('GPL')
-depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'buildsystem.patch'
-'gcc-4.2.patch'
- "${pkgname}-climits.patch")
-md5sums=('5be490e24807d921045780fd8cc446b3'
- '14f5e054d71c91262bb1140288043df8'
- 'fd861dc5a0a392c6c94a61e85ad74f29'
- '897ce18edd008293a3328bc3f88775b3')
-
-build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  patch -p1 < ../buildsystem.patch
-
-  # this patch courtesy gentoo bug tracker #178134
-  patch -Np1 -i ../gcc-4.2.patch
-  patch -Np1 -i ../steghide-climits.patch
-
-  # touch files needed by GNU Autotools
-  touch NEWS AUTHORS ChangeLog
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-  make DESTDIR="${pkgdir}" install
-}

Copied: steghide/repos/community-x86_64/PKGBUILD (from rev 342165, 
steghide/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-06-09 11:06:16 UTC (rev 342166)
@@ -0,0 +1,48 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: Tom Newsom 
+# Contributor: Jason Chu 
+# Contributor: Daniel J Griffiths 
+
+pkgname=steghide
+pkgver=0.5.1
+pkgrel=9
+pkgdesc='Embeds a message in a file by replacing some of the least significant 
bits'
+arch=('x86_64')
+url='http://steghide.sourceforge.net'
+license=('GPL')
+depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'buildsystem.patch'
+'gcc-4.2.patch'
+ "${pkgname}-climits.patch"
+ steghide-gcc6.patch)
+md5sums=('5be490e24807d921045780fd8cc446b3'
+ '14f5e054d71c91262bb1140288043df8'
+ 'fd861dc5a0a392c6c94a61e85ad74f29'
+ '897ce18edd008293a3328bc3f88775b3'
+ '6dd60a84fccca270fa7315f1102454ff')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -p1 < ../buildsystem.patch
+
+  # this patch courtesy gentoo bug tracker #178134
+  patch -Np1 -i ../gcc-4.2.patch
+  patch -Np1 -i ../steghide-climits.patch
+
+  patch -p1 -i ../steghide-gcc6.patch # Fix build 

[arch-commits] Commit in steghide/trunk (PKGBUILD steghide-gcc6.patch)

2018-06-09 Thread Antonio Rojas via arch-commits
Date: Saturday, June 9, 2018 @ 11:05:52
  Author: arojas
Revision: 342165

BUILDINFO rebuild

Added:
  steghide/trunk/steghide-gcc6.patch
Modified:
  steghide/trunk/PKGBUILD

-+
 PKGBUILD|   10 +++---
 steghide-gcc6.patch |   22 ++
 2 files changed, 29 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-06-09 10:55:57 UTC (rev 342164)
+++ PKGBUILD2018-06-09 11:05:52 UTC (rev 342165)
@@ -6,7 +6,7 @@
 
 pkgname=steghide
 pkgver=0.5.1
-pkgrel=8
+pkgrel=9
 pkgdesc='Embeds a message in a file by replacing some of the least significant 
bits'
 arch=('x86_64')
 url='http://steghide.sourceforge.net'
@@ -15,11 +15,13 @@
 
source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
 'buildsystem.patch'
 'gcc-4.2.patch'
- "${pkgname}-climits.patch")
+ "${pkgname}-climits.patch"
+ steghide-gcc6.patch)
 md5sums=('5be490e24807d921045780fd8cc446b3'
  '14f5e054d71c91262bb1140288043df8'
  'fd861dc5a0a392c6c94a61e85ad74f29'
- '897ce18edd008293a3328bc3f88775b3')
+ '897ce18edd008293a3328bc3f88775b3'
+ '6dd60a84fccca270fa7315f1102454ff')
 
 build() {
   cd "${srcdir}/${pkgname}-${pkgver}"
@@ -30,6 +32,8 @@
   patch -Np1 -i ../gcc-4.2.patch
   patch -Np1 -i ../steghide-climits.patch
 
+  patch -p1 -i ../steghide-gcc6.patch # Fix build with GCC 6
+
   # touch files needed by GNU Autotools
   touch NEWS AUTHORS ChangeLog
 

Added: steghide-gcc6.patch
===
--- steghide-gcc6.patch (rev 0)
+++ steghide-gcc6.patch 2018-06-09 11:05:52 UTC (rev 342165)
@@ -0,0 +1,22 @@
+--- steghide-0.5.1/src/Arguments.h.orig2018-06-09 11:04:48.795952519 
+
 steghide-0.5.1/src/Arguments.h 2018-06-09 11:00:57.239290249 +
+@@ -100,7 +100,7 @@
+   static const VERBOSITY  Default_Verbosity = NORMAL ;
+   static const unsigned long  Default_Radius = 0 ; // there is no 
default radius for all file formats
+   static const unsigned int   Max_Algorithm = 3 ;
+-  static const float  Default_Goal = 100.0 ;
++  static constexpr float  Default_Goal = 100.0 ;
+   static const DEBUGCOMMAND   Default_DebugCommand = NONE ;
+   static const bool   Default_Check = false ;
+   static const unsigned int   Default_DebugLevel = 0 ;
+--- steghide-0.5.1/src/ProgressOutput.h.orig   2018-06-09 11:01:44.662622682 
+
 steghide-0.5.1/src/ProgressOutput.h2018-06-09 11:01:57.755955767 
+
+@@ -64,7 +64,7 @@
+**/
+   void done (float rate, float avgweight = NoAvgWeight) const ;
+ 
+-  static const float NoAvgWeight = -1.0 ;
++  static constexpr float NoAvgWeight = -1.0 ;
+ 
+   protected:
+   std::string vcompose (const char *msgfmt, va_list ap) const ;


[arch-commits] Commit in steghide/trunk (PKGBUILD)

2015-12-05 Thread Bartłomiej Piotrowski
Date: Saturday, December 5, 2015 @ 16:52:31
  Author: bpiotrowski
Revision: 148513

C++11 ABI rebuild

Modified:
  steghide/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-12-05 15:51:34 UTC (rev 148512)
+++ PKGBUILD2015-12-05 15:52:31 UTC (rev 148513)
@@ -6,7 +6,7 @@
 
 pkgname=steghide
 pkgver=0.5.1
-pkgrel=7
+pkgrel=8
 pkgdesc='Embeds a message in a file by replacing some of the least significant 
bits'
 arch=('i686' 'x86_64')
 url='http://steghide.sourceforge.net'


[arch-commits] Commit in steghide/repos (12 files)

2015-12-05 Thread Bartłomiej Piotrowski
Date: Saturday, December 5, 2015 @ 16:52:44
  Author: bpiotrowski
Revision: 148514

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  steghide/repos/community-staging-i686/
  steghide/repos/community-staging-i686/ChangeLog
(from rev 148513, steghide/trunk/ChangeLog)
  steghide/repos/community-staging-i686/PKGBUILD
(from rev 148513, steghide/trunk/PKGBUILD)
  steghide/repos/community-staging-i686/buildsystem.patch
(from rev 148513, steghide/trunk/buildsystem.patch)
  steghide/repos/community-staging-i686/gcc-4.2.patch
(from rev 148513, steghide/trunk/gcc-4.2.patch)
  steghide/repos/community-staging-i686/steghide-climits.patch
(from rev 148513, steghide/trunk/steghide-climits.patch)
  steghide/repos/community-staging-x86_64/
  steghide/repos/community-staging-x86_64/ChangeLog
(from rev 148513, steghide/trunk/ChangeLog)
  steghide/repos/community-staging-x86_64/PKGBUILD
(from rev 148513, steghide/trunk/PKGBUILD)
  steghide/repos/community-staging-x86_64/buildsystem.patch
(from rev 148513, steghide/trunk/buildsystem.patch)
  steghide/repos/community-staging-x86_64/gcc-4.2.patch
(from rev 148513, steghide/trunk/gcc-4.2.patch)
  steghide/repos/community-staging-x86_64/steghide-climits.patch
(from rev 148513, steghide/trunk/steghide-climits.patch)

-+
 community-staging-i686/ChangeLog|4 +
 community-staging-i686/PKGBUILD |   44 
 community-staging-i686/buildsystem.patch|   10 ++
 community-staging-i686/gcc-4.2.patch|   75 ++
 community-staging-i686/steghide-climits.patch   |   11 +++
 community-staging-x86_64/ChangeLog  |4 +
 community-staging-x86_64/PKGBUILD   |   44 
 community-staging-x86_64/buildsystem.patch  |   10 ++
 community-staging-x86_64/gcc-4.2.patch  |   75 ++
 community-staging-x86_64/steghide-climits.patch |   11 +++
 10 files changed, 288 insertions(+)

Copied: steghide/repos/community-staging-i686/ChangeLog (from rev 148513, 
steghide/trunk/ChangeLog)
===
--- community-staging-i686/ChangeLog(rev 0)
+++ community-staging-i686/ChangeLog2015-12-05 15:52:44 UTC (rev 148514)
@@ -0,0 +1,4 @@
+2007-06-28 tardo 
+* Built for x86_64
+* Added gcc 4.2 patch, with help from gentoo bug #178134
+* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Copied: steghide/repos/community-staging-i686/PKGBUILD (from rev 148513, 
steghide/trunk/PKGBUILD)
===
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-12-05 15:52:44 UTC (rev 148514)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Lukas Fleischer 
+# Contributor: Tom Newsom 
+# Contributor: Jason Chu 
+# Contributor: Daniel J Griffiths 
+
+pkgname=steghide
+pkgver=0.5.1
+pkgrel=8
+pkgdesc='Embeds a message in a file by replacing some of the least significant 
bits'
+arch=('i686' 'x86_64')
+url='http://steghide.sourceforge.net'
+license=('GPL')
+depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
+'buildsystem.patch'
+'gcc-4.2.patch'
+ "${pkgname}-climits.patch")
+md5sums=('5be490e24807d921045780fd8cc446b3'
+ '14f5e054d71c91262bb1140288043df8'
+ 'fd861dc5a0a392c6c94a61e85ad74f29'
+ '897ce18edd008293a3328bc3f88775b3')
+
+build() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  patch -p1 < ../buildsystem.patch
+
+  # this patch courtesy gentoo bug tracker #178134
+  patch -Np1 -i ../gcc-4.2.patch
+  patch -Np1 -i ../steghide-climits.patch
+
+  # touch files needed by GNU Autotools
+  touch NEWS AUTHORS ChangeLog
+
+  autoreconf -i
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+  make DESTDIR="${pkgdir}" install
+}

Copied: steghide/repos/community-staging-i686/buildsystem.patch (from rev 
148513, steghide/trunk/buildsystem.patch)
===
--- community-staging-i686/buildsystem.patch(rev 0)
+++ community-staging-i686/buildsystem.patch2015-12-05 15:52:44 UTC (rev 
148514)
@@ -0,0 +1,10 @@
+diff -urN steghide-0.5.1/src/Makefile.am steghide-0.5.1-new/src/Makefile.am
+--- steghide-0.5.1/src/Makefile.am 2003-09-28 09:33:21.0 -0700
 steghide-0.5.1-new/src/Makefile.am 2003-10-30 21:05:40.0 -0800
+@@ -33,5 +33,5 @@
+ WavPCMSampleValue.cc error.cc main.cc msg.cc SMDConstructionHeuristic.cc
+ LIBS = @LIBINTL@ @LIBS@
+ localedir = $(datadir)/locale
+-LIBTOOL 

[arch-commits] Commit in steghide/trunk (PKGBUILD)

2014-07-01 Thread Lukas Fleischer
Date: Wednesday, July 2, 2014 @ 01:50:22
  Author: lfleischer
Revision: 114564

upgpkg: steghide 0.5.1-7

.MTREE rebuild.

Modified:
  steghide/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-01 23:38:45 UTC (rev 114563)
+++ PKGBUILD2014-07-01 23:50:22 UTC (rev 114564)
@@ -6,7 +6,7 @@
 
 pkgname=steghide
 pkgver=0.5.1
-pkgrel=6
+pkgrel=7
 pkgdesc='Embeds a message in a file by replacing some of the least significant 
bits'
 arch=('i686' 'x86_64')
 url='http://steghide.sourceforge.net'



[arch-commits] Commit in steghide/repos (20 files)

2014-07-01 Thread Lukas Fleischer
Date: Wednesday, July 2, 2014 @ 01:50:39
  Author: lfleischer
Revision: 114565

archrelease: copy trunk to community-i686, community-x86_64

Added:
  steghide/repos/community-i686/ChangeLog
(from rev 114564, steghide/trunk/ChangeLog)
  steghide/repos/community-i686/PKGBUILD
(from rev 114564, steghide/trunk/PKGBUILD)
  steghide/repos/community-i686/buildsystem.patch
(from rev 114564, steghide/trunk/buildsystem.patch)
  steghide/repos/community-i686/gcc-4.2.patch
(from rev 114564, steghide/trunk/gcc-4.2.patch)
  steghide/repos/community-i686/steghide-climits.patch
(from rev 114564, steghide/trunk/steghide-climits.patch)
  steghide/repos/community-x86_64/ChangeLog
(from rev 114564, steghide/trunk/ChangeLog)
  steghide/repos/community-x86_64/PKGBUILD
(from rev 114564, steghide/trunk/PKGBUILD)
  steghide/repos/community-x86_64/buildsystem.patch
(from rev 114564, steghide/trunk/buildsystem.patch)
  steghide/repos/community-x86_64/gcc-4.2.patch
(from rev 114564, steghide/trunk/gcc-4.2.patch)
  steghide/repos/community-x86_64/steghide-climits.patch
(from rev 114564, steghide/trunk/steghide-climits.patch)
Deleted:
  steghide/repos/community-i686/ChangeLog
  steghide/repos/community-i686/PKGBUILD
  steghide/repos/community-i686/buildsystem.patch
  steghide/repos/community-i686/gcc-4.2.patch
  steghide/repos/community-i686/steghide-climits.patch
  steghide/repos/community-x86_64/ChangeLog
  steghide/repos/community-x86_64/PKGBUILD
  steghide/repos/community-x86_64/buildsystem.patch
  steghide/repos/community-x86_64/gcc-4.2.patch
  steghide/repos/community-x86_64/steghide-climits.patch

-+
 /ChangeLog  |8 +
 /PKGBUILD   |   88 +
 /buildsystem.patch  |   20 
 /gcc-4.2.patch  |  150 ++
 /steghide-climits.patch |   22 
 community-i686/ChangeLog|4 
 community-i686/PKGBUILD |   44 
 community-i686/buildsystem.patch|   10 --
 community-i686/gcc-4.2.patch|   75 ---
 community-i686/steghide-climits.patch   |   11 --
 community-x86_64/ChangeLog  |4 
 community-x86_64/PKGBUILD   |   44 
 community-x86_64/buildsystem.patch  |   10 --
 community-x86_64/gcc-4.2.patch  |   75 ---
 community-x86_64/steghide-climits.patch |   11 --
 15 files changed, 288 insertions(+), 288 deletions(-)

Deleted: community-i686/ChangeLog
===
--- community-i686/ChangeLog2014-07-01 23:50:22 UTC (rev 114564)
+++ community-i686/ChangeLog2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,4 +0,0 @@
-2007-06-28 tardo ta...@nagi-fanboi.net
-* Built for x86_64
-* Added gcc 4.2 patch, with help from gentoo bug #178134
-* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Copied: steghide/repos/community-i686/ChangeLog (from rev 114564, 
steghide/trunk/ChangeLog)
===
--- community-i686/ChangeLog(rev 0)
+++ community-i686/ChangeLog2014-07-01 23:50:39 UTC (rev 114565)
@@ -0,0 +1,4 @@
+2007-06-28 tardo ta...@nagi-fanboi.net
+* Built for x86_64
+* Added gcc 4.2 patch, with help from gentoo bug #178134
+* Fixed erroneous buildsystem.patch that removed path to mkinstalldirs

Deleted: community-i686/PKGBUILD
===
--- community-i686/PKGBUILD 2014-07-01 23:50:22 UTC (rev 114564)
+++ community-i686/PKGBUILD 2014-07-01 23:50:39 UTC (rev 114565)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Lukas Fleischer archlinux at cryptocrack dot de
-# Contributor: Tom Newsom jeeps...@gmx.co.uk
-# Contributor: Jason Chu ja...@archlinux.org
-# Contributor: Daniel J Griffiths ghost1...@archlinux.us
-
-pkgname=steghide
-pkgver=0.5.1
-pkgrel=6
-pkgdesc='Embeds a message in a file by replacing some of the least significant 
bits'
-arch=('i686' 'x86_64')
-url='http://steghide.sourceforge.net'
-license=('GPL')
-depends=('libmcrypt' 'gcc-libs' 'mhash' 'libjpeg' 'zlib')
-source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz;
-'buildsystem.patch'
-'gcc-4.2.patch'
- ${pkgname}-climits.patch)
-md5sums=('5be490e24807d921045780fd8cc446b3'
- '14f5e054d71c91262bb1140288043df8'
- 'fd861dc5a0a392c6c94a61e85ad74f29'
- '897ce18edd008293a3328bc3f88775b3')
-
-build() {
-  cd ${srcdir}/${pkgname}-${pkgver}
-
-  patch -p1  ../buildsystem.patch
-
-  # this patch courtesy gentoo bug tracker #178134
-  patch -Np1 -i ../gcc-4.2.patch
-  patch -Np1 -i ../steghide-climits.patch
-
-  # touch files needed by GNU Autotools
-  touch NEWS AUTHORS ChangeLog
-
-  autoreconf -i
-  ./configure --prefix=/usr
-  make
-}
-