Accepting request 410679 from devel:languages:haskell:lts:6
See https://lists.opensuse.org/opensuse-haskell/2016-07/msg00000.html for details. OBS-URL: https://build.opensuse.org/request/show/410679 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-socks?expand=0&rev=7
This commit is contained in:
parent
a2f0aae1ae
commit
257b1e54c4
35
1.cabal
Normal file
35
1.cabal
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
Name: socks
|
||||||
|
Version: 0.5.5
|
||||||
|
x-revision: 1
|
||||||
|
Description: Socks proxy (version 5) implementation.
|
||||||
|
License: BSD3
|
||||||
|
License-file: LICENSE
|
||||||
|
Copyright: Vincent Hanquez <vincent@snarc.org>
|
||||||
|
Author: Vincent Hanquez <vincent@snarc.org>
|
||||||
|
Maintainer: Vincent Hanquez <vincent@snarc.org>
|
||||||
|
Synopsis: Socks proxy (version 5) implementation.
|
||||||
|
Build-Type: Simple
|
||||||
|
Category: Network
|
||||||
|
stability: experimental
|
||||||
|
Cabal-Version: >=1.6
|
||||||
|
Homepage: http://github.com/vincenthz/hs-socks
|
||||||
|
extra-doc-files: README.md, Example.hs
|
||||||
|
|
||||||
|
Library
|
||||||
|
-- Needs IsString Lazy.ByteString instance
|
||||||
|
Build-Depends: base >= 3 && < 5
|
||||||
|
, bytestring >=0.10 && <0.11
|
||||||
|
, cereal >= 0.3.1
|
||||||
|
, network >= 2.3
|
||||||
|
Exposed-modules: Network.Socks5
|
||||||
|
Network.Socks5.Lowlevel
|
||||||
|
Network.Socks5.Types
|
||||||
|
Other-modules: Network.Socks5.Wire
|
||||||
|
Network.Socks5.Conf
|
||||||
|
Network.Socks5.Command
|
||||||
|
Network.Socks5.Parse
|
||||||
|
ghc-options: -Wall -fno-warn-missing-signatures -fwarn-tabs
|
||||||
|
|
||||||
|
source-repository head
|
||||||
|
type: git
|
||||||
|
location: git://github.com/vincenthz/hs-socks
|
@ -1,3 +1,8 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jul 10 17:28:41 UTC 2016 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update to version 0.5.5 revision 1 with cabal2obs.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat May 7 06:33:56 UTC 2016 - mimi.vx@gmail.com
|
Sat May 7 06:33:56 UTC 2016 - mimi.vx@gmail.com
|
||||||
|
|
||||||
|
@ -15,45 +15,43 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
%global pkg_name socks
|
|
||||||
|
|
||||||
|
%global pkg_name socks
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.5.5
|
Version: 0.5.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Socks proxy (version 5) implementation
|
Summary: Socks proxy (version 5) implementation
|
||||||
Group: System/Libraries
|
|
||||||
|
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
|
Group: System/Libraries
|
||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal
|
||||||
|
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
|
||||||
# Begin cabal-rpm deps:
|
# Begin cabal-rpm deps:
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-cereal-devel
|
BuildRequires: ghc-cereal-devel
|
||||||
BuildRequires: ghc-network-devel
|
BuildRequires: ghc-network-devel
|
||||||
|
BuildRequires: ghc-rpm-macros
|
||||||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
# End cabal-rpm deps
|
# End cabal-rpm deps
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Socks proxy (version 5) implementation.
|
Socks proxy (version 5) implementation.
|
||||||
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Haskell %{pkg_name} library development files
|
Summary: Haskell %{pkg_name} library development files
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Other
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: ghc-compiler = %{ghc_version}
|
Requires: ghc-compiler = %{ghc_version}
|
||||||
Requires(post): ghc-compiler = %{ghc_version}
|
Requires(post): ghc-compiler = %{ghc_version}
|
||||||
Requires(postun): ghc-compiler = %{ghc_version}
|
Requires(postun): ghc-compiler = %{ghc_version}
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
This package provides the Haskell %{pkg_name} library development files.
|
This package provides the Haskell %{pkg_name} library development files.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{pkg_name}-%{version}
|
%setup -q -n %{pkg_name}-%{version}
|
||||||
|
cp -p %{SOURCE1} %{pkg_name}.cabal
|
||||||
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -67,19 +65,15 @@ This package provides the Haskell %{pkg_name} library development files.
|
|||||||
%post devel
|
%post devel
|
||||||
%ghc_pkg_recache
|
%ghc_pkg_recache
|
||||||
|
|
||||||
|
|
||||||
%postun devel
|
%postun devel
|
||||||
%ghc_pkg_recache
|
%ghc_pkg_recache
|
||||||
|
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc LICENSE
|
%doc LICENSE
|
||||||
|
|
||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
%doc Example.hs README.md
|
%doc Example.hs README.md
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2647ea93e21ad1dfd77e942c022c8707e468d25e1ff672a88be82508034fc868
|
|
||||||
size 10159
|
|
Loading…
Reference in New Issue
Block a user